* Re: ixgbe: fixup hard dependencies on supporting 8 traffic classes
@ 2011-10-12 6:35 Dan Carpenter
2011-10-12 6:58 ` John Fastabend
0 siblings, 1 reply; 2+ messages in thread
From: Dan Carpenter @ 2011-10-12 6:35 UTC (permalink / raw)
To: john.r.fastabend; +Cc: e1000-devel, netdev
Hello John Fastabend,
This is a semi-automatic email about new static checker warnings.
The patch 32701dc2e616: "ixgbe: fixup hard dependencies on supporting
8 traffic classes" from Sep 27, 2011, leads to the following Smatch
complaint:
drivers/net/ethernet/intel/ixgbe/ixgbe_main.c +3366 ixgbe_configure_dcb()
error: we previously assumed 'adapter->ixgbe_ieee_ets' could be null (see line 3357)
drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
3356
3357 if (adapter->ixgbe_ieee_ets) {
^^^^^^^^^^^^^^^^^^^^^^^
Null check.
3358 struct ieee_ets *ets = adapter->ixgbe_ieee_ets;
3359 int max_frame = dev->mtu + ETH_HLEN + ETH_FCS_LEN;
3360
3361 ixgbe_dcb_hw_ets(&adapter->hw, ets, max_frame);
3362 }
3363
3364 if (adapter->ixgbe_ieee_pfc) {
3365 struct ieee_pfc *pfc = adapter->ixgbe_ieee_pfc;
3366 u8 *prio_tc = adapter->ixgbe_ieee_ets->prio_tc;
^^^^^^^^^^^^^^^^^^^^^^^^^
New dereference.
3367
3368 ixgbe_dcb_hw_pfc_config(&adapter->hw, pfc->pfc_en,
regards,
dan carpenter
------------------------------------------------------------------------------
All the data continuously generated in your IT infrastructure contains a
definitive record of customers, application performance, security
threats, fraudulent activity and more. Splunk takes this data and makes
sense of it. Business sense. IT sense. Common sense.
http://p.sf.net/sfu/splunk-d2d-oct
_______________________________________________
E1000-devel mailing list
E1000-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/e1000-devel
To learn more about Intel® Ethernet, visit http://communities.intel.com/community/wired
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: ixgbe: fixup hard dependencies on supporting 8 traffic classes
2011-10-12 6:35 ixgbe: fixup hard dependencies on supporting 8 traffic classes Dan Carpenter
@ 2011-10-12 6:58 ` John Fastabend
0 siblings, 0 replies; 2+ messages in thread
From: John Fastabend @ 2011-10-12 6:58 UTC (permalink / raw)
To: Dan Carpenter, Kirsher, Jeffrey T
Cc: e1000-devel@lists.sourceforge.net, netdev@vger.kernel.org
On 10/11/2011 11:35 PM, Dan Carpenter wrote:
> Hello John Fastabend,
>
> This is a semi-automatic email about new static checker warnings.
>
> The patch 32701dc2e616: "ixgbe: fixup hard dependencies on supporting
> 8 traffic classes" from Sep 27, 2011, leads to the following Smatch
> complaint:
>
> drivers/net/ethernet/intel/ixgbe/ixgbe_main.c +3366 ixgbe_configure_dcb()
> error: we previously assumed 'adapter->ixgbe_ieee_ets' could be null (see line 3357)
>
> drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
> 3356
> 3357 if (adapter->ixgbe_ieee_ets) {
> ^^^^^^^^^^^^^^^^^^^^^^^
> Null check.
>
> 3358 struct ieee_ets *ets = adapter->ixgbe_ieee_ets;
> 3359 int max_frame = dev->mtu + ETH_HLEN + ETH_FCS_LEN;
> 3360
> 3361 ixgbe_dcb_hw_ets(&adapter->hw, ets, max_frame);
> 3362 }
> 3363
> 3364 if (adapter->ixgbe_ieee_pfc) {
> 3365 struct ieee_pfc *pfc = adapter->ixgbe_ieee_pfc;
> 3366 u8 *prio_tc = adapter->ixgbe_ieee_ets->prio_tc;
> ^^^^^^^^^^^^^^^^^^^^^^^^^
> New dereference.
>
> 3367
> 3368 ixgbe_dcb_hw_pfc_config(&adapter->hw, pfc->pfc_en,
>
> regards,
> dan carpenter
>
Actually both structures ixgbe_ieee_ets and ixgbe_ieee_pfc get initialized
at the same time. So no null dereference will occur. That said this snippit
should be fixed.
I'll send a patch to JeffK. Thanks for the catch Dan.
.John
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-10-12 6:58 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-12 6:35 ixgbe: fixup hard dependencies on supporting 8 traffic classes Dan Carpenter
2011-10-12 6:58 ` John Fastabend
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).