From: Eric Lemoine <eric.lemoine@gmail.com>
To: "David S. Miller" <davem@davemloft.net>
Cc: netdev@oss.sgi.com
Subject: [SUNGEM] LLTX support
Date: Wed, 15 Sep 2004 08:45:21 +0200 [thread overview]
Message-ID: <5cac192f04091423453ae3cb@mail.gmail.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 125 bytes --]
The attached patch adds LLTX support to SunGEM NAPI. The tx_lock patch
I just sent must be applied first.
Thanks,
--
Eric
[-- Attachment #2: patch-rset-sungem_lltx-2-6-9-rc1 --]
[-- Type: application/octet-stream, Size: 1765 bytes --]
# This is a BitKeeper generated diff -Nru style patch.
#
# ChangeSet
# 2004/09/15 08:32:25+02:00 eric.lemoine@gmail.com
# [SUNGEM]: add LLTX support to SunGEM
#
# Signed-off-by: Eric Lemoine <eric.lemoine@gmail.com>
#
# drivers/net/sungem.c
# 2004/09/15 08:32:17+02:00 eric.lemoine@gmail.com +10 -4
# [SUNGEM]: add LLTX support to SunGEM
#
# Signed-off-by: Eric Lemoine <eric.lemoine@gmail.com>
#
diff -Nru a/drivers/net/sungem.c b/drivers/net/sungem.c
--- a/drivers/net/sungem.c 2004-09-15 08:38:20 +02:00
+++ b/drivers/net/sungem.c 2004-09-15 08:38:20 +02:00
@@ -942,6 +942,7 @@
struct gem *gp = dev->priv;
int entry;
u64 ctrl;
+ unsigned long flags;
ctrl = 0;
if (skb->ip_summed == CHECKSUM_HW) {
@@ -955,12 +956,17 @@
(csum_stuff_off << 21));
}
- spin_lock_irq(&gp->tx_lock);
+ local_irq_save(flags);
+ if (!spin_trylock(&gp->tx_lock)) {
+ /* Tell upper layer to requeue */
+ local_irq_restore(flags);
+ return -1;
+ }
/* This is a hard error, log it. */
if (TX_BUFFS_AVAIL(gp) <= (skb_shinfo(skb)->nr_frags + 1)) {
netif_stop_queue(dev);
- spin_unlock_irq(&gp->tx_lock);
+ spin_unlock_irqrestore(&gp->tx_lock, flags);
printk(KERN_ERR PFX "%s: BUG! Tx Ring full when queue awake!\n",
dev->name);
return 1;
@@ -1047,7 +1053,7 @@
dev->name, entry, skb->len);
mb();
writel(gp->tx_new, gp->regs + TXDMA_KICK);
- spin_unlock_irq(&gp->tx_lock);
+ spin_unlock_irqrestore(&gp->tx_lock, flags);
dev->trans_start = jiffies;
@@ -2960,7 +2966,7 @@
pci_set_drvdata(pdev, dev);
/* GEM can do it all... */
- dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM;
+ dev->features |= NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_LLTX;
if (pci_using_dac)
dev->features |= NETIF_F_HIGHDMA;
next reply other threads:[~2004-09-15 6:45 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-09-15 6:45 Eric Lemoine [this message]
2004-09-15 15:35 ` [SUNGEM] LLTX support David S. Miller
2004-09-15 15:55 ` Eric Lemoine
2004-09-15 21:43 ` Eric Lemoine
2004-09-16 20:13 ` David S. Miller
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=5cac192f04091423453ae3cb@mail.gmail.com \
--to=eric.lemoine@gmail.com \
--cc=davem@davemloft.net \
--cc=netdev@oss.sgi.com \
/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;
as well as URLs for NNTP newsgroup(s).