if_link.h 299 B

1234567891011121314151617
  1. #ifndef _LINUX_IF_LINK_H
  2. #define _LINUX_IF_LINK_H
  3. #include <uapi/linux/if_link.h>
  4. /* We don't want this structure exposed to user space */
  5. struct ifla_vf_info {
  6. __u32 vf;
  7. __u8 mac[32];
  8. __u32 vlan;
  9. __u32 qos;
  10. __u32 tx_rate;
  11. __u32 spoofchk;
  12. __u32 linkstate;
  13. };
  14. #endif /* _LINUX_IF_LINK_H */