Skip to content

Commit

Permalink
ibmvnic: Generalize TX pool structure
Browse files Browse the repository at this point in the history
Remove some unused fields in the structure and include values
describing the individual buffer size and number of buffers in
a TX pool. This allows us to use these fields for TX pool buffer
accounting as opposed to using hard coded values. Include a new
pool array for TSO transmissions.

Signed-off-by: Thomas Falcon <tlfalcon@linux.vnet.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Thomas Falcon authored and David S. Miller committed Mar 18, 2018
1 parent d47d08c commit 4bd95a5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions drivers/net/ethernet/ibm/ibmvnic.h
Original file line number Diff line number Diff line change
Expand Up @@ -917,11 +917,11 @@ struct ibmvnic_tx_pool {
int *free_map;
int consumer_index;
int producer_index;
wait_queue_head_t ibmvnic_tx_comp_q;
struct task_struct *work_thread;
struct ibmvnic_long_term_buff long_term_buff;
struct ibmvnic_long_term_buff tso_ltb;
int tso_index;
int num_buffers;
int buf_size;
};

struct ibmvnic_rx_buff {
Expand Down Expand Up @@ -1044,6 +1044,7 @@ struct ibmvnic_adapter {
u64 promisc;

struct ibmvnic_tx_pool *tx_pool;
struct ibmvnic_tx_pool *tso_pool;
struct completion init_done;
int init_done_rc;

Expand Down

0 comments on commit 4bd95a5

Please sign in to comment.