diff options
author | Thomas Graf <tgraf@suug.ch> | 2013-07-29 13:44:15 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-07-30 16:45:09 -0700 |
commit | ffd756b3174e496cf6f3c5458c434e31d2cd48b0 (patch) | |
tree | ddb9510cf8984b8611346fc3b3d7bff2ac74f3d1 /net/Kconfig | |
parent | 5ad37d5deee1ff7150a2d0602370101de158ad86 (diff) | |
download | op-kernel-dev-ffd756b3174e496cf6f3c5458c434e31d2cd48b0.zip op-kernel-dev-ffd756b3174e496cf6f3c5458c434e31d2cd48b0.tar.gz |
pktgen: Require CONFIG_INET due to use of IPv4 checksum function
Unlike for IPv6, the IPv4 checksum functions are only available
if CONFIG_INET is set.
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/Kconfig')
-rw-r--r-- | net/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/Kconfig b/net/Kconfig index 3770249..37162eb 100644 --- a/net/Kconfig +++ b/net/Kconfig @@ -281,7 +281,7 @@ menu "Network testing" config NET_PKTGEN tristate "Packet Generator (USE WITH CAUTION)" - depends on PROC_FS + depends on INET && PROC_FS ---help--- This module will inject preconfigured packets, at a configurable rate, out of a given interface. It is used for network interface |