Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 6 Jan 2012 20:05:48 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r229727 - head/sys/kern
Message-ID:  <201201062005.q06K5mTI005772@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jhb
Date: Fri Jan  6 20:05:48 2012
New Revision: 229727
URL: http://svn.freebsd.org/changeset/base/229727

Log:
  Use proper argument structure types for the extattr post-VOP hooks.
  The wrong structure happened to work since the only argument used was
  the vnode which is in the same place in both VOP_SETATTR() and the two
  extattr VOPs.
  
  MFC after:	3 days

Modified:
  head/sys/kern/vfs_subr.c

Modified: head/sys/kern/vfs_subr.c
==============================================================================
--- head/sys/kern/vfs_subr.c	Fri Jan  6 19:33:27 2012	(r229726)
+++ head/sys/kern/vfs_subr.c	Fri Jan  6 20:05:48 2012	(r229727)
@@ -4035,7 +4035,7 @@ vop_create_post(void *ap, int rc)
 void
 vop_deleteextattr_post(void *ap, int rc)
 {
-	struct vop_setattr_args *a = ap;
+	struct vop_deleteextattr_args *a = ap;
 
 	if (!rc)
 		VFS_KNOTE_LOCKED(a->a_vp, NOTE_ATTRIB);
@@ -4125,7 +4125,7 @@ vop_setattr_post(void *ap, int rc)
 void
 vop_setextattr_post(void *ap, int rc)
 {
-	struct vop_setattr_args *a = ap;
+	struct vop_setextattr_args *a = ap;
 
 	if (!rc)
 		VFS_KNOTE_LOCKED(a->a_vp, NOTE_ATTRIB);



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