mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
ad43c3565b
Added vde network backend in uml to introduce native Virtual Distributed Ethernet support (using libvdeplug). Signed-off-by: Luca Bigliardi <shammash@artha.org> Signed-off-by: Jeff Dike <jdike@linux.intel.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
32 lines
574 B
C
32 lines
574 B
C
/*
|
|
* Copyright (C) 2007 Luca Bigliardi (shammash@artha.org).
|
|
* Licensed under the GPL.
|
|
*/
|
|
|
|
#ifndef __UM_VDE_H__
|
|
#define __UM_VDE_H__
|
|
|
|
struct vde_data {
|
|
char *vde_switch;
|
|
char *descr;
|
|
void *args;
|
|
void *conn;
|
|
void *dev;
|
|
};
|
|
|
|
struct vde_init {
|
|
char *vde_switch;
|
|
char *descr;
|
|
int port;
|
|
char *group;
|
|
int mode;
|
|
};
|
|
|
|
extern const struct net_user_info vde_user_info;
|
|
|
|
extern void vde_init_libstuff(struct vde_data *vpri, struct vde_init *init);
|
|
|
|
extern int vde_user_read(void *conn, void *buf, int len);
|
|
extern int vde_user_write(void *conn, void *buf, int len);
|
|
|
|
#endif
|