Revision 2db1125d51c4752ca68d1f015347b6f5b55e9fca authored by Linus Torvalds on 22 November 2011, 21:19:21 UTC, committed by Linus Torvalds on 22 November 2011, 21:19:21 UTC
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
  mount_subtree() pointless use-after-free
  iio: fix a leak due to improper use of anon_inode_getfd()
  microblaze: bury asm/namei.h
2 parent s 866d43c + d31da0f
Raw File
vde.h
/*
 * 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
back to top