Skip to content

Commit 723cd98

Browse files
committed
Merge patch series "fs: start to split up fs.h"
Christian Brauner <brauner@kernel.org> says: Take first steps to split up fs.h. Add fs/super_types.h and fs/super.h headers that contain the types and functions associated with super blocks respectively. * patches from https://patch.msgid.link/20251104-work-fs-header-v1-0-fb39a2efe39e@kernel.org: fs: add fs/super.h header fs: add fs/super_types.h header fs: rename fs_types.h to fs_dirent.h Link: https://patch.msgid.link/20251104-work-fs-header-v1-0-fb39a2efe39e@kernel.org Signed-off-by: Christian Brauner <brauner@kernel.org>
2 parents dcb6fa3 + f7b3d14 commit 723cd98

6 files changed

Lines changed: 578 additions & 531 deletions

File tree

fs/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ obj-y := open.o read_write.o file_table.o super.o \
1414
seq_file.o xattr.o libfs.o fs-writeback.o \
1515
pnode.o splice.o sync.o utimes.o d_path.o \
1616
stack.o fs_struct.o statfs.o fs_pin.o nsfs.o \
17-
fs_types.o fs_context.o fs_parser.o fsopen.o init.o \
17+
fs_dirent.o fs_context.o fs_parser.o fsopen.o init.o \
1818
kernel_read_file.o mnt_idmapping.o remap_range.o pidfs.o \
1919
file_attr.o
2020

fs/fs_types.c renamed to fs/fs_dirent.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// SPDX-License-Identifier: GPL-2.0
2-
#include <linux/fs.h>
2+
#include <linux/fs_dirent.h>
33
#include <linux/export.h>
44

55
/*

0 commit comments

Comments
 (0)