Re: [PATCH] ibmvnic: store RX and TX subCRQ handle array in ibmvnic_adapter struct

2020-07-09 Thread Cris Forno
Thomas Falcon writes: > On 7/1/20 4:25 PM, Cristobal Forno wrote: >> Currently the driver reads RX and TX subCRQ handle array directly from >> a DMA-mapped buffer address when it needs to make a H_SEND_SUBCRQ >> hcall. This patch stores that information in the ibmvnic_sub_crq_queue >> structure i

Re: [PATCH] ibmvnic: store RX and TX subCRQ handle array in ibmvnic_adapter struct

2020-07-01 Thread Thomas Falcon
On 7/1/20 4:25 PM, Cristobal Forno wrote: Currently the driver reads RX and TX subCRQ handle array directly from a DMA-mapped buffer address when it needs to make a H_SEND_SUBCRQ hcall. This patch stores that information in the ibmvnic_sub_crq_queue structure instead of reading from the buffer re

[PATCH] ibmvnic: store RX and TX subCRQ handle array in ibmvnic_adapter struct

2020-07-01 Thread Cristobal Forno
Currently the driver reads RX and TX subCRQ handle array directly from a DMA-mapped buffer address when it needs to make a H_SEND_SUBCRQ hcall. This patch stores that information in the ibmvnic_sub_crq_queue structure instead of reading from the buffer received at login. Signed-off-by: Cristobal F