Bug 198571
Summary: | [af_netlink]missing wakeup while closing af_netlink socket | ||
---|---|---|---|
Product: | Networking | Reporter: | Shouhua Yu (yushouhua) |
Component: | Other | Assignee: | Stephen Hemminger (stephen) |
Status: | NEW --- | ||
Severity: | normal | CC: | xiyou.wangcong |
Priority: | P1 | ||
Hardware: | All | ||
OS: | Linux | ||
Kernel Version: | 2.6.32 | Subsystem: | |
Regression: | No | Bisected commit-id: |
Description
Shouhua Yu
2018-01-24 12:20:00 UTC
The situation is as follows: Thread A Thread B fd = socket(AF_NETLINK, NETLINK_GENERIC); ret = bind(fd) select(fd) close(fd) After close(fd), thread A would not be woken up. Are you sure? netlink_release() is supposed to be called when the last reference of socket fd is gone, since Thread A is still select()'ing, how could it be released? Also, you misunderstand release_sock(), it is paired with lock_sock(). sock_release() is called when the last fd reference is gone and it is independent to socket type: static int sock_close(struct inode *inode, struct file *filp) { sock_release(SOCKET_I(inode)); return 0; } |