Re: [PATCH RESEND] bnx2fc: do not add shared skbs to the fcoe_rx_list

2014-11-21 Thread Maurizio Lombardi
On 11/20/2014 03:07 PM, Christoph Hellwig wrote: > Thanks. This should go into 3.18 and -stable, right? > Yes. Thanks, Maurizio Lombardi On 11/20/2014 11:17 AM, Maurizio Lombardi wrote: > In some cases, the fcoe_rx_list may contains multiple instances > of the same skb (the so called "shar

Re: [PATCH RESEND] bnx2fc: do not add shared skbs to the fcoe_rx_list

2014-11-20 Thread Christoph Hellwig
Thanks. This should go into 3.18 and -stable, right? -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

[PATCH RESEND] bnx2fc: do not add shared skbs to the fcoe_rx_list

2014-11-20 Thread Maurizio Lombardi
In some cases, the fcoe_rx_list may contains multiple instances of the same skb (the so called "shared skbs"). the bnx2fc_l2_rcv thread is a loop that extracts a skb from the list, modifies (and destroys) its content and then proceed to the next one. The problem is that if the skb is shared, the r

[PATCH RESEND] bnx2fc: do not add shared skbs to the fcoe_rx_list

2014-08-27 Thread Maurizio Lombardi
In some cases, the fcoe_rx_list may contains multiple instances of the same skb (the so called "shared skbs"). the bnx2fc_l2_rcv thread is a loop that extracts a skb from the list, modifies (and destroys) its content and the proceed to the next one. The problem is that if the skb is shared, the re