diff options
| author | John W. Linville <linville@tuxdriver.com> | 2011-06-24 15:25:51 -0400 | 
|---|---|---|
| committer | John W. Linville <linville@tuxdriver.com> | 2011-06-24 15:25:51 -0400 | 
| commit | 36099365c7cc64e5184b66b6eb094950a13f540c (patch) | |
| tree | c91b9f3719f94864a62f2d15a71aaecd54c56711 /include/linux/netlink.h | |
| parent | 22c8c9343258feda9ea9ebb9e5f8cbb727b69454 (diff) | |
| parent | f70490e6078abe1182437e629f67a7f0b6f08cd4 (diff) | |
| download | olio-linux-3.10-36099365c7cc64e5184b66b6eb094950a13f540c.tar.xz olio-linux-3.10-36099365c7cc64e5184b66b6eb094950a13f540c.zip  | |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-next-2.6 into for-davem
Conflicts:
	drivers/net/wireless/rtlwifi/pci.c
	include/linux/netlink.h
Diffstat (limited to 'include/linux/netlink.h')
| -rw-r--r-- | include/linux/netlink.h | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/netlink.h b/include/linux/netlink.h index fdd0188a167..2e17c5dbdcb 100644 --- a/include/linux/netlink.h +++ b/include/linux/netlink.h @@ -49,6 +49,7 @@ struct nlmsghdr {  #define NLM_F_MULTI		2	/* Multipart message, terminated by NLMSG_DONE */  #define NLM_F_ACK		4	/* Reply with ack, with zero or error code */  #define NLM_F_ECHO		8	/* Echo this request 		*/ +#define NLM_F_DUMP_INTR		16	/* Dump was inconsistent due to sequence change */  /* Modifiers to GET request */  #define NLM_F_ROOT	0x100	/* specify tree	root	*/ @@ -223,6 +224,7 @@ struct netlink_callback {  	int			(*done)(struct netlink_callback *cb);  	u16			family;  	u16			min_dump_alloc; +	unsigned int		prev_seq, seq;  	long			args[6];  };  |