Message ID | 20241013170617.2139204-1-anjali.k.kulkarni@oracle.com (mailing list archive) |
---|---|
Headers | show |
Series | Threads support in proc connector | expand |
On Sun, 13 Oct 2024 10:06:14 -0700 Anjali Kulkarni wrote: > However, for threads, when it does a pthread_exit(&exit_status) call, the > kernel is not aware of the exit status with which pthread_exit is called. > It is sent by child thread to the parent process, if it is waiting in > pthread_join(). Hence, for a thread exiting abnormally, kernel cannot > send notifications to any listening processes. I really don't think this should be going via networking. We can help review the netlink bits, if any, but otherwise we are far outside of our comfort zone. IOW when you repost please drop the net-next designation and you'll need to find someone else to merge these patches, or send a PR directly to Linus himself during the merge window.
On 10/15/24, 9:02 AM, "Jakub Kicinski" <kuba@kernel.org <mailto:kuba@kernel.org>> wrote: On Sun, 13 Oct 2024 10:06:14 -0700 Anjali Kulkarni wrote: > However, for threads, when it does a pthread_exit(&exit_status) call, the > kernel is not aware of the exit status with which pthread_exit is called. > It is sent by child thread to the parent process, if it is waiting in > pthread_join(). Hence, for a thread exiting abnormally, kernel cannot > send notifications to any listening processes. I really don't think this should be going via networking. We can help review the netlink bits, if any, but otherwise we are far outside of our comfort zone. IOW when you repost please drop the net-next designation and you'll need to find someone else to merge these patches, or send a PR directly to Linus himself during the merge window. ANJALI> Thank you! However, looking at the MAINTAINERS file, drivers/connector/ is listed under NETWORKING DRIVERS. Hence sending on net-next is the most appropriate place?
On Tue, 15 Oct 2024 16:22:24 +0000 Anjali Kulkarni wrote: > Thank you! However, looking at the MAINTAINERS file, > drivers/connector/ is listed under NETWORKING DRIVERS. > Hence sending on net-next is the most appropriate place? Hm. It was done relatively recently in commit 46cf789b68b25744be3dc99efd4afce4a5381b5c Author: David S. Miller <davem@davemloft.net> Date: Thu Sep 10 08:40:13 2020 -0700 connector: Move maintainence under networking drivers umbrella. Evgeniy does not have the time nor capacity to maintain the connector subsystem any longer, so just move it under networking as that is effectively what has been happening lately. Signed-off-by: David S. Miller <davem@davemloft.net> There wasn't much development in this code for a long while, so I guess it was done just to make sure patches don't fall thru the cracks. But you seem to be trying to develop it more actively. Okay, if nobody else who want to take these patches into their tree raises their hand - we can try to continue to process the patches, as long as Peter or someone else with the expertise acks them.
On 10/15/24, 9:48 AM, "Jakub Kicinski" <kuba@kernel.org <mailto:kuba@kernel.org>> wrote: On Tue, 15 Oct 2024 16:22:24 +0000 Anjali Kulkarni wrote: > Thank you! However, looking at the MAINTAINERS file, > drivers/connector/ is listed under NETWORKING DRIVERS. > Hence sending on net-next is the most appropriate place? Hm. It was done relatively recently in commit 46cf789b68b25744be3dc99efd4afce4a5381b5c Author: David S. Miller <davem@davemloft.net <mailto:davem@davemloft.net>> Date: Thu Sep 10 08:40:13 2020 -0700 connector: Move maintainence under networking drivers umbrella. Evgeniy does not have the time nor capacity to maintain the connector subsystem any longer, so just move it under networking as that is effectively what has been happening lately. Signed-off-by: David S. Miller <davem@davemloft.net <mailto:davem@davemloft.net>> There wasn't much development in this code for a long while, so I guess it was done just to make sure patches don't fall thru the cracks. But you seem to be trying to develop it more actively. Okay, if nobody else who want to take these patches into their tree raises their hand - we can try to continue to process the patches, as long as Peter or someone else with the expertise acks them. ANJALI> Ok, thanks very much! Anjali