Date: Sun, 13 Oct 2002 19:55:20 +0400 (MSD) From: Dmitry Morozovsky <marck@rinet.ru> To: Stefan Farfeleder <e0026813@stud3.tuwien.ac.at> Cc: Kelly Yancey <kbyanc@FreeBSD.ORG>, <stable@FreeBSD.ORG> Subject: Re: cvs commit: src/sys/kern vfs_subr.c Message-ID: <20021013195252.M1640-100000@woozle.rinet.ru> In-Reply-To: <20021013154055.GA265@frog.fafoe>
next in thread | previous in thread | raw e-mail | index | archive | help
On Sun, 13 Oct 2002, Stefan Farfeleder wrote: SF> > - if (!TAILQ_NEXT(bp, b_vnbufs)) { SF> > + if (bp->b_vnbufs.tqe_next != NULL) { SF> SF> The line should probably read: SF> SF> if (TAILQ_NEXT(bp, b_vnbufs) != NULL) { ... or simply if (TAILQ_NEXT(bp, b_vnbufs)) { but i'm afraid it's against style(9) BTW, this commit together with one or two more are *NOT* MFC instead of other sys/queue commits. And, I suppose, this would be the source of our troubles. ;-) Sincerely, D.Marck [DM5020, DM268-RIPE, DM3-RIPN] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20021013195252.M1640-100000>