From: Ameen <ameenali023@gmail.com>
To: steve.glendinning@shawell.net
Cc: linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org,
Ameen <AmeenAli023@gmail.com>
Subject: [PATCH 3/3] Minor improvement for smsc95xx netusb driver performance.
Date: Wed, 25 Nov 2015 21:19:06 +0200 [thread overview]
Message-ID: <1448479146-5736-1-git-send-email-AmeenAli023@gmail.com> (raw)
Reduce number of memcpy's by 1-2 improve transmit performance by 2-4%.
or reduce cpu usage on a comparable value.
Signed-off-by: Ameen Ali <AmeenAli023@gmail.com>
---
drivers/net/usb/smsc95xx.c | 30 ++++++++++++++++--------------
1 file changed, 16 insertions(+), 14 deletions(-)
diff --git a/drivers/net/usb/smsc95xx.c b/drivers/net/usb/smsc95xx.c
index 66b3ab9..022d2f63 100644
--- a/drivers/net/usb/smsc95xx.c
+++ b/drivers/net/usb/smsc95xx.c
@@ -1830,7 +1830,9 @@ static struct sk_buff *smsc95xx_tx_fixup(struct usbnet *dev,
{
bool csum = skb->ip_summed == CHECKSUM_PARTIAL;
int overhead = csum ? SMSC95XX_TX_OVERHEAD_CSUM : SMSC95XX_TX_OVERHEAD;
- u32 tx_cmd_a, tx_cmd_b;
+ struct tx_commands_t {
+ u32 cmd_a, cmd_b, csum_preamble;
+ }tx_cmds;
/* We do not advertise SG, so skbs should be already linearized */
BUG_ON(skb_shinfo(skb)->nr_frags);
@@ -1855,26 +1857,26 @@ static struct sk_buff *smsc95xx_tx_fixup(struct usbnet *dev,
+ skb->csum_offset)) = csum_fold(calc);
csum = false;
+ overhead = SMSC95XX_TX_OVERHEAD;
} else {
- u32 csum_preamble = smsc95xx_calc_csum_preamble(skb);
+ tx_cmds.csum_preamble = smsc95xx_calc_csum_preamble(skb);
skb_push(skb, 4);
- cpu_to_le32s(&csum_preamble);
- memcpy(skb->data, &csum_preamble, 4);
+ cpu_to_le32s(&tx_cmds.csum_preamble);
}
}
- skb_push(skb, 4);
- tx_cmd_b = (u32)(skb->len - 4);
+ tx_cmds.cmd_a = (u32)(skb->len) | TX_CMD_A_FIRST_SEG_ |
+ TX_CMD_A_LAST_SEG_;
+
+ cpu_to_le32s(&tx_cmds.cmd_a);
+
+ tx_cmds.cmd_b = (u32)(skb->len);
if (csum)
- tx_cmd_b |= TX_CMD_B_CSUM_ENABLE;
- cpu_to_le32s(&tx_cmd_b);
- memcpy(skb->data, &tx_cmd_b, 4);
+ tx_cmds.cmd_b |= TX_CMD_B_CSUM_ENABLE;
+ cpu_to_le32s(&tx_cmds.cmd_b);
- skb_push(skb, 4);
- tx_cmd_a = (u32)(skb->len - 8) | TX_CMD_A_FIRST_SEG_ |
- TX_CMD_A_LAST_SEG_;
- cpu_to_le32s(&tx_cmd_a);
- memcpy(skb->data, &tx_cmd_a, 4);
+ skb_push(skb, 8);
+ memcpy(skb->data, &tx_cmds, overhead);
return skb;
}
--
2.5.0
next reply other threads:[~2015-11-25 19:19 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-25 19:19 Ameen [this message]
-- strict thread matches above, loose matches on Subject: below --
2015-11-25 19:15 Ameen
2015-11-25 21:26 ` Sergei Shtylyov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1448479146-5736-1-git-send-email-AmeenAli023@gmail.com \
--to=ameenali023@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=steve.glendinning@shawell.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®