mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
[NET]: Proper comment for loopback initialization order.
Loopback device is special. It should be initialized at the very beginning. Initialization order has been changed by Eric W. Biederman <ebiederm@xmission.com> and this change is non-obvious and important enough to add proper comment. Signed-off-by: Denis V. Lunev <den@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f4618d39a3
commit
070ac3a265
1 changed files with 3 additions and 0 deletions
|
@ -293,4 +293,7 @@ static int __init loopback_init(void)
|
|||
return register_pernet_device(&loopback_net_ops);
|
||||
}
|
||||
|
||||
/* Loopback is special. It should be initialized before any other network
|
||||
* device and network subsystem.
|
||||
*/
|
||||
fs_initcall(loopback_init);
|
||||
|
|
Loading…
Reference in a new issue