i40e: fix check of descriptor done flag
authorZhe Tao <zhe.tao@intel.com>
Thu, 9 Jul 2015 02:58:08 +0000 (10:58 +0800)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Fri, 10 Jul 2015 16:55:31 +0000 (18:55 +0200)
commit7eda588164146526d18342e867820c6f8fcb3580
tree7ad8de9aff06d5bccd8d283aadbaec8cfb531912
parent49508ecd257df28a4adb093479ea08c6d6216eb5
i40e: fix check of descriptor done flag

If a descriptor the device drive is handling is the context descriptor,
its type value will be 0x1.
When using the not operator ! to do the conditional check, if the expression
value is zero, the device driver will consider the transaction for this
descriptor has been completed, even its DD field is still 0x1 which means
NIC has not finished the operation on this descriptor.
Use the 0xF to check the DD status to avoid the above issue happens.

Fixes: 4861cde46116 ("i40e: new poll mode driver")
Fixes: 05999aab4ca6 ("i40e: add or delete flow director")

Signed-off-by: Zhe Tao <zhe.tao@intel.com>
Acked-by: Jingjing Wu <jingjing.wu@intel.com>
drivers/net/i40e/i40e_fdir.c
drivers/net/i40e/i40e_rxtx.c