tools/net/ynl/tests/ethtool.c
Source file repositories/reference/linux-study-clean/tools/net/ynl/tests/ethtool.c
File Facts
- System
- Linux kernel
- Corpus path
tools/net/ynl/tests/ethtool.c- Extension
.c- Size
- 2206 bytes
- Lines
- 93
- Domain
- Support Tooling And Documentation
- Bucket
- tools
- Inferred role
- Support Tooling And Documentation: implementation source
- Status
- source implementation candidate
Why This File Exists
Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
- Repository support layer: documentation, build tooling, samples, user-space helper tools, generated initramfs support, licenses, and validation utilities.
- Defines or uses C structs; map object ownership, embedded links, reference counts, and lock ownership.
Dependency Surface
stdio.hstring.hynl.hnet/if.hkselftest_harness.hethtool-user.h
Detected Declarations
function ynl_dump_foreachfunction ynl_dump_foreach
Annotated Snippet
// SPDX-License-Identifier: GPL-2.0
#include <stdio.h>
#include <string.h>
#include <ynl.h>
#include <net/if.h>
#include <kselftest_harness.h>
#include "ethtool-user.h"
FIXTURE(ethtool)
{
struct ynl_sock *ys;
};
FIXTURE_SETUP(ethtool)
{
self->ys = ynl_sock_create(&ynl_ethtool_family, NULL);
ASSERT_NE(NULL, self->ys)
TH_LOG("failed to create ethtool socket");
}
FIXTURE_TEARDOWN(ethtool)
{
ynl_sock_destroy(self->ys);
}
TEST_F(ethtool, channels)
{
struct ethtool_channels_get_req_dump creq = {};
struct ethtool_channels_get_list *channels;
creq._present.header = 1; /* ethtool needs an empty nest */
channels = ethtool_channels_get_dump(self->ys, &creq);
ASSERT_NE(NULL, channels) {
TH_LOG("channels dump failed: %s", self->ys->err.msg);
}
if (ynl_dump_empty(channels)) {
ethtool_channels_get_list_free(channels);
SKIP(return, "no entries in channels dump");
}
ynl_dump_foreach(channels, dev) {
EXPECT_TRUE((bool)dev->header._len.dev_name);
ksft_print_msg("%8s: ", dev->header.dev_name);
EXPECT_TRUE(dev->_present.rx_count ||
dev->_present.tx_count ||
dev->_present.combined_count);
if (dev->_present.rx_count)
printf("rx %d ", dev->rx_count);
if (dev->_present.tx_count)
printf("tx %d ", dev->tx_count);
if (dev->_present.combined_count)
printf("combined %d ", dev->combined_count);
printf("\n");
}
ethtool_channels_get_list_free(channels);
}
TEST_F(ethtool, rings)
{
struct ethtool_rings_get_req_dump rreq = {};
struct ethtool_rings_get_list *rings;
rreq._present.header = 1; /* ethtool needs an empty nest */
rings = ethtool_rings_get_dump(self->ys, &rreq);
ASSERT_NE(NULL, rings) {
TH_LOG("rings dump failed: %s", self->ys->err.msg);
}
if (ynl_dump_empty(rings)) {
ethtool_rings_get_list_free(rings);
SKIP(return, "no entries in rings dump");
}
ynl_dump_foreach(rings, dev) {
EXPECT_TRUE((bool)dev->header._len.dev_name);
ksft_print_msg("%8s: ", dev->header.dev_name);
EXPECT_TRUE(dev->_present.rx || dev->_present.tx);
if (dev->_present.rx)
printf("rx %d ", dev->rx);
if (dev->_present.tx)
printf("tx %d ", dev->tx);
printf("\n");
}
ethtool_rings_get_list_free(rings);
}
Annotation
- Immediate include surface: `stdio.h`, `string.h`, `ynl.h`, `net/if.h`, `kselftest_harness.h`, `ethtool-user.h`.
- Detected declarations: `function ynl_dump_foreach`, `function ynl_dump_foreach`.
- Atlas domain: Support Tooling And Documentation / tools.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.