Date: Sat, 02 Mar 2013 00:21:57 +0200 From: Andriy Gapon <avg@FreeBSD.org> To: Alexander Motin <mav@FreeBSD.org> Cc: svn-src-projects@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r247581 - projects/calloutng/sys/kern Message-ID: <51312A05.20802@FreeBSD.org> In-Reply-To: <201303012112.r21LCLgc094166@svn.freebsd.org> References: <201303012112.r21LCLgc094166@svn.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
on 01/03/2013 23:12 Alexander Motin said the following: > + direct = !!(c->c_flags & CALLOUT_DIRECT); Please do not violate boundaries between FreeBSD kernel code and some other OS kernel code :-) In FreeBSD the above should look like: direct = (c->c_flags & CALLOUT_DIRECT) != 0; -- Andriy Gapon
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?51312A05.20802>