[PATCH net] ibmvnic: Allow device probe if the device is not ready at boot

2021-04-19 Thread Cristobal Forno
ner device, indicating that it is ready for boot. The driver will schedule a work event to perform the necessary procedure and begin operation. Signed-off-by: Cristobal Forno Co-developed-by: Thomas Falcon --- drivers/net/ethernet/ibm/ibmvnic.c | 145 - drivers/net/et

[PATCH, net-next, v2] ibmvnic: store RX and TX subCRQ handle array in ibmvnic_adapter struct

2020-08-18 Thread Cristobal Forno
patch is so that we can read and save the login_rsp buffer within the structure and then remove the buffer. Signed-off-by: Cristobal Forno --- drivers/net/ethernet/ibm/ibmvnic.c | 38 -- drivers/net/ethernet/ibm/ibmvnic.h | 1 + 2 files changed, 27 insertions(+), 12

[PATCH, net-next, v3] ibmvnic: store RX and TX subCRQ handle array in ibmvnic_adapter struct

2020-08-19 Thread Cristobal Forno
patch is to parse relevant information from the login response buffer and store it in the driver's private data structures so that we don't need to read directly from the buffer and can then free up that memory. Signed-off-by: Cristobal Forno --- drivers/net/ethernet/ibm/ibmv

[PATCH] MAINTAINERS: Update ibmveth maintainer

2020-09-18 Thread Cristobal Forno
Removed Thomas Falcon. Added myself (Cristobal Forno) as the maintainer of ibmveth. Signed-off-by: Cristobal Forno --- MAINTAINERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index d746519253c3..db6ca1364b88 100644 --- a/MAINTAINERS +++ b

[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

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

2020-07-09 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