From 5a4d61810961af199859dfb52981632bfe594e95 Mon Sep 17 00:00:00 2001 From: Aravind Srinivasan Date: Tue, 16 Jun 2009 15:11:32 -0700 Subject: s3: forward MSG_DEBUG from smbd parent to all children Before 3.3, an smbcontrol debug message sent to the target "smbd" would actually be sent to all running processes including nmbd and winbindd. This behavior was changed in 3.3 so that the "smbd" target would only send a message to the process found in smbd.pid, while the "all" target would send a message to all processes. The ability to set the debug level of all processes within a single daemon, without specifying each pid is quite useful. This was implemented in winbindd in 065760ed. This patch does the same thing for smbd. Upon receiving a MSG_DEBUG the parent smbd will rebroadcast it to all of its children. The printing process has been added to the list of smbd child processes, and we now always track the number of smbd children regardless of the "max smbd processes" setting. --- docs-xml/manpages-3/smbcontrol.1.xml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'docs-xml') diff --git a/docs-xml/manpages-3/smbcontrol.1.xml b/docs-xml/manpages-3/smbcontrol.1.xml index bb0aa305d2..c41dadcaf2 100644 --- a/docs-xml/manpages-3/smbcontrol.1.xml +++ b/docs-xml/manpages-3/smbcontrol.1.xml @@ -121,7 +121,10 @@ debug Set debug level to the value specified by the - parameter. This can be sent to any of the destinations. + parameter. This can be sent to any of the destinations. If this + message is sent to either the smbd or winbindd daemons, the parent + process will rebroadcast the message to all child processes changing + the debug level in each one. -- cgit