Date: Thu, 16 Apr 2009 11:57:17 +0000 (UTC) From: Robert Watson <rwatson@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r191143 - head/sys/security/audit Message-ID: <200904161157.n3GBvHmU079615@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: rwatson Date: Thu Apr 16 11:57:16 2009 New Revision: 191143 URL: http://svn.freebsd.org/changeset/base/191143 Log: Remove D_NEEDGIANT from audit pipes. I'm actually not sure why this was here, but isn't needed. MFC after: 2 weeks Sponsored by: Apple, Inc. Modified: head/sys/security/audit/audit_pipe.c Modified: head/sys/security/audit/audit_pipe.c ============================================================================== --- head/sys/security/audit/audit_pipe.c Thu Apr 16 11:38:06 2009 (r191142) +++ head/sys/security/audit/audit_pipe.c Thu Apr 16 11:57:16 2009 (r191143) @@ -231,7 +231,7 @@ static d_kqfilter_t audit_pipe_kqfilter; static struct cdevsw audit_pipe_cdevsw = { .d_version = D_VERSION, - .d_flags = D_PSEUDO | D_NEEDGIANT | D_NEEDMINOR, + .d_flags = D_PSEUDO | D_NEEDMINOR, .d_open = audit_pipe_open, .d_close = audit_pipe_close, .d_read = audit_pipe_read,
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200904161157.n3GBvHmU079615>