Re: [RFC][patch 1/4] Network namespaces: cleanup of dev_base list use

2006-06-27 Thread Eric W. Biederman
Kirill Korotaev <[EMAIL PROTECTED]> writes: > This doesn't support anything. e.g. I caught quite a lot of bugs after Ingo > Molnar, but this doesn't make his code "poor". People are people. > Anyway, I would be happy to see the typo. Look up thread. You replied to the message where I commented o

Re: [RFC][patch 1/4] Network namespaces: cleanup of dev_base list use

2006-06-27 Thread Serge E. Hallyn
Quoting Kirill Korotaev ([EMAIL PROTECTED]): > Cleanup of dev_base list use, with the aim to make device list > per-namespace. > In almost every occasion, use of dev_base variable and dev->next pointer > could be easily replaced by for_each_netdev loop. > A few most complicated

Re: [RFC][patch 1/4] Network namespaces: cleanup of dev_base list use

2006-06-27 Thread Kirill Korotaev
Cleanup of dev_base list use, with the aim to make device list per-namespace. In almost every occasion, use of dev_base variable and dev->next pointer could be easily replaced by for_each_netdev loop. A few most complicated places were converted to using first_netdev()/next_netdev(). As a proof

Re: [RFC][patch 1/4] Network namespaces: cleanup of dev_base list use

2006-06-27 Thread Eric W. Biederman
Kirill Korotaev <[EMAIL PROTECTED]> writes: >>>Cleanup of dev_base list use, with the aim to make device list per-namespace. >>>In almost every occasion, use of dev_base variable and dev->next pointer >>>could be easily replaced by for_each_netdev loop. >>>A few most complicated places were conver

Re: [RFC][patch 1/4] Network namespaces: cleanup of dev_base list use

2006-06-27 Thread Kirill Korotaev
Cleanup of dev_base list use, with the aim to make device list per-namespace. In almost every occasion, use of dev_base variable and dev->next pointer could be easily replaced by for_each_netdev loop. A few most complicated places were converted to using first_netdev()/next_netdev(). As a proof

Re: [RFC][patch 1/4] Network namespaces: cleanup of dev_base list use

2006-06-26 Thread Eric W. Biederman
Andrey Savochkin <[EMAIL PROTECTED]> writes: > Cleanup of dev_base list use, with the aim to make device list per-namespace. > In almost every occasion, use of dev_base variable and dev->next pointer > could be easily replaced by for_each_netdev loop. > A few most complicated places were converted