From: Nick Krause <xerofo...@gmail.com> Date: Sun, 15 Jun 2014 16:27:23 -0400
> From 62b0d77a1430f74b7f5c008c5e8bec11604b33b0 Mon Sep 17 00:00:00 2001 > From: Nick <xerofo...@gmail.com> > Date: Sun, 15 Jun 2014 16:16:14 -0400 > Subject: [PATCHv2] Fixes return logic of function of > pch_gbe_alloc_tx_buffers() > Here is the fixed patch changed return type of function to int in > order to use return -ENOMEM as with the function above it , seems to > fit , otherwise returns 0. > Report if it breaks anything related to this driver. > Signed-off-by: Nick <xerofo...@gmail.com> Nobody is checking the return value, you can't just change the function to return an error code, you have to make the caller act upon it appropriately as well. I'm very much not confident that you are willing to put in the effort necessary to fix this problem properly. I told you explicitly that if this memory allocation failure occurs, the bringup of the device has to fail. Your patch is making the situation worse, it breaks when there is an allocation failure, leaving the TX run partially allocated so that the driver will crash with an OOPS later. >From your first iteration, you aren't build testing this change, and I therefore severely doubt you are functionally testing this change either. I hate to be harsh, but this is an extremely _poor_ patch submission. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/