======================
.. kernel-doc:: include/linux/netfs.h
-.. kernel-doc:: fs/netfs/read_helper.c
+.. kernel-doc:: fs/netfs/buffered_read.c
+.. kernel-doc:: fs/netfs/io.c
# SPDX-License-Identifier: GPL-2.0
netfs-y := \
- objects.o \
- read_helper.o
+ io.o \
+ objects.o
netfs-$(CONFIG_NETFS_STATS) += stats.o
void netfs_rreq_unlock_folios(struct netfs_io_request *rreq);
/*
+ * io.c
+ */
+extern unsigned int netfs_debug;
+
+int netfs_begin_read(struct netfs_io_request *rreq, bool sync);
+
+/*
* objects.c
*/
struct netfs_io_request *netfs_alloc_request(struct address_space *mapping,
}
/*
- * read_helper.c
- */
-extern unsigned int netfs_debug;
-
-int netfs_begin_read(struct netfs_io_request *rreq, bool sync);
-
-/*
* stats.c
*/
#ifdef CONFIG_NETFS_STATS