Lines Matching +full:tx +full:- +full:rings +full:- +full:empty
1 // SPDX-License-Identifier: GPL-2.0
9 #include "ethtool-user.h"
16 struct ethtool_rings_get_list *rings; in main() local
23 creq._present.header = 1; /* ethtool needs an empty nest, sigh */ in main()
30 printf(" %8s: ", dev->header.dev_name); in main()
31 if (dev->_present.rx_count) in main()
32 printf("rx %d ", dev->rx_count); in main()
33 if (dev->_present.tx_count) in main()
34 printf("tx %d ", dev->tx_count); in main()
35 if (dev->_present.combined_count) in main()
36 printf("combined %d ", dev->combined_count); in main()
41 rreq._present.header = 1; /* ethtool needs an empty nest.. */ in main()
42 rings = ethtool_rings_get_dump(ys, &rreq); in main()
43 if (!rings) in main()
46 printf("Rings:\n"); in main()
47 ynl_dump_foreach(rings, dev) { in main()
48 printf(" %8s: ", dev->header.dev_name); in main()
49 if (dev->_present.rx) in main()
50 printf("rx %d ", dev->rx); in main()
51 if (dev->_present.tx) in main()
52 printf("tx %d ", dev->tx); in main()
55 ethtool_rings_get_list_free(rings); in main()
62 fprintf(stderr, "YNL (%d): %s\n", ys->err.code, ys->err.msg); in main()