repo.or.cz
/
cris-mirror.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
signal: Fix sending signals with siginfo
[cris-mirror.git]
/
include
/
linux
/
if_link.h
blob
0b17c585b5cdae2094aaac4592b55b17b2a43b9b
1
#ifndef _LINUX_IF_LINK_H
2
#define _LINUX_IF_LINK_H
3
4
#include <uapi/linux/if_link.h>
5
6
7
/* We don't want this structure exposed to user space */
8
struct
ifla_vf_stats
{
9
__u64 rx_packets
;
10
__u64 tx_packets
;
11
__u64 rx_bytes
;
12
__u64 tx_bytes
;
13
__u64 broadcast
;
14
__u64 multicast
;
15
};
16
17
struct
ifla_vf_info
{
18
__u32 vf
;
19
__u8 mac
[
32
];
20
__u32 vlan
;
21
__u32 qos
;
22
__u32 spoofchk
;
23
__u32 linkstate
;
24
__u32 min_tx_rate
;
25
__u32 max_tx_rate
;
26
__u32 rss_query_en
;
27
__u32 trusted
;
28
__be16 vlan_proto
;
29
};
30
#endif
/* _LINUX_IF_LINK_H */