linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [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?
@ 2018-08-20 14:14 Dan Carpenter
  2018-08-20 14:37 ` Al Viro
  0 siblings, 1 reply; 2+ messages in thread
From: Dan Carpenter @ 2018-08-20 14:14 UTC (permalink / raw)
  To: kbuild, Al Viro; +Cc: kbuild-all, linux-fsdevel

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

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [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?
  2018-08-20 14:14 [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? Dan Carpenter
@ 2018-08-20 14:37 ` Al Viro
  0 siblings, 0 replies; 2+ messages in thread
From: Al Viro @ 2018-08-20 14:37 UTC (permalink / raw)
  To: Dan Carpenter; +Cc: kbuild, kbuild-all, linux-fsdevel

On Mon, Aug 20, 2018 at 05:14:54PM +0300, Dan Carpenter wrote:
> 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

Thanks, fixed and pushed.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-08-20 17:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-20 14:14 [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? Dan Carpenter
2018-08-20 14:37 ` Al Viro

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).