mirror of https://github.com/ipxe/ipxe.git
[hermon] Enable priority flow control on the FCoE priority
Signed-off-by: Michael Brown <mcb30@ipxe.org>pull/1/head
parent
54ec712ebe
commit
aa1c59ccff
|
@ -38,6 +38,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
|
||||||
#include <ipxe/ib_smc.h>
|
#include <ipxe/ib_smc.h>
|
||||||
#include <ipxe/if_ether.h>
|
#include <ipxe/if_ether.h>
|
||||||
#include <ipxe/ethernet.h>
|
#include <ipxe/ethernet.h>
|
||||||
|
#include <ipxe/fcoe.h>
|
||||||
#include "hermon.h"
|
#include "hermon.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -2368,8 +2369,12 @@ static int hermon_eth_open ( struct net_device *netdev ) {
|
||||||
v_pptx, 1 );
|
v_pptx, 1 );
|
||||||
MLX_FILL_1 ( &set_port.general, 1,
|
MLX_FILL_1 ( &set_port.general, 1,
|
||||||
mtu, ( ETH_FRAME_LEN + 40 /* Used by card */ ) );
|
mtu, ( ETH_FRAME_LEN + 40 /* Used by card */ ) );
|
||||||
MLX_FILL_1 ( &set_port.general, 2, pptx, 1 );
|
MLX_FILL_2 ( &set_port.general, 2,
|
||||||
MLX_FILL_1 ( &set_port.general, 3, pprx, 1 );
|
pfctx, ( 1 << FCOE_VLAN_PRIORITY ),
|
||||||
|
pptx, 1 );
|
||||||
|
MLX_FILL_2 ( &set_port.general, 3,
|
||||||
|
pfcrx, ( 1 << FCOE_VLAN_PRIORITY ),
|
||||||
|
pprx, 1 );
|
||||||
if ( ( rc = hermon_cmd_set_port ( hermon, 1,
|
if ( ( rc = hermon_cmd_set_port ( hermon, 1,
|
||||||
( HERMON_SET_PORT_GENERAL_PARAM |
|
( HERMON_SET_PORT_GENERAL_PARAM |
|
||||||
ibdev->port ),
|
ibdev->port ),
|
||||||
|
|
Loading…
Reference in New Issue