Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1206208
| From | ebiederm@xmission.com (Eric W. Biederman) |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH] user_ns: use correct check for single-threadedness |
| Date | 2015-08-12 17:20 +0200 |
| Message-ID | <pWFYS-8aR-15@gated-at.bofh.it> (permalink) |
| References | (5 earlier) <pUc4W-1s6-15@gated-at.bofh.it> <pUu1Q-2J4-35@gated-at.bofh.it> <pUu1Q-2J4-33@gated-at.bofh.it> <pWt1E-5Oa-7@gated-at.bofh.it> <pWFvQ-7mW-11@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Oleg Nesterov <oleg@redhat.com> writes: > On 08/11, Eric W. Biederman wrote: >> >> Oleg Nesterov <oleg@redhat.com> writes: >> >> >> Then why we can't simply check thread_group_empty() == T ? Why should we >> >> worry about CLONE_SIGHAND at all? >> > >> > The same for clone() actually... I forgot why we decided to check >> > CLONE_SIGHAND, iirc I suggested CLONE_THREAD initially then we switched >> > to CLONE_SIGHAND "just in case", to make it as strict as possible. >> >> I do agree that making the test be for CLONE_THREAD is safe, makes >> sense, and is less confusing than what we have now.x > > Good, > >> > How about the patch below? >> > >> > (note that the "or parent" part of the comment is wrong in any case). >> >> It was correct. > > Yes, I know, > >> You failed to removed it when you removed CLONE_PARENT >> from that test. > > Cough... it was you ;) 1f7f4dde5c945f41a7abc2285be43d918029ecc5 > "fork: Allow CLONE_PARENT after setns(CLONE_NEWPID)". So it was. I must have tired when I read the git log last night. Eric -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Re: [PATCH] user_ns: use correct check for single-threadedness Oleg Nesterov <oleg@redhat.com> - 2015-08-05 19:30 +0200
Re: [PATCH] user_ns: use correct check for single-threadedness ebiederm@xmission.com (Eric W. Biederman) - 2015-08-05 20:10 +0200
Re: [PATCH] user_ns: use correct check for single-threadedness ebiederm@xmission.com (Eric W. Biederman) - 2015-08-05 21:00 +0200
Re: [PATCH] user_ns: use correct check for single-threadedness Oleg Nesterov <oleg@redhat.com> - 2015-08-06 16:10 +0200
[PATCH 0/2] userns: Creation logic fixes ebiederm@xmission.com (Eric W. Biederman) - 2015-08-12 03:30 +0200
[PATCH 2/2] userns,pidns: Force thread group sharing, not signal handler sharing ebiederm@xmission.com (Eric W. Biederman) - 2015-08-12 03:40 +0200
Re: [PATCH 2/2] userns,pidns: Force thread group sharing, not signal handler sharing Oleg Nesterov <oleg@redhat.com> - 2015-08-12 19:30 +0200
[PATCH 1/2] unshare: Unsharing a thread does not require unsharing a vm ebiederm@xmission.com (Eric W. Biederman) - 2015-08-12 03:40 +0200
Re: [PATCH 1/2] unshare: Unsharing a thread does not require unsharing a vm Oleg Nesterov <oleg@redhat.com> - 2015-08-12 20:00 +0200
Re: [PATCH 1/2] unshare: Unsharing a thread does not require unsharing a vm ebiederm@xmission.com (Eric W. Biederman) - 2015-08-12 20:50 +0200
Re: [PATCH 1/2] unshare: Unsharing a thread does not require unsharing a vm Oleg Nesterov <oleg@redhat.com> - 2015-08-13 15:00 +0200
Re: [PATCH 1/2] unshare: Unsharing a thread does not require unsharing a vm ebiederm@xmission.com (Eric W. Biederman) - 2015-08-13 17:50 +0200
Re: [PATCH 1/2] unshare: Unsharing a thread does not require unsharing a vm Oleg Nesterov <oleg@redhat.com> - 2015-08-13 18:20 +0200
Re: [PATCH 1/2] unshare: Unsharing a thread does not require unsharing a vm ebiederm@xmission.com (Eric W. Biederman) - 2015-08-13 18:40 +0200
Re: [PATCH 1/2] unshare: Unsharing a thread does not require unsharing a vm Oleg Nesterov <oleg@redhat.com> - 2015-08-13 19:00 +0200
Re: [PATCH 1/2] unshare: Unsharing a thread does not require unsharing a vm Oleg Nesterov <oleg@redhat.com> - 2015-08-14 20:10 +0200
[PATCH v2] unshare: Unsharing a thread does not require unsharing a vm ebiederm@xmission.com (Eric W. Biederman) - 2015-08-12 22:10 +0200
Re: [PATCH v2] unshare: Unsharing a thread does not require unsharing a vm Oleg Nesterov <oleg@redhat.com> - 2015-08-13 15:00 +0200
Re: [PATCH v2] unshare: Unsharing a thread does not require unsharing a vm ebiederm@xmission.com (Eric W. Biederman) - 2015-08-13 18:10 +0200
Re: [PATCH v2] unshare: Unsharing a thread does not require unsharing a vm Oleg Nesterov <oleg@redhat.com> - 2015-08-13 18:40 +0200
Re: [PATCH v2] unshare: Unsharing a thread does not require unsharing a vm ebiederm@xmission.com (Eric W. Biederman) - 2015-08-13 18:50 +0200
Re: [PATCH 0/2] userns: Creation logic fixes Kees Cook <keescook@chromium.org> - 2015-08-12 08:30 +0200
Re: [PATCH] user_ns: use correct check for single-threadedness ebiederm@xmission.com (Eric W. Biederman) - 2015-08-12 03:30 +0200
Re: [PATCH] user_ns: use correct check for single-threadedness Oleg Nesterov <oleg@redhat.com> - 2015-08-12 16:50 +0200
Re: [PATCH] user_ns: use correct check for single-threadedness ebiederm@xmission.com (Eric W. Biederman) - 2015-08-12 17:20 +0200
Re: [PATCH] user_ns: use correct check for single-threadedness Oleg Nesterov <oleg@redhat.com> - 2015-08-06 17:20 +0200
Re: [PATCH] user_ns: use correct check for single-threadedness ebiederm@xmission.com (Eric W. Biederman) - 2015-08-06 23:30 +0200
Re: [PATCH] user_ns: use correct check for single-threadedness Oleg Nesterov <oleg@redhat.com> - 2015-08-07 04:50 +0200
csiph-web