PERFORCE change 15997 for review
Robert Watson
rwatson at freebsd.org
Thu Aug 15 03:24:15 GMT 2002
http://people.freebsd.org/~peter/p4db/chv.cgi?CH=15997
Change 15997 by rwatson at 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 at trustedbsd.org
with "unsubscribe trustedbsd-cvs" in the body of the message
More information about the trustedbsd-cvs
mailing list