Skip to content

Commit e609a6b

Browse files
arndbtorvalds
authored andcommitted
sysctl: add register_sysctl() dummy helper
register_sysctl() has been around for five years with commit fea478d ("sysctl: Add register_sysctl for normal sysctl users") but now that arm64 started using it, I ran into a compile error: arch/arm64/kernel/armv8_deprecated.c: In function 'register_insn_emulation_sysctl': arch/arm64/kernel/armv8_deprecated.c:257:2: error: implicit declaration of function 'register_sysctl' This adds a inline function like we already have for register_sysctl_paths() and register_sysctl_table(). Link: http://lkml.kernel.org/r/20171106133700.558647-1-arnd@arndb.de Fixes: 38b9aeb ("arm64: Port deprecated instruction emulation to new sysctl interface") Signed-off-by: Arnd Bergmann <arnd@arndb.de> Reviewed-by: Dave Martin <Dave.Martin@arm.com> Acked-by: Kees Cook <keescook@chromium.org> Acked-by: Will Deacon <will.deacon@arm.com> Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: "Luis R. Rodriguez" <mcgrof@kernel.org> Cc: Alex Benne <alex.bennee@linaro.org> Cc: Arnd Bergmann <arnd@arndb.de> Cc: "Eric W. Biederman" <ebiederm@xmission.com> Cc: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent 3fefc31 commit e609a6b

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

include/linux/sysctl.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,11 @@ static inline struct ctl_table_header *register_sysctl_paths(
213213
return NULL;
214214
}
215215

216+
static inline struct ctl_table_header *register_sysctl(const char *path, struct ctl_table *table)
217+
{
218+
return NULL;
219+
}
220+
216221
static inline void unregister_sysctl_table(struct ctl_table_header * table)
217222
{
218223
}

0 commit comments

Comments
 (0)