From: Somala Swaraj <somalaswaraj@xxxxxxxxx> Subject: ipc/mqueue.c: fix a brace coding style issue Link: http://lkml.kernel.org/r/20200301135530.18340-1-somalaswaraj@xxxxxxxxx Signed-off-by: somala swaraj <somalaswaraj@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- ipc/mqueue.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) --- a/ipc/mqueue.c~ipc-mqueuec-fixed-a-brace-coding-style-issue +++ a/ipc/mqueue.c @@ -239,11 +239,10 @@ static inline void msg_tree_erase(struct info->msg_tree_rightmost = rb_prev(node); rb_erase(node, &info->msg_tree); - if (info->node_cache) { + if (info->node_cache) kfree(leaf); - } else { + else info->node_cache = leaf; - } } static inline struct msg_msg *msg_get(struct mqueue_inode_info *info) _