diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2005-10-10 16:31:30 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-10-10 16:31:30 -0700 |
commit | d7dd8a72ab8d305fbe1c4bb571e0633eba3a8d23 (patch) | |
tree | b1df87ccb102bbe4c2402a677d62bc6a0b85282e /drivers/usb/core/devio.c | |
parent | 46113830a18847cff8da73005e57bc49c2f95a56 (diff) | |
download | lwn-d7dd8a72ab8d305fbe1c4bb571e0633eba3a8d23.tar.gz lwn-d7dd8a72ab8d305fbe1c4bb571e0633eba3a8d23.zip |
Use the new "kill_proc_info_as_uid()" for USB disconnect too
All the same issues - we can't just save the pointer to the thread, we
must save the pid/uid/euid combination.
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/usb/core/devio.c')
-rw-r--r-- | drivers/usb/core/devio.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/usb/core/devio.c b/drivers/usb/core/devio.c index 6c35dcbea664..487ff672b104 100644 --- a/drivers/usb/core/devio.c +++ b/drivers/usb/core/devio.c @@ -530,7 +530,9 @@ static int usbdev_open(struct inode *inode, struct file *file) INIT_LIST_HEAD(&ps->async_completed); init_waitqueue_head(&ps->wait); ps->discsignr = 0; - ps->disctask = current; + ps->disc_pid = current->pid; + ps->disc_uid = current->uid; + ps->disc_euid = current->euid; ps->disccontext = NULL; ps->ifclaimed = 0; wmb(); |