]> git.baikalelectronics.ru Git - kernel.git/commit
net: xen-netback: include linux/vmalloc.h again
authorArnd Bergmann <arnd@arndb.de>
Tue, 10 Jun 2014 08:34:36 +0000 (10:34 +0200)
committerDavid S. Miller <davem@davemloft.net>
Wed, 11 Jun 2014 22:19:28 +0000 (15:19 -0700)
commit92f79e60821b9f2315f3c8c4179787089cf393e2
tree46411c2709ea70813877fd92cfd27185bb024874
parentcd642d6a6004ba0b8bc78cc7e1b577797e528903
net: xen-netback: include linux/vmalloc.h again

commit cef6b33877ed ("xen-netback: Factor queue-specific data into
queue struct") added a use of vzalloc/vfree to interface.c, but
removed the #include <linux/vmalloc.h> statement at the same time,
which causes this build error:

drivers/net/xen-netback/interface.c: In function 'xenvif_free':
drivers/net/xen-netback/interface.c:754:2: error: implicit declaration of function 'vfree' [-Werror=implicit-function-declaration]
  vfree(vif->queues);
  ^
cc1: some warnings being treated as errors

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Cc: Wei Liu <wei.liu2@citrix.com>
Cc: Andrew J. Bennieston <andrew.bennieston@citrix.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/xen-netback/interface.c