From mboxrd@z Thu Jan 1 00:00:00 1970 Date: Wed, 8 Jan 2020 10:24:25 -0500 From: Vivek Goyal Message-ID: <20200108152425.GD1995@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: [Virtio-fs] [PATCH] virtiofsd: Enable xattr support by default List-Id: Development discussions about virtio-fs List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: virtio-fs-list Enable xattr support by default. Currently it is disabled by defaut and that makes getfattr/setfattr fail in guest. Signed-off-by: Vivek Goyal --- contrib/virtiofsd/passthrough_ll.c | 1 + 1 file changed, 1 insertion(+) Index: qemu/contrib/virtiofsd/passthrough_ll.c =================================================================== --- qemu.orig/contrib/virtiofsd/passthrough_ll.c 2020-01-08 10:10:08.762661288 -0500 +++ qemu/contrib/virtiofsd/passthrough_ll.c 2020-01-08 10:15:03.170488067 -0500 @@ -3096,6 +3096,7 @@ int main(int argc, char *argv[]) .writeback = 0, .posix_lock = 1, .proc_self_fd = -1, + .xattr = 1, }; struct lo_map_elem *root_elem; int ret = -1;