diff options
author | Taehee Yoo <ap420073@gmail.com> | 2019-12-22 12:26:27 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-12-26 01:35:35 +0100 |
commit | c6c4ccd7f96993e106dfea7ef18127f972f2db5e (patch) | |
tree | c3f81377fab61c6a1af64f830ea7f2bc15b68357 /net/hsr/hsr_main.c | |
parent | hsr: fix error handling routine in hsr_dev_finalize() (diff) | |
download | linux-c6c4ccd7f96993e106dfea7ef18127f972f2db5e.tar.xz linux-c6c4ccd7f96993e106dfea7ef18127f972f2db5e.zip |
hsr: add hsr root debugfs directory
In current hsr code, when hsr interface is created, it creates debugfs
directory /sys/kernel/debug/<interface name>.
If there is same directory or file name in there, it fails.
In order to reduce possibility of failure of creation of debugfs,
this patch adds root directory.
Test commands:
ip link add dummy0 type dummy
ip link add dummy1 type dummy
ip link add hsr0 type hsr slave1 dummy0 slave2 dummy1
Before this patch:
/sys/kernel/debug/hsr0/node_table
After this patch:
/sys/kernel/debug/hsr/hsr0/node_table
Signed-off-by: Taehee Yoo <ap420073@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/hsr/hsr_main.c')
-rw-r--r-- | net/hsr/hsr_main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/hsr/hsr_main.c b/net/hsr/hsr_main.c index b9988a662ee1..490896379073 100644 --- a/net/hsr/hsr_main.c +++ b/net/hsr/hsr_main.c @@ -123,6 +123,7 @@ static void __exit hsr_exit(void) { unregister_netdevice_notifier(&hsr_nb); hsr_netlink_exit(); + hsr_debugfs_remove_root(); } module_init(hsr_init); |