Re: [PATCH] sysctl: Add the kernel.ns_last_pid control

From: Pavel Emelyanov
Date: Mon Nov 28 2011 - 11:05:02 EST


On 11/28/2011 07:53 PM, Tejun Heo wrote:
> On Mon, Nov 28, 2011 at 07:21:25PM +0400, Pavel Emelyanov wrote:
>> +static int pid_ns_ctl_handler(struct ctl_table *table, int write,
>> + void __user *buffer, size_t *lenp, loff_t *ppos)
>> +{
>> + struct ctl_table tmp = *table;
>> +
>> + if (write && !capable(CAP_SYS_ADMIN))
>> + return -EPERM;
>> +
>> + /*
>> + * Writing directly to ns' last_pid field is OK, since this field
>> + * is volatile in a living namespace anyway and a code writing to
>> + * it should synchronize its usage with external means.
>> + */
>
> I would still prefer using set_last_pid() but if you insist to update
> last_pid directly, please note the direct update in the comment on top
> of set_last_pid() too.

It's already there in this patch.

> Other than that,
>
> Acked-by: Tejun Heo <tj@xxxxxxxxxx>

Thanks!

> Thanks.
>

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/