* [patch] handle pktgen setup in newer kernels in iputils/ipg
@ 2006-12-20 15:09 Mike Frysinger
2006-12-20 15:23 ` YOSHIFUJI Hideaki / 吉藤英明
0 siblings, 1 reply; 2+ messages in thread
From: Mike Frysinger @ 2006-12-20 15:09 UTC (permalink / raw)
To: netdev
[-- Attachment #1.1: Type: text/plain, Size: 152 bytes --]
the ipg script only works with the old "pg3" module and not the new "pktgen"
module ... attached patch updates the ipg script to support both
-mike
[-- Attachment #1.2: Type: application/pgp-signature, Size: 189 bytes --]
[-- Attachment #2: iputils-ipg-tweaks.patch --]
[-- Type: text/x-diff, Size: 993 bytes --]
Only load modules if kernel supports modules and try a little bit
harder to locate the pg directory in /proc with newer kernels.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
--- a/ipg
+++ b/ipg
@@ -1,21 +1,32 @@
#! /bin/bash
-modprobe pg3
+if [ -e /proc/modules ] ; then
+ modprobe pg3 >& /dev/null
+ modprobe pktgen >& /dev/null
+fi
+
+for PGDEV in /proc/net/pg /proc/net/pktgen/pg0 / ; do
+ [ -e ${PGDEV} ] && break
+done
+if [ "${PGDEV}" = "/" ] ; then
+ echo "Could not locate pg in /proc/net" 1>&2
+ exit 1
+fi
function pgset() {
local result
- echo $1 > /proc/net/pg
+ echo $1 > ${PGDEV}
- result=`cat /proc/net/pg | fgrep "Result: OK:"`
+ result=`cat ${PGDEV} | fgrep "Result: OK:"`
if [ "$result" = "" ]; then
- cat /proc/net/pg | fgrep Result:
+ cat ${PGDEV} | fgrep Result:
fi
}
function pg() {
- echo inject > /proc/net/pg
- cat /proc/net/pg
+ echo inject > ${PGDEV}
+ cat ${PGDEV}
}
pgset "odev eth0"
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [patch] handle pktgen setup in newer kernels in iputils/ipg
2006-12-20 15:09 [patch] handle pktgen setup in newer kernels in iputils/ipg Mike Frysinger
@ 2006-12-20 15:23 ` YOSHIFUJI Hideaki / 吉藤英明
0 siblings, 0 replies; 2+ messages in thread
From: YOSHIFUJI Hideaki / 吉藤英明 @ 2006-12-20 15:23 UTC (permalink / raw)
To: vapier; +Cc: netdev, yoshfuji
In article <200612201009.04138.vapier@gentoo.org> (at Wed, 20 Dec 2006 10:09:03 -0500), Mike Frysinger <vapier@gentoo.org> says:
> the ipg script only works with the old "pg3" module and not the new "pktgen"
> module ... attached patch updates the ipg script to support both
Applied. Thanks.
--yoshfuji
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2006-12-20 15:23 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-12-20 15:09 [patch] handle pktgen setup in newer kernels in iputils/ipg Mike Frysinger
2006-12-20 15:23 ` YOSHIFUJI Hideaki / 吉藤英明
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).