diff options
author | Taku Izumi <izumi.taku@jp.fujitsu.com> | 2010-12-09 15:17:13 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-12-10 16:24:33 -0800 |
commit | f073c7ca29a4a7e14060d9d3ddf09bfbb7cd9cc0 (patch) | |
tree | d545b7e77908ffb101c16d1be8cfe641828fa9b9 /drivers/net/bonding/Makefile | |
parent | 6c2c9d964e71770e7d6efc1a82f3621005d12185 (diff) | |
download | talos-obmc-linux-f073c7ca29a4a7e14060d9d3ddf09bfbb7cd9cc0.tar.gz talos-obmc-linux-f073c7ca29a4a7e14060d9d3ddf09bfbb7cd9cc0.zip |
bonding: add the debugfs facility to the bonding driver
This patch provides the debugfs facility to the bonding driver.
The "bonding" directory is created in the debugfs root and directories of
each bonding interface (like bond0, bond1...) are created in that.
# mount -t debugfs none /sys/kernel/debug
# ls /sys/kernel/debug/bonding
bond0 bond1
Signed-off-by: Taku Izumi <izumi.taku@jp.fujitsu.com>
Signed-off-by: Jay Vosburgh <fubar@us.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bonding/Makefile')
-rw-r--r-- | drivers/net/bonding/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/bonding/Makefile b/drivers/net/bonding/Makefile index 6f9c6faef24c..0e2737eac8b7 100644 --- a/drivers/net/bonding/Makefile +++ b/drivers/net/bonding/Makefile @@ -4,7 +4,7 @@ obj-$(CONFIG_BONDING) += bonding.o -bonding-objs := bond_main.o bond_3ad.o bond_alb.o bond_sysfs.o +bonding-objs := bond_main.o bond_3ad.o bond_alb.o bond_sysfs.o bond_debugfs.o ipv6-$(subst m,y,$(CONFIG_IPV6)) += bond_ipv6.o bonding-objs += $(ipv6-y) |