lkml.org 
[lkml]   [2022]   [May]   [28]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
Subjectnet/bridge/br_private.h:901 br_multicast_rport_from_node_skb() warn: inconsistent indenting
tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 9d004b2f4fea97cde123e7f1939b80e77bf2e695
commit: 9632233e7de8da43711bb7cd3e054af32fedcc38 net: bridge: multicast: factor out port multicast context
date: 10 months ago
config: arc-randconfig-m031-20220524 (https://download.01.org/0day-ci/archive/20220528/202205282109.Ow9gLt9u-lkp@intel.com/config)
compiler: arceb-elf-gcc (GCC) 11.3.0

If you fix the issue, kindly add following tag where applicable
Reported-by: kernel test robot <lkp@intel.com>

New smatch warnings:
net/bridge/br_private.h:901 br_multicast_rport_from_node_skb() warn: inconsistent indenting

Old smatch warnings:
net/bridge/br_forward.c:317 br_multicast_flood() error: we previously assumed 'p' could be null (see line 293)

vim +901 net/bridge/br_private.h

890
891 static inline struct net_bridge_port *
892 br_multicast_rport_from_node_skb(struct hlist_node *rp, struct sk_buff *skb) {
893 struct net_bridge_mcast_port *mctx;
894
895 #if IS_ENABLED(CONFIG_IPV6)
896 if (skb->protocol == htons(ETH_P_IPV6))
897 mctx = hlist_entry_safe(rp, struct net_bridge_mcast_port,
898 ip6_rlist);
899 else
900 #endif
> 901 mctx = hlist_entry_safe(rp, struct net_bridge_mcast_port,
902 ip4_rlist);
903
904 if (mctx)
905 return mctx->port;
906 else
907 return NULL;
908 }
909

--
0-DAY CI Kernel Test Service
https://01.org/lkp

\
 
 \ /
  Last update: 2022-05-28 15:11    [W:0.028 / U:0.896 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site