[vfs:net-endian.chelsio 2/14] drivers/net/ethernet/chelsio/cxgb4/cxgb4_tc_flower.c:434 valid_l4_mask() warn: should this be a bitwise op?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



tree:   https://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git net-endian.chelsio
head:   04e3509dd351491432ad0d985ac0a175177cdf21
commit: 26ed0a72b445d4b1b8dccb768d989601a218a5a5 [2/14] cxgb4: fix TC-PEDIT-related parts of cxgb4_tc_flower on big-endian

smatch warnings:
drivers/net/ethernet/chelsio/cxgb4/cxgb4_tc_flower.c:434 valid_l4_mask() warn: should this be a bitwise op?

# https://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git/commit/?id=26ed0a72b445d4b1b8dccb768d989601a218a5a5
git remote add vfs https://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git
git remote update vfs
git checkout 26ed0a72b445d4b1b8dccb768d989601a218a5a5
vim +434 drivers/net/ethernet/chelsio/cxgb4/cxgb4_tc_flower.c

62488e4b Kumar Sanghvi 2017-09-21  429  
26ed0a72 Al Viro       2018-08-16  430  static bool valid_l4_mask(__be32 mask)
557ccbf9 Kumar Sanghvi 2017-10-18  431  {
26ed0a72 Al Viro       2018-08-16  432  	/* Either the SPORT OR DPORT can be set, but NOT BOTH.
557ccbf9 Kumar Sanghvi 2017-10-18  433  	 */
26ed0a72 Al Viro       2018-08-16 @434  	return !(mask && htonl(0xffff)) || !(mask & htonl(0xffff0000));
                                                              ^^
This should be "(mask & htonl(0xffff))".

557ccbf9 Kumar Sanghvi 2017-10-18  435  }
557ccbf9 Kumar Sanghvi 2017-10-18  436  

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation



[Index of Archives]     [Linux Ext4 Filesystem]     [Union Filesystem]     [Filesystem Testing]     [Ceph Users]     [Ecryptfs]     [AutoFS]     [Kernel Newbies]     [Share Photos]     [Security]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux Cachefs]     [Reiser Filesystem]     [Linux RAID]     [Samba]     [Device Mapper]     [CEPH Development]

  Powered by Linux