From: Stefan Metzmacher Date: Thu, 22 Dec 2011 13:20:32 +0000 (+0100) Subject: s3:vfs_gpfs: be less verbose in get/set_xattr functions X-Git-Tag: samba-3.5.17~3 X-Git-Url: http://git.samba.org/?p=samba.git;a=commitdiff_plain;h=56920545d803cd7d51133f2860c7249e597c6277 s3:vfs_gpfs: be less verbose in get/set_xattr functions metze Signed-off-by: Christian Ambach (cherry picked from commit 2e95d8048b9e9c7025ddada7ede15494e6016ba9) Fix bug #9022 - vfs_gpfs is very verbose in get/set_xattr functions. (cherry picked from commit 3abaa9dd8a2af9497dfc6afd6f93a638956c1c3a) (cherry picked from commit 4c8fdb5ce7ad0d966b3de23a1052191645b6635b) --- diff --git a/source3/modules/vfs_gpfs.c b/source3/modules/vfs_gpfs.c index ecfa60a4625..c80b9e5be4a 100644 --- a/source3/modules/vfs_gpfs.c +++ b/source3/modules/vfs_gpfs.c @@ -935,7 +935,7 @@ static int gpfs_set_xattr(struct vfs_handle_struct *handle, const char *path, /* Only handle DOS Attributes */ if (strcmp(name,SAMBA_XATTR_DOS_ATTRIB) != 0){ - DEBUG(1, ("gpfs_set_xattr:name is %s\n",name)); + DEBUG(5, ("gpfs_set_xattr:name is %s\n",name)); return SMB_VFS_NEXT_SETXATTR(handle,path,name,value,size,flags); } @@ -989,7 +989,7 @@ static ssize_t gpfs_get_xattr(struct vfs_handle_struct *handle, const char *pat /* Only handle DOS Attributes */ if (strcmp(name,SAMBA_XATTR_DOS_ATTRIB) != 0){ - DEBUG(1, ("gpfs_get_xattr:name is %s\n",name)); + DEBUG(5, ("gpfs_get_xattr:name is %s\n",name)); return SMB_VFS_NEXT_GETXATTR(handle,path,name,value,size); }