* ufs compile error in 2.5.19
@ 2002-05-29 19:55 Wayne.Brown
2002-05-29 21:13 ` [PATCH] " Skip Ford
0 siblings, 1 reply; 3+ messages in thread
From: Wayne.Brown @ 2002-05-29 19:55 UTC (permalink / raw)
To: lkml
truncate.c: In function `ufs_truncate':
truncate.c:456: `tq_disk' undeclared (first use in this function)
truncate.c:456: (Each undeclared identifier is reported only once
truncate.c:456: for each function it appears in.)
make[2]: *** [truncate.o] Error 1
make[2]: Leaving directory `/usr/src/linux-2.5.19/fs/ufs'
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] Re: ufs compile error in 2.5.19
2002-05-29 19:55 ufs compile error in 2.5.19 Wayne.Brown
@ 2002-05-29 21:13 ` Skip Ford
2002-05-30 13:33 ` Jens Axboe
0 siblings, 1 reply; 3+ messages in thread
From: Skip Ford @ 2002-05-29 21:13 UTC (permalink / raw)
To: Wayne.Brown; +Cc: lkml
Wayne.Brown@altec.com wrote:
>
> truncate.c: In function `ufs_truncate':
> truncate.c:456: `tq_disk' undeclared (first use in this function)
> truncate.c:456: (Each undeclared identifier is reported only once
> truncate.c:456: for each function it appears in.)
> make[2]: *** [truncate.o] Error 1
> make[2]: Leaving directory `/usr/src/linux-2.5.19/fs/ufs'
I guess this is right...
--- linux/fs/ufs/truncate.c Wed May 29 16:59:56 2002
+++ linux/fs/ufs/truncate.c Wed May 29 17:03:57 2002
@@ -453,7 +453,7 @@
break;
if (IS_SYNC(inode) && (inode->i_state & I_DIRTY))
ufs_sync_inode (inode);
- run_task_queue(&tq_disk);
+ blk_run_queues();
yield();
}
offset = inode->i_size & uspi->s_fshift;
--
Skip
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Re: ufs compile error in 2.5.19
2002-05-29 21:13 ` [PATCH] " Skip Ford
@ 2002-05-30 13:33 ` Jens Axboe
0 siblings, 0 replies; 3+ messages in thread
From: Jens Axboe @ 2002-05-30 13:33 UTC (permalink / raw)
To: Wayne.Brown, lkml
On Wed, May 29 2002, Skip Ford wrote:
> Wayne.Brown@altec.com wrote:
> >
> > truncate.c: In function `ufs_truncate':
> > truncate.c:456: `tq_disk' undeclared (first use in this function)
> > truncate.c:456: (Each undeclared identifier is reported only once
> > truncate.c:456: for each function it appears in.)
> > make[2]: *** [truncate.o] Error 1
> > make[2]: Leaving directory `/usr/src/linux-2.5.19/fs/ufs'
>
> I guess this is right...
>
> --- linux/fs/ufs/truncate.c Wed May 29 16:59:56 2002
> +++ linux/fs/ufs/truncate.c Wed May 29 17:03:57 2002
> @@ -453,7 +453,7 @@
> break;
> if (IS_SYNC(inode) && (inode->i_state & I_DIRTY))
> ufs_sync_inode (inode);
> - run_task_queue(&tq_disk);
> + blk_run_queues();
> yield();
> }
> offset = inode->i_size & uspi->s_fshift;
Yeah it's right, and I see I missed exactly this change in the patch I
just sent to Linus a few hours ago... So I've sent this one on as well,
thanks.
--
Jens Axboe
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2002-05-30 13:33 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-05-29 19:55 ufs compile error in 2.5.19 Wayne.Brown
2002-05-29 21:13 ` [PATCH] " Skip Ford
2002-05-30 13:33 ` Jens Axboe
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox