diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2011-03-28 14:45:23 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2011-03-28 14:49:48 +0100 |
commit | 0d6fd9e1d2488841c912c5351086e536772837ef (patch) | |
tree | 76a46cfaa49235270ef6848879d87e74e72800d4 /fuse/Makefile.am | |
parent | 4e529e06a4500959cd783f5029354fea47a253a6 (diff) | |
download | libguestfs-0d6fd9e1d2488841c912c5351086e536772837ef.tar.gz libguestfs-0d6fd9e1d2488841c912c5351086e536772837ef.tar.xz libguestfs-0d6fd9e1d2488841c912c5351086e536772837ef.zip |
fuse: Fix getxattr, listxattr calls and add a regression test (RHBZ#691389).
The documentation for the getxattr and listxattr calls is not very
clear and as a result we were always returning something different
from that which the Linux kernel would usually return.
This fixes these calls, at least far enough that both the 'getfattr'
and 'getfacl' programs now work fine on FUSE-mounted filesystems.
Note that SELinux attrs are *not* passed through. This appears to be
a known bug between SELinux and FUSE. For more information see:
http://www.spinics.net/lists/selinux/msg09460.html
Notes
Notes:
Labels: bugfix, RHBZ#691389
Diffstat (limited to 'fuse/Makefile.am')
-rw-r--r-- | fuse/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fuse/Makefile.am b/fuse/Makefile.am index 7d3b463c..1cdb9938 100644 --- a/fuse/Makefile.am +++ b/fuse/Makefile.am @@ -1,5 +1,5 @@ # libguestfs -# Copyright (C) 2009 Red Hat Inc. +# Copyright (C) 2009-2011 Red Hat Inc. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by |