From: David Dillow <dave@thedillows.org>
To: Netdev <netdev@oss.sgi.com>
Cc: dave@thedillows.org
Subject: Ethtool offload patch
Date: Thu, 30 Dec 2004 03:54:55 -0500 [thread overview]
Message-ID: <1104396895.5845.1.camel@ori.thedillows.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 136 bytes --]
The attached patch allows the ethtool userspace tool to query and
control IPSEC crypto offload.
--
David Dillow <dave@thedillows.org>
[-- Attachment #2: ethtool-offload.patch --]
[-- Type: text/x-patch, Size: 3726 bytes --]
diff -urN ethtool-2/ethtool.c ethtool-2-ipsec/ethtool.c
--- ethtool-2/ethtool.c 2004-07-02 11:28:48.000000000 -0400
+++ ethtool-2-ipsec/ethtool.c 2004-11-21 03:15:46.000000000 -0500
@@ -118,7 +118,8 @@
* [ rx on|off ] \
* [ tx on|off ] \
* [ sg on|off ] \
- * [ tso on|off ]
+ * [ tso on|off ] \
+ * [ ipsec on|off ]
* ethtool -r DEVNAME
* ethtool -p DEVNAME [ %d ]
* ethtool -t DEVNAME [ online|offline ]
@@ -190,7 +191,8 @@
" [ rx on|off ] \\\n"
" [ tx on|off ] \\\n"
" [ sg on|off ] \\\n"
- " [ tso on|off ]\n"
+ " [ tso on|off ] \\\n"
+ " [ ipsec on|off ]\n"
" ethtool -r DEVNAME\n"
" ethtool -p DEVNAME [ %%d ]\n"
" ethtool -t DEVNAME [online|(offline)]\n"
@@ -236,6 +238,7 @@
static int off_csum_tx_wanted = -1;
static int off_sg_wanted = -1;
static int off_tso_wanted = -1;
+static int off_ipsec_wanted = -1;
static struct ethtool_pauseparam epause;
static int gpause_changed = 0;
@@ -339,6 +342,7 @@
{ "tx", CMDL_BOOL, &off_csum_tx_wanted, NULL },
{ "sg", CMDL_BOOL, &off_sg_wanted, NULL },
{ "tso", CMDL_BOOL, &off_tso_wanted, NULL },
+ { "ipsec", CMDL_BOOL, &off_ipsec_wanted, NULL },
};
static struct cmdline_info cmdline_pause[] = {
@@ -1175,17 +1179,19 @@
return 0;
}
-static int dump_offload (int rx, int tx, int sg, int tso)
+static int dump_offload (int rx, int tx, int sg, int tso, int ipsec)
{
fprintf(stdout,
"rx-checksumming: %s\n"
"tx-checksumming: %s\n"
"scatter-gather: %s\n"
- "tcp segmentation offload: %s\n",
+ "tcp segmentation offload: %s\n"
+ "IPSEC crypto offload: %s\n",
rx ? "on" : "off",
tx ? "on" : "off",
sg ? "on" : "off",
- tso ? "on" : "off");
+ tso ? "on" : "off",
+ ipsec ? "on" : "off");
return 0;
}
@@ -1449,7 +1455,7 @@
static int do_goffload(int fd, struct ifreq *ifr)
{
struct ethtool_value eval;
- int err, allfail = 1, rx = 0, tx = 0, sg = 0, tso = 0;
+ int err, allfail = 1, rx = 0, tx = 0, sg = 0, tso = 0, ipsec = 0;
fprintf(stdout, "Offload parameters for %s:\n", devname);
@@ -1493,12 +1499,22 @@
allfail = 0;
}
+ eval.cmd = ETHTOOL_GIPSEC;
+ ifr->ifr_data = (caddr_t)&eval;
+ err = ioctl(fd, SIOCETHTOOL, ifr);
+ if (err)
+ perror("Cannot get device IPSEC offload settings");
+ else {
+ ipsec = eval.data;
+ allfail = 0;
+ }
+
if (allfail) {
fprintf(stdout, "no offload info available\n");
return 83;
}
- return dump_offload(rx, tx, sg, tso);
+ return dump_offload(rx, tx, sg, tso, ipsec);
}
static int do_soffload(int fd, struct ifreq *ifr)
@@ -1553,6 +1569,18 @@
return 88;
}
}
+
+ if (off_ipsec_wanted >= 0) {
+ changed = 1;
+ eval.cmd = ETHTOOL_SIPSEC;
+ eval.data = (off_ipsec_wanted == 1);
+ ifr->ifr_data = (caddr_t)&eval;
+ err = ioctl(fd, SIOCETHTOOL, ifr);
+ if (err) {
+ perror("Cannot set device IPSEEC offload settings");
+ return 89;
+ }
+ }
if (!changed) {
fprintf(stdout, "no offload settings changed\n");
}
diff -urN ethtool-2/ethtool-copy.h ethtool-2-ipsec/ethtool-copy.h
--- ethtool-2/ethtool-copy.h 2003-07-19 11:19:52.000000000 -0400
+++ ethtool-2-ipsec/ethtool-copy.h 2004-11-21 02:46:03.000000000 -0500
@@ -283,6 +283,8 @@
#define ETHTOOL_GSTATS 0x0000001d /* get NIC-specific statistics */
#define ETHTOOL_GTSO 0x0000001e /* Get TSO enable (ethtool_value) */
#define ETHTOOL_STSO 0x0000001f /* Set TSO enable (ethtool_value) */
+#define ETHTOOL_GIPSEC 0x00000020 /* Get IPSEC enable (ethtool_value) */
+#define ETHTOOL_SIPSEC 0x00000021 /* Set IPSEC enable (ethtool_value) */
/* compatibility with older code */
#define SPARC_ETH_GSET ETHTOOL_GSET
next reply other threads:[~2004-12-30 8:54 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-12-30 8:54 David Dillow [this message]
2005-01-04 17:44 ` Ethtool offload patch David S. Miller
2005-01-04 19:04 ` Dave Dillow
2005-01-07 6:44 ` 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=1104396895.5845.1.camel@ori.thedillows.org \
--to=dave@thedillows.org \
--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).