diff options
author | Max Kellermann <max.kellermann@ionos.com> | 2025-05-19 14:48:04 +0100 |
---|---|---|
committer | Christian Brauner <brauner@kernel.org> | 2025-05-21 14:34:38 +0200 |
commit | 07c08bac9302012d9a91d40e95c8f98800f7d787 (patch) | |
tree | 875fd867ced8fe18b31d0adfb9540d6b9dea5f1b | |
parent | 3dc00bca8dc8226f79f6958293a2777f0691cfb5 (diff) |
fs/netfs: declare field `proc_link` only if CONFIG_PROC_FS=y
This field is only used for the "proc" filesystem.
Signed-off-by: Max Kellermann <max.kellermann@ionos.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Link: https://lore.kernel.org/20250519134813.2975312-9-dhowells@redhat.com
cc: Paulo Alcantara <pc@manguebit.com>
cc: netfs@lists.linux.dev
cc: linux-fsdevel@vger.kernel.org
Signed-off-by: Christian Brauner <brauner@kernel.org>
-rw-r--r-- | include/linux/netfs.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/netfs.h b/include/linux/netfs.h index 2b127527544e..3f7056d837f8 100644 --- a/include/linux/netfs.h +++ b/include/linux/netfs.h @@ -228,7 +228,9 @@ struct netfs_io_request { struct kiocb *iocb; /* AIO completion vector */ struct netfs_cache_resources cache_resources; struct netfs_io_request *copy_to_cache; /* Request to write just-read data to the cache */ +#ifdef CONFIG_PROC_FS struct list_head proc_link; /* Link in netfs_iorequests */ +#endif struct netfs_io_stream io_streams[2]; /* Streams of parallel I/O operations */ #define NR_IO_STREAMS 2 //wreq->nr_io_streams struct netfs_group *group; /* Writeback group being written back */ |