On 10/09, Andrey Wagin wrote: > > 2012/10/9 Oleg Nesterov <[email protected]>: > > Hmm. This is off-topic, but... > > > > create_pid_namespace: > > > > unsigned int level = parent_pid_ns->level + 1; > > ns->pid_cachep = create_pid_cachep(level + 1); > > Yes, it's correct, because pid->numbers[ns->level] should be valid, so > a size of an array pid->numbers should be (level + 1).
Ah, yes. I missed that ns->level is "last index", not "array size". Indeed, init_pid_ns.level = 0. Thanks Andrey. Oleg. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

