Skip to content

Commit

Permalink
fs_parser: remove fs_parameter_description name field
Browse files Browse the repository at this point in the history
Unused now.

Signed-off-by: Eric Sandeen <[email protected]>
Acked-by: David Howells <[email protected]>
Signed-off-by: Al Viro <[email protected]>
  • Loading branch information
sandeen authored and Al Viro committed Feb 7, 2020
1 parent cc3c0b5 commit 96cafb9
Show file tree
Hide file tree
Showing 26 changed files with 11 additions and 44 deletions.
11 changes: 2 additions & 9 deletions Documentation/filesystems/mount_api.txt
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,6 @@ Parameters are described using structures defined in linux/fs_parser.h.
There's a core description struct that links everything together:

struct fs_parameter_description {
const char name[16];
const struct fs_parameter_spec *specs;
const struct fs_parameter_enum *enums;
};
Expand All @@ -534,19 +533,13 @@ For example:
};

static const struct fs_parameter_description afs_fs_parameters = {
.name = "kAFS",
.specs = afs_param_specs,
.enums = afs_param_enums,
};

The members are as follows:

(1) const char name[16];

The name to be used in error messages generated by the parse helper
functions.

(2) const struct fs_parameter_specification *specs;
(1) const struct fs_parameter_specification *specs;

Table of parameter specifications, terminated with a null entry, where the
entries are of type:
Expand Down Expand Up @@ -625,7 +618,7 @@ The members are as follows:
of arguments to specify the type and the flags for anything that doesn't
match one of the above macros.

(6) const struct fs_parameter_enum *enums;
(2) const struct fs_parameter_enum *enums;

Table of enum value names to integer mappings, terminated with a null
entry. This is of type:
Expand Down
1 change: 0 additions & 1 deletion arch/powerpc/platforms/cell/spufs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,6 @@ static const struct fs_parameter_spec spufs_param_specs[] = {
};

static const struct fs_parameter_description spufs_fs_parameters = {
.name = "spufs",
.specs = spufs_param_specs,
};

Expand Down
1 change: 0 additions & 1 deletion arch/s390/hypfs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,6 @@ static const struct fs_parameter_spec hypfs_param_specs[] = {
};

static const struct fs_parameter_description hypfs_fs_parameters = {
.name = "hypfs",
.specs = hypfs_param_specs,
};

Expand Down
1 change: 0 additions & 1 deletion arch/x86/kernel/cpu/resctrl/rdtgroup.c
Original file line number Diff line number Diff line change
Expand Up @@ -2045,7 +2045,6 @@ static const struct fs_parameter_spec rdt_param_specs[] = {
};

static const struct fs_parameter_description rdt_fs_parameters = {
.name = "rdt",
.specs = rdt_param_specs,
};

Expand Down
1 change: 0 additions & 1 deletion drivers/block/rbd.c
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,6 @@ static const struct fs_parameter_spec rbd_param_specs[] = {
};

static const struct fs_parameter_description rbd_parameters = {
.name = "rbd",
.specs = rbd_param_specs,
};

Expand Down
1 change: 0 additions & 1 deletion drivers/usb/gadget/function/f_fs.c
Original file line number Diff line number Diff line change
Expand Up @@ -1497,7 +1497,6 @@ static const struct fs_parameter_spec ffs_fs_param_specs[] = {
};

static const struct fs_parameter_description ffs_fs_fs_parameters = {
.name = "kAFS",
.specs = ffs_fs_param_specs,
};

Expand Down
1 change: 0 additions & 1 deletion fs/afs/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ static const struct fs_parameter_spec afs_param_specs[] = {
};

static const struct fs_parameter_description afs_fs_parameters = {
.name = "kAFS",
.specs = afs_param_specs,
};

Expand Down
1 change: 0 additions & 1 deletion fs/ceph/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,6 @@ static const struct fs_parameter_spec ceph_mount_param_specs[] = {
};

static const struct fs_parameter_description ceph_mount_parameters = {
.name = "ceph",
.specs = ceph_mount_param_specs,
};

Expand Down
3 changes: 2 additions & 1 deletion fs/filesystems.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ int register_filesystem(struct file_system_type * fs)
int res = 0;
struct file_system_type ** p;

if (fs->parameters && !fs_validate_description(fs->parameters))
if (fs->parameters &&
!fs_validate_description(fs->name, fs->parameters))
return -EINVAL;

BUG_ON(strchr(fs->name, '.'));
Expand Down
10 changes: 2 additions & 8 deletions fs/fs_parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -354,20 +354,14 @@ bool validate_constant_table(const struct constant_table *tbl, size_t tbl_size,
* fs_validate_description - Validate a parameter description
* @desc: The parameter description to validate.
*/
bool fs_validate_description(const struct fs_parameter_description *desc)
bool fs_validate_description(const char *name,
const struct fs_parameter_description *desc)
{
const struct fs_parameter_spec *param, *p2;
const char *name = desc->name;
bool good = true;

pr_notice("*** VALIDATE %s ***\n", name);

if (!name[0]) {
pr_err("VALIDATE Parser: No name\n");
name = "Unknown";
good = false;
}

if (desc->specs) {
for (param = desc->specs; param->name; param++) {
enum fs_parameter_type t = param->type;
Expand Down
1 change: 0 additions & 1 deletion fs/fuse/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,6 @@ static const struct fs_parameter_spec fuse_param_specs[] = {
};

static const struct fs_parameter_description fuse_fs_parameters = {
.name = "fuse",
.specs = fuse_param_specs,
};

Expand Down
1 change: 0 additions & 1 deletion fs/gfs2/ops_fstype.c
Original file line number Diff line number Diff line change
Expand Up @@ -1337,7 +1337,6 @@ static const struct fs_parameter_spec gfs2_param_specs[] = {
};

static const struct fs_parameter_description gfs2_fs_parameters = {
.name = "gfs2",
.specs = gfs2_param_specs,
};

Expand Down
1 change: 0 additions & 1 deletion fs/hugetlbfs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ static const struct fs_parameter_spec hugetlb_param_specs[] = {
};

static const struct fs_parameter_description hugetlb_fs_parameters = {
.name = "hugetlbfs",
.specs = hugetlb_param_specs,
};

Expand Down
1 change: 0 additions & 1 deletion fs/jffs2/super.c
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,6 @@ static const struct fs_parameter_spec jffs2_param_specs[] = {
};

const struct fs_parameter_description jffs2_fs_parameters = {
.name = "jffs2",
.specs = jffs2_param_specs,
};

Expand Down
1 change: 0 additions & 1 deletion fs/nfs/fs_context.c
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ static const struct fs_parameter_spec nfs_param_specs[] = {
};

static const struct fs_parameter_description nfs_fs_parameters = {
.name = "nfs",
.specs = nfs_param_specs,
};

Expand Down
1 change: 0 additions & 1 deletion fs/proc/root.c
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ static const struct fs_parameter_spec proc_param_specs[] = {
};

static const struct fs_parameter_description proc_fs_parameters = {
.name = "proc",
.specs = proc_param_specs,
};

Expand Down
1 change: 0 additions & 1 deletion fs/ramfs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,6 @@ static const struct fs_parameter_spec ramfs_param_specs[] = {
};

const struct fs_parameter_description ramfs_fs_parameters = {
.name = "ramfs",
.specs = ramfs_param_specs,
};

Expand Down
1 change: 0 additions & 1 deletion fs/xfs/xfs_super.c
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,6 @@ static const struct fs_parameter_spec xfs_param_specs[] = {
};

static const struct fs_parameter_description xfs_fs_parameters = {
.name = "xfs",
.specs = xfs_param_specs,
};

Expand Down
7 changes: 4 additions & 3 deletions include/linux/fs_parser.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ struct fs_parameter_spec {
};

struct fs_parameter_description {
const char name[16]; /* Name for logging purposes */
const struct fs_parameter_spec *specs; /* List of param specifications */
};

Expand Down Expand Up @@ -97,12 +96,14 @@ extern int lookup_constant(const struct constant_table tbl[], const char *name,
#ifdef CONFIG_VALIDATE_FS_PARSER
extern bool validate_constant_table(const struct constant_table *tbl, size_t tbl_size,
int low, int high, int special);
extern bool fs_validate_description(const struct fs_parameter_description *desc);
extern bool fs_validate_description(const char *name,
const struct fs_parameter_description *desc);
#else
static inline bool validate_constant_table(const struct constant_table *tbl, size_t tbl_size,
int low, int high, int special)
{ return true; }
static inline bool fs_validate_description(const struct fs_parameter_description *desc)
static inline bool fs_validate_description(const char *name,
const struct fs_parameter_description *desc)
{ return true; }
#endif

Expand Down
1 change: 0 additions & 1 deletion kernel/bpf/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,6 @@ static const struct fs_parameter_spec bpf_param_specs[] = {
};

static const struct fs_parameter_description bpf_fs_parameters = {
.name = "bpf",
.specs = bpf_param_specs,
};

Expand Down
1 change: 0 additions & 1 deletion kernel/cgroup/cgroup-v1.c
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,6 @@ static const struct fs_parameter_spec cgroup1_param_specs[] = {
};

const struct fs_parameter_description cgroup1_fs_parameters = {
.name = "cgroup1",
.specs = cgroup1_param_specs,
};

Expand Down
1 change: 0 additions & 1 deletion kernel/cgroup/cgroup.c
Original file line number Diff line number Diff line change
Expand Up @@ -1823,7 +1823,6 @@ static const struct fs_parameter_spec cgroup2_param_specs[] = {
};

static const struct fs_parameter_description cgroup2_fs_parameters = {
.name = "cgroup2",
.specs = cgroup2_param_specs,
};

Expand Down
1 change: 0 additions & 1 deletion mm/shmem.c
Original file line number Diff line number Diff line change
Expand Up @@ -3404,7 +3404,6 @@ static const struct fs_parameter_spec shmem_param_specs[] = {
};

const struct fs_parameter_description shmem_fs_parameters = {
.name = "tmpfs",
.specs = shmem_param_specs,
};

Expand Down
1 change: 0 additions & 1 deletion net/ceph/ceph_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,6 @@ static const struct fs_parameter_spec ceph_param_specs[] = {
};

static const struct fs_parameter_description ceph_parameters = {
.name = "libceph",
.specs = ceph_param_specs,
};

Expand Down
3 changes: 1 addition & 2 deletions security/selinux/hooks.c
Original file line number Diff line number Diff line change
Expand Up @@ -2818,7 +2818,6 @@ static const struct fs_parameter_spec selinux_param_specs[] = {
};

static const struct fs_parameter_description selinux_fs_parameters = {
.name = "SELinux",
.specs = selinux_param_specs,
};

Expand Down Expand Up @@ -7145,7 +7144,7 @@ static __init int selinux_init(void)
else
pr_debug("SELinux: Starting in permissive mode\n");

fs_validate_description(&selinux_fs_parameters);
fs_validate_description("selinux", &selinux_fs_parameters);

return 0;
}
Expand Down
1 change: 0 additions & 1 deletion security/smack/smack_lsm.c
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,6 @@ static const struct fs_parameter_spec smack_param_specs[] = {
};

static const struct fs_parameter_description smack_fs_parameters = {
.name = "smack",
.specs = smack_param_specs,
};

Expand Down

0 comments on commit 96cafb9

Please sign in to comment.