From: Patrik Weiskircher <me@justp.at>
To: Greg KH <greg@kroah.com>
Cc: linux-kernel@vger.kernel.org
Subject: Re: khubd zombie
Date: 18 Feb 2002 20:56:22 +0100 [thread overview]
Message-ID: <1014062182.608.36.camel@pat> (raw)
In-Reply-To: <20020218181417.GA19992@kroah.com>
In-Reply-To: <1014039193.523.42.camel@dev1lap> <20020218181417.GA19992@kroah.com>
[-- Attachment #1: Type: text/plain, Size: 736 bytes --]
On Mon, 2002-02-18 at 19:14, Greg KH wrote:
> On Mon, Feb 18, 2002 at 02:33:13PM +0100, Patrik Weiskircher wrote:
> > killall khubd results to:
> > 10 ? Z 0:00 [khubd <defunct>]
> >
> > is this ok?
> > if not, how can i solve this?
>
> What kernel version is this?
> And why are you trying to kill khubd from userspace? Unloading the
> usbcore module will do the same thing.
>
> thanks,
>
> greg k-h
I tried it with 2.4.5, 2.4.12, 2.4.17.
And I have to kill everything except init.
I need a "clean" system.
Anyway, I don't think that it should behave like that.
Killing something from userspace should not affect the kernel, or did I
miss something?
I fixed it, it works, patch file attached.
Best Regards,
Patrik
[-- Attachment #2: hub.c.patch --]
[-- Type: text/x-patch, Size: 826 bytes --]
diff -Naur linux-2.4.17/drivers/usb/hub.c linux/drivers/usb/hub.c
--- linux-2.4.17/drivers/usb/hub.c Mon Feb 18 20:43:48 2002
+++ linux/drivers/usb/hub.c Mon Feb 18 20:38:50 2002
@@ -826,6 +826,8 @@
static int usb_hub_thread(void *__hub)
{
+ struct task_struct *tsk = current;
+
lock_kernel();
/*
@@ -835,6 +837,13 @@
daemonize();
+ /* avoid getting signals */
+ spin_lock_irq(&tsk->sigmask_lock);
+ flush_signals(tsk);
+ sigfillset(&tsk->blocked);
+ recalc_sigpending(tsk);
+ spin_unlock_irq(&tsk->sigmask_lock);
+
/* Setup a nice name */
strcpy(current->comm, "khubd");
@@ -879,7 +888,7 @@
}
pid = kernel_thread(usb_hub_thread, NULL,
- CLONE_FS | CLONE_FILES | CLONE_SIGHAND);
+ CLONE_FS | CLONE_FILES | CLONE_SIGNAL);
if (pid >= 0) {
khubd_pid = pid;
next prev parent reply other threads:[~2002-02-18 19:57 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-02-18 13:33 khubd zombie Patrik Weiskircher
2002-02-18 18:14 ` Greg KH
2002-02-18 19:56 ` Patrik Weiskircher [this message]
2002-02-18 20:00 ` Greg KH
2002-02-18 20:16 ` Patrik Weiskircher
2002-02-18 20:43 ` Greg KH
2002-02-18 21:05 ` Patrik Weiskircher
2002-02-18 18:21 ` John Levon
2002-02-22 1:19 ` Andrew Rodland
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1014062182.608.36.camel@pat \
--to=me@justp.at \
--cc=greg@kroah.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox