9p: Remove INET dependency
authorJason Andryuk <jandryuk@gmail.com>
Thu, 4 May 2023 19:47:23 +0000 (15:47 -0400)
committerDavid S. Miller <davem@davemloft.net>
Thu, 4 May 2023 20:46:57 +0000 (21:46 +0100)
commitd7385ba137711ea71527a605cac162610a621de8
treeded9fc1d23237e05d82c9f337dca4a5eb7520acd
parent042334a8d424a1917e916e611a8dda7f8caf1491
9p: Remove INET dependency

9pfs can run over assorted transports, so it doesn't have an INET
dependency.  Drop it and remove the includes of linux/inet.h.

NET_9P_FD/trans_fd.o builds without INET or UNIX and is usable over
plain file descriptors.  However, tcp and unix functionality is still
built and would generate runtime failures if used.  Add imply INET and
UNIX to NET_9P_FD, so functionality is enabled by default but can still
be explicitly disabled.

This allows configuring 9pfs over Xen with INET and UNIX disabled.

Signed-off-by: Jason Andryuk <jandryuk@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
fs/9p/Kconfig
fs/9p/vfs_addr.c
fs/9p/vfs_dentry.c
fs/9p/vfs_dir.c
fs/9p/vfs_file.c
fs/9p/vfs_inode.c
fs/9p/vfs_inode_dotl.c
fs/9p/vfs_super.c
net/9p/Kconfig