Re: [PATCH 1/1] 9pfs: include linux/limits.h for XATTR_SIZE_MAX

2020-05-16 Thread Dan Robertson
On Sat, May 16, 2020 at 01:30:23PM +0200, Greg Kurz wrote: > Applied to 9p-next with R-b and Fixes tags, thanks. Great! Thanks for the feedback everyone. Cheers, - Dan signature.asc Description: PGP signature

[PATCH 1/1] 9pfs: include linux/limits.h for XATTR_SIZE_MAX

2020-05-15 Thread Dan Robertson
linux/limits.h should be included for the XATTR_SIZE_MAX definition used by v9fs_xattrcreate. Signed-off-by: Dan Robertson --- hw/9pfs/9p.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/9pfs/9p.c b/hw/9pfs/9p.c index a2a14b5979..68c2df7333 100644 --- a/hw/9pfs/9p.c +++ b/hw/9pfs/9p.c

[PATCH 0/1] 9pfs: include linux/limits.h for XATTR_SIZE_MAX

2020-05-15 Thread Dan Robertson
When compliling qemu with `--enable-virtfs` and musl libc, XATTR_SIZE_MAX is undeclared in v9fs_xattrcreate. Things compile fine with glibc as linux/limits.h is indirectly included via dirent.h. Dan Robertson (1): 9pfs: include linux/limits.h for XATTR_SIZE_MAX hw/9pfs/9p.c | 1 + 1 file