From: Andrew Morton WARNING: line over 80 characters #123: FILE: include/linux/security.h:1995: +static inline void security_inode_getsecid(const struct inode *inode, u32 *secid) total: 0 errors, 1 warnings, 158 lines checked ./patches/lsm-introduce-inode_getsecid-and-ipc_getsecid-hooks.patch has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. Please run checkpatch prior to sending patches Cc: Ahmed S. Darwish Signed-off-by: Andrew Morton --- include/linux/security.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN include/linux/security.h~lsm-introduce-inode_getsecid-and-ipc_getsecid-hooks-checkpatch-fixes include/linux/security.h --- a/include/linux/security.h~lsm-introduce-inode_getsecid-and-ipc_getsecid-hooks-checkpatch-fixes +++ a/include/linux/security.h @@ -2092,7 +2092,8 @@ static inline int security_inode_listsec return 0; } -static inline void security_inode_getsecid(const struct inode *inode, u32 *secid) +static inline void security_inode_getsecid(const struct inode *inode, + u32 *secid) { *secid = 0; } _