ixgbe: keep only non-zero initializer in mbuf definition
authorBruce Richardson <bruce.richardson@intel.com>
Thu, 28 Aug 2014 15:42:34 +0000 (16:42 +0100)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Wed, 17 Sep 2014 09:27:50 +0000 (11:27 +0200)
commitcafa59684660640c8bf847547613a48bc7a9d37c
tree72630ea82fb6b44117c0da46587dbeac73f0aa20
parentf635747001bceab7ce4c1497f4dfe338d26c8d9b
ixgbe: keep only non-zero initializer in mbuf definition

Since all unspecified fields in an initializer are assumed to be zero we
can simplify the empty mbuf definition in the vector driver to only use
the fields that are non-zero, i.e. just nb_segs = 1. This makes things
shorter and means that the structure doesn't need as many updates for
other fields being renamed or moved.

The variable itself is never modified and only used by a single function
so it can be made const and local to the using function.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
Acked-by: Olivier Matz <olivier.matz@6wind.com>
lib/librte_pmd_ixgbe/ixgbe_rxtx_vec.c