connector: Fix proc_event_num_listeners count not cleared
authorwangkeqi <wangkeqiwang@didiglobal.com>
Sat, 23 Dec 2023 06:50:32 +0000 (14:50 +0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 2 Jan 2024 14:13:48 +0000 (14:13 +0000)
commitc46bfba1337d301661dbb23cfd905d4cb51f27ca
treed14cc7e2301503957e6361e6b0678393fb7af8d1
parent059d37b718d38d26087121c754691df77acfc66b
connector: Fix proc_event_num_listeners count not cleared

When we register a cn_proc listening event, the proc_event_num_listener
variable will be incremented by one, but if PROC_CN_MCAST_IGNORE is
not called, the count will not decrease.
This will cause the proc_*_connector function to take the wrong path.
It will reappear when the forkstat tool exits via ctrl + c.
We solve this problem by determining whether
there are still listeners to clear proc_event_num_listener.

Signed-off-by: wangkeqi <wangkeqiwang@didiglobal.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/connector/cn_proc.c