Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753690Ab3HPDpH (ORCPT ); Thu, 15 Aug 2013 23:45:07 -0400 Received: from rtits2.realtek.com ([60.250.210.242]:41414 "EHLO rtits2.realtek.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752877Ab3HPDpG (ORCPT ); Thu, 15 Aug 2013 23:45:06 -0400 X-SpamFilter-By: BOX Solutions SpamTrap 5.34 with qID r7G3ipfZ013903, This message is accepted by code: ctloc85258 From: hayeswang To: "'Francois Romieu'" CC: , "'nic_swsd'" , , , "'David Miller'" References: <1376378913-879-1-git-send-email-hayeswang@realtek.com> <1376484880-741-1-git-send-email-hayeswang@realtek.com> <20130815122617.GA18057@electric-eye.fr.zoreil.com> Subject: RE: [PATCH net-next v2 1/3] net/usb/r8152: support aggregation Date: Fri, 16 Aug 2013 11:44:56 +0800 Message-ID: <4C3BE5B36641404DBF9ED8943729871B@realtek.com.tw> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 11 Thread-Index: Ac6Zsrsza18B0UNyQ32N13Vvcse1YgAePpMg In-Reply-To: <20130815122617.GA18057@electric-eye.fr.zoreil.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3362 Lines: 120 Francois Romieu [mailto:romieu@fr.zoreil.com] > Sent: Thursday, August 15, 2013 8:26 PM > To: Hayeswang > Cc: netdev@vger.kernel.org; nic_swsd; > linux-kernel@vger.kernel.org; linux-usb@vger.kernel.org; David Miller > Subject: Re: [PATCH net-next v2 1/3] net/usb/r8152: support > aggregation > [...] > > +static > > +int r8152_submit_rx(struct r8152 *tp, struct rx_agg *agg, > gfp_t mem_flags); > > + > > It's a new, less than 10 lines function without driver > internal dependencies. > > The forward declaration is not needed. The r8152_submit_rx() need the declaration of read_bulk_callback(), and the read_bulk_callback() need the declaration of r8152_submit_rx(), too. It likes a dead lock, so I have no idea how to do it without another declaration. [...] > > - if (!netif_device_present(netdev)) > > + if (!netif_carrier_ok(netdev)) > > return; > > How is it related to the subject of the patch ? When link down, the driver would cancel all bulks. This avoid the re-submitting bulk. > [...] > > +static void rx_bottom(struct r8152 *tp) > > +{ > > + struct net_device_stats *stats; > > + struct net_device *netdev; > > + struct rx_agg *agg; > > + struct rx_desc *rx_desc; > > + unsigned long lockflags; > > Idiom: 'flags'. > > > + struct list_head *cursor, *next; > > + struct sk_buff *skb; > > + struct urb *urb; > > + unsigned pkt_len; > > + int len_used; > > + u8 *rx_data; > > + int ret; > > The scope of these variables is needlessly wide. > > > + > > + netdev = tp->netdev; > > + > > + stats = rtl8152_get_stats(netdev); > > + > > + spin_lock_irqsave(&tp->rx_lock, lockflags); > > + list_for_each_safe(cursor, next, &tp->rx_done) { > > + list_del_init(cursor); > > + spin_unlock_irqrestore(&tp->rx_lock, lockflags); > > + > > + agg = list_entry(cursor, struct rx_agg, list); > > + urb = agg->urb; > > + if (urb->actual_length < ETH_ZLEN) { > > goto submit; > > > + ret = r8152_submit_rx(tp, agg, GFP_ATOMIC); > > + spin_lock_irqsave(&tp->rx_lock, lockflags); > > + if (ret && ret != -ENODEV) { > > + list_add_tail(&agg->list, next); > > + tasklet_schedule(&tp->tl); > > + } > > + continue; > > + } > > (remove the line above) > > [...] > > + rx_data = rx_agg_align(rx_data + pkt_len + 4); > > + rx_desc = (struct rx_desc *)rx_data; > > + pkt_len = le32_to_cpu(rx_desc->opts1) & > RX_LEN_MASK; > > + len_used = (int)(rx_data - (u8 *)agg->head); > > + len_used += sizeof(struct rx_desc) + pkt_len; > > + } > > + > > submit: > > > + ret = r8152_submit_rx(tp, agg, GFP_ATOMIC); > > + spin_lock_irqsave(&tp->rx_lock, lockflags); > > + if (ret && ret != -ENODEV) { > > + list_add_tail(&agg->list, next); > > + tasklet_schedule(&tp->tl); > > + } > > + } > > + spin_unlock_irqrestore(&tp->rx_lock, lockflags); > > +} > > It should be possible to retrieve more items in the spinlocked section > so as to have a chance to batch more work. I have not thought > too deeply > about it. I only lock when I want to remove or inser the agg list, and unlock as soon as possible. I don't think I keep locking for a long time. Best Regards, Hayes -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/