mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-07 15:04:17 +00:00
sysctl: Add register_sysctl for normal sysctl users
The plan is to convert all callers of register_sysctl_table and register_sysctl_paths to register_sysctl. The interface to register_sysctl is enough nicer this should make the callers a bit more readable. Additionally after the conversion the 230 lines of backwards compatibility can be removed. Signed-off-by: Eric W. Biederman <ebiederm@xmission.com>
This commit is contained in:
parent
ac13ac6f4c
commit
fea478d410
2 changed files with 18 additions and 0 deletions
|
@ -1228,6 +1228,23 @@ fail:
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* register_sysctl - register a sysctl table
|
||||||
|
* @path: The path to the directory the sysctl table is in.
|
||||||
|
* @table: the table structure
|
||||||
|
*
|
||||||
|
* Register a sysctl table. @table should be a filled in ctl_table
|
||||||
|
* array. A completely 0 filled entry terminates the table.
|
||||||
|
*
|
||||||
|
* See __register_sysctl_table for more details.
|
||||||
|
*/
|
||||||
|
struct ctl_table_header *register_sysctl(const char *path, struct ctl_table *table)
|
||||||
|
{
|
||||||
|
return __register_sysctl_table(&sysctl_table_root.default_set,
|
||||||
|
path, table);
|
||||||
|
}
|
||||||
|
EXPORT_SYMBOL(register_sysctl);
|
||||||
|
|
||||||
static char *append_path(const char *path, char *pos, const char *name)
|
static char *append_path(const char *path, char *pos, const char *name)
|
||||||
{
|
{
|
||||||
int namelen;
|
int namelen;
|
||||||
|
|
|
@ -1090,6 +1090,7 @@ struct ctl_table_header *__register_sysctl_table(
|
||||||
struct ctl_table_header *__register_sysctl_paths(
|
struct ctl_table_header *__register_sysctl_paths(
|
||||||
struct ctl_table_set *set,
|
struct ctl_table_set *set,
|
||||||
const struct ctl_path *path, struct ctl_table *table);
|
const struct ctl_path *path, struct ctl_table *table);
|
||||||
|
struct ctl_table_header *register_sysctl(const char *path, struct ctl_table *table);
|
||||||
struct ctl_table_header *register_sysctl_table(struct ctl_table * table);
|
struct ctl_table_header *register_sysctl_table(struct ctl_table * table);
|
||||||
struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
|
struct ctl_table_header *register_sysctl_paths(const struct ctl_path *path,
|
||||||
struct ctl_table *table);
|
struct ctl_table *table);
|
||||||
|
|
Loading…
Add table
Reference in a new issue