Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 10 Jul 2005 02:19:40 GMT
From:      Wayne Salamon <wsalamon@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 79885 for review
Message-ID:  <200507100219.j6A2Je3Z015440@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=79885

Change 79885 by wsalamon@rickenbacker on 2005/07/10 02:18:48

	Remove the credential argument from VOP_FSYNC() as it is no longer
	part of the call interface.

Affected files ...

.. //depot/projects/trustedbsd/audit3/sys/security/audit/kern_audit.c#24 edit

Differences ...

==== //depot/projects/trustedbsd/audit3/sys/security/audit/kern_audit.c#24 (text+ko) ====

@@ -502,7 +502,7 @@
 	if (audit_in_failure &&
 	    audit_q_len == 0 && audit_pre_q_len == 0) {
 		VOP_LOCK(vp, LK_DRAIN | LK_INTERLOCK, td);
-		(void)VOP_FSYNC(vp, cred, MNT_WAIT, td);
+		(void)VOP_FSYNC(vp, MNT_WAIT, td);
 		VOP_UNLOCK(vp, 0, td);
 		panic("Audit store overflow; record queue drained.");
 	}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200507100219.j6A2Je3Z015440>