The following changes since commit 2585cf9dfaaddf00b069673f27bb3f8530e2039c: Linux 5.16-rc5 (2021-12-12 14:53:01 -0800) are available in the Git repository at: git://github.com/martinetd/linux tags/9p-for-5.17-rc1 for you to fetch changes up to 19d1c32652bbbf406063025354845fdddbcecd3a: 9p: fix enodata when reading growing file (2022-01-11 15:21:53 +0900) ---------------------------------------------------------------- 9p-for-5.17-rc1: fixes, split 9p_net_fd, new reviewer - fix possible uninitialized memory usage for setattr - fix fscache reading hole in a file just after it's been grown - split net/9p/trans_fd.c in its own module like other transports that module defaults to 9P_NET and is autoloaded if required so users should not be impacted - add Christian Schoenebeck to 9p reviewers - some more trivial cleanup ---------------------------------------------------------------- Changcheng Deng (1): fs: 9p: remove unneeded variable Christian Brauner (1): 9p: only copy valid iattrs in 9P2000.L setattr implementation Christian Schoenebeck (2): MAINTAINERS: 9p: add Christian Schoenebeck as reviewer net/9p: show error message if user 'msize' cannot be satisfied Dominique Martinet (1): 9p: fix enodata when reading growing file Thomas Weißschuh (3): 9p/trans_fd: split into dedicated module 9p/xen: autoload when xenbus service is available net/p9: load default transports Zhang Mingyu (1): 9p: Use BUG_ON instead of if condition followed by BUG. zhuxinran (1): 9p/trans_virtio: Fix typo in the comment for p9_virtio_create() MAINTAINERS | 1 + fs/9p/vfs_addr.c | 5 +++++ fs/9p/vfs_file.c | 6 ++---- fs/9p/vfs_inode_dotl.c | 29 ++++++++++++++++++++--------- include/net/9p/9p.h | 2 -- include/net/9p/transport.h | 2 +- net/9p/Kconfig | 7 +++++++ net/9p/Makefile | 5 ++++- net/9p/client.c | 7 ++++++- net/9p/mod.c | 15 +++++++++++---- net/9p/trans_fd.c | 14 ++++++++++++-- net/9p/trans_virtio.c | 2 +- net/9p/trans_xen.c | 1 + 13 files changed, 71 insertions(+), 25 deletions(-) -- Dominique