sysctl: treewide: drop unused argument ctl_table_root::set_ownership(table)
authorThomas Weißschuh <linux@weissschuh.net>
Fri, 15 Mar 2024 18:11:30 +0000 (19:11 +0100)
committerJoel Granados <j.granados@samsung.com>
Wed, 24 Apr 2024 07:43:54 +0000 (09:43 +0200)
commit520713a93d550406dae14d49cdb8778d70cecdfd
tree636141edc4ed8ad469f0d3e12c24976e7d496e72
parent1adb825af946fa6b2104c1713ad4999283e09fbc
sysctl: treewide: drop unused argument ctl_table_root::set_ownership(table)

Remove the 'table' argument from set_ownership as it is never used. This
change is a step towards putting "struct ctl_table" into .rodata and
eventually having sysctl core only use "const struct ctl_table".

The patch was created with the following coccinelle script:

  @@
  identifier func, head, table, uid, gid;
  @@

  void func(
    struct ctl_table_header *head,
  - struct ctl_table *table,
    kuid_t *uid, kgid_t *gid)
  { ... }

No additional occurrences of 'set_ownership' were found after doing a
tree-wide search.

Reviewed-by: Joel Granados <j.granados@samsung.com>
Signed-off-by: Thomas Weißschuh <linux@weissschuh.net>
Signed-off-by: Joel Granados <j.granados@samsung.com>
fs/proc/proc_sysctl.c
include/linux/sysctl.h
ipc/ipc_sysctl.c
ipc/mq_sysctl.c
net/sysctl_net.c