Re: [PATCH v10 0/2] ns, procfs: pid conversion between ns

2015-02-15 Thread Gui, Jianfeng/归 剑峰
在 2015/2/12 9:35, Chen, Hanxiao/陈 晗霄 写道: -Original Message- From: Chen, Hanxiao/陈 晗霄 Sent: Wednesday, February 11, 2015 1:52 PM -Original Message- From: containers-boun...@lists.linux-foundation.org Chen Hanxiao (1): /proc/PID/status: show all sets of pid according to ns

Re: fib6_del_route has redundant code

2007-12-28 Thread Gui Jianfeng
> From: Gui Jianfeng <[EMAIL PROTECTED]> > Date: Fri, 28 Dec 2007 13:58:21 +0800 > >>>> I think the following code in fib6_del_route in the latest kernel is >>>> useless. >>>> 1125 if (fn->leaf == NULL && fn->fn_flags&

Re: fib6_del_route has redundant code

2007-12-27 Thread Gui Jianfeng
fn->leaf becomes NULL when last route has been deleted, the radix tree should be expunged. > But I am not completely convinced that all of these lines > of code can be removed :-) > > -- Regards Gui Jianfeng -- Gui Jianfeng

fib6_del_route has redundant code

2007-12-26 Thread Gui Jianfeng
Hi all, I think the following code in fib6_del_route in the latest kernel is useless. 1125 if (fn->leaf == NULL && fn->fn_flags&RTN_TL_ROOT) 1126 fn->leaf = &ip6_null_entry; ip6_null_entry will never be unlinked from fn->leaf now, that is, fn->leaf == NULL will never meet.