]> git.baikalelectronics.ru Git - kernel.git/commit
hsr: fix error handling routine in hsr_dev_finalize()
authorTaehee Yoo <ap420073@gmail.com>
Sun, 22 Dec 2019 11:26:15 +0000 (11:26 +0000)
committerDavid S. Miller <davem@davemloft.net>
Thu, 26 Dec 2019 00:35:35 +0000 (16:35 -0800)
commitb2e99751c3d9135cdaf4886de871960a68d03a65
treedb9596fecf5104cdc6d5e89c531ad763ef87c624
parente81400aa1f2e9301f7611f08e4741dfd9b49b713
hsr: fix error handling routine in hsr_dev_finalize()

hsr_dev_finalize() is called to create new hsr interface.
There are some wrong error handling codes.

1. wrong checking return value of debugfs_create_{dir/file}.
These function doesn't return NULL. If error occurs in there,
it returns error pointer.
So, it should check error pointer instead of NULL.

2. It doesn't unregister interface if it fails to setup hsr interface.
If it fails to initialize hsr interface after register_netdevice(),
it should call unregister_netdevice().

3. Ignore failure of creation of debugfs
If creating of debugfs dir and file is failed, creating hsr interface
will be failed. But debugfs doesn't affect actual logic of hsr module.
So, ignoring this is more correct and this behavior is more general.

Fixes: aefd34382d1c ("net/hsr: Use list_head (and rcu) instead of array for slave devices.")
Signed-off-by: Taehee Yoo <ap420073@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/hsr/hsr_debugfs.c
net/hsr/hsr_device.c
net/hsr/hsr_main.h