On Sunday 14 February 2010, Michael S. Tsirkin wrote: > > @@ -473,7 +477,7 @@ static struct socket *get_socket(int fd) > > sock = get_raw_socket(fd); > > if (!IS_ERR(sock)) > > return sock; > > - sock = get_tun_socket(fd); > > + sock = get_tap_socket(fd); > > if (!IS_ERR(sock)) > > return sock; > > return ERR_PTR(-ENOTSOCK); > > This will also need a dependency on macvtap in Kconfig. > See how it's done for tun.
Ok, I'll add that. Thanks, Arnd