Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 14 Aug 2002 20:24:15 -0700 (PDT)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 15997 for review
Message-ID:  <200208150324.g7F3OFpM011942@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=15997

Change 15997 by rwatson@rwatson_tislabs on 2002/08/14 20:23:40

	Sync the ffs extattrctl wrapper with the modified version in the
	MAC tree with lsattr support.

Affected files ...

.. //depot/projects/trustedbsd/mac/sys/ufs/ffs/ffs_vfsops.c#17 edit

Differences ...

==== //depot/projects/trustedbsd/mac/sys/ufs/ffs/ffs_vfsops.c#17 (text+ko) ====

@@ -1453,14 +1453,15 @@
 
 static int
 ffs_extattrctl(struct mount *mp, int cmd, struct vnode *filename_vp,
-	int attrnamespace, const char *attrname, struct thread *td)
+	int attrnamespace, const char *attrname, void *extended,
+	struct thread *td)
 {
 
 #ifdef UFS_EXTATTR
 	return (ufs_extattrctl(mp, cmd, filename_vp, attrnamespace,
-	    attrname, td));
+	    attrname, extended, td));
 #else
 	return (vfs_stdextattrctl(mp, cmd, filename_vp, attrnamespace,
-	    attrname, td));
+	    attrname, extended, td));
 #endif
 }

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe p4-projects" in the body of the message




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