From: stephen hemminger Date: Mon, 29 Nov 2010 09:47:48 +0000 (+0000) Subject: gre: add module alias for gre0 tunnel device X-Git-Tag: v3.0~2504^2~382 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4da6a738ffdb99b88efbe5b4c4fe521ca453640d;p=platform%2Fkernel%2Flinux-amlogic.git gre: add module alias for gre0 tunnel device If gre is built as a module the 'ip tunnel add' command would fail because the ip_gre module was not being autoloaded. Adding an alias for the gre0 device name cause dev_load() to autoload it when needed. Signed-off-by: Stephen Hemminger Signed-off-by: David S. Miller --- diff --git a/net/ipv4/ip_gre.c b/net/ipv4/ip_gre.c index 98769c39..258c98d 100644 --- a/net/ipv4/ip_gre.c +++ b/net/ipv4/ip_gre.c @@ -1764,3 +1764,4 @@ module_exit(ipgre_fini); MODULE_LICENSE("GPL"); MODULE_ALIAS_RTNL_LINK("gre"); MODULE_ALIAS_RTNL_LINK("gretap"); +MODULE_ALIAS("gre0");