Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 16eecd9b authored by Anish Bhatt's avatar Anish Bhatt Committed by David S. Miller
Browse files

dcbnl : Fix misleading dcb_app->priority explanation



Current explanation of dcb_app->priority is wrong. It says priority is
expected to be a 3-bit unsigned integer which is only true when working with
DCBx-IEEE. Use of dcb_app->priority by DCBx-CEE expects it to be 802.1p user
priority bitmap. Updated accordingly

This affects the cxgb4 driver, but I will post those changes as part of a
larger changeset shortly.

Fixes: 3e29027a ("dcbnl: add support for ieee8021Qaz attributes")
Signed-off-by: default avatarAnish Bhatt <anish@chelsio.com>
Acked-by: default avatarJohn Fastabend <john.r.fastabend@intel.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 2d871aa0
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -148,7 +148,8 @@ struct cee_pfc {
 *
 *
 * @selector: protocol identifier type
 * @selector: protocol identifier type
 * @protocol: protocol of type indicated
 * @protocol: protocol of type indicated
 * @priority: 3-bit unsigned integer indicating priority
 * @priority: 3-bit unsigned integer indicating priority for IEEE
 *            8-bit 802.1p user priority bitmap for CEE
 *
 *
 * ----
 * ----
 *  Selector field values
 *  Selector field values
+3 −2
Original line number Original line Diff line number Diff line
@@ -1776,7 +1776,7 @@ EXPORT_SYMBOL(dcb_getapp);
 *
 *
 * Priority 0 is an invalid priority in CEE spec. This routine
 * Priority 0 is an invalid priority in CEE spec. This routine
 * removes applications from the app list if the priority is
 * removes applications from the app list if the priority is
 * set to zero.
 * set to zero. Priority is expected to be 8-bit 802.1p user priority bitmap
 */
 */
int dcb_setapp(struct net_device *dev, struct dcb_app *new)
int dcb_setapp(struct net_device *dev, struct dcb_app *new)
{
{
@@ -1837,7 +1837,8 @@ EXPORT_SYMBOL(dcb_ieee_getapp_mask);
 *
 *
 * This adds Application data to the list. Multiple application
 * This adds Application data to the list. Multiple application
 * entries may exists for the same selector and protocol as long
 * entries may exists for the same selector and protocol as long
 * as the priorities are different.
 * as the priorities are different. Priority is expected to be a
 * 3-bit unsigned integer
 */
 */
int dcb_ieee_setapp(struct net_device *dev, struct dcb_app *new)
int dcb_ieee_setapp(struct net_device *dev, struct dcb_app *new)
{
{