3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-21 14:45:53 +00:00

65 lines
1.6 KiB
C
Raw Normal View History

2021-05-27 00:09:36 +05:00
// SPDX-License-Identifier: GPL-2.0
// Copyright (c) 2020 Facebook
#include <linux/debugfs.h>
#include <linux/ethtool.h>
#include <linux/random.h>
#include "netdevsim.h"
static void
nsim_get_pause_stats(struct net_device *dev,
struct ethtool_pause_stats *pause_stats)
{
struct netdevsim *ns = netdev_priv(dev);
2021-09-23 21:59:15 +05:00
if (ns->ethtool.report_stats_rx)
2021-05-27 00:09:36 +05:00
pause_stats->rx_pause_frames = 1;
2021-09-23 21:59:15 +05:00
if (ns->ethtool.report_stats_tx)
2021-05-27 00:09:36 +05:00
pause_stats->tx_pause_frames = 2;
}
static void
nsim_get_pauseparam(struct net_device *dev, struct ethtool_pauseparam *pause)
{
struct netdevsim *ns = netdev_priv(dev);
pause->autoneg = 0; /* We don't support ksettings, so can't pretend */
2021-09-23 21:59:15 +05:00
pause->rx_pause = ns->ethtool.rx;
pause->tx_pause = ns->ethtool.tx;
2021-05-27 00:09:36 +05:00
}
static int
nsim_set_pauseparam(struct net_device *dev, struct ethtool_pauseparam *pause)
{
struct netdevsim *ns = netdev_priv(dev);
if (pause->autoneg)
return -EINVAL;
2021-09-23 21:59:15 +05:00
ns->ethtool.rx = pause->rx_pause;
ns->ethtool.tx = pause->tx_pause;
return 0;
}
2021-05-27 00:09:36 +05:00
static const struct ethtool_ops nsim_ethtool_ops = {
2021-09-23 21:59:15 +05:00
.get_pause_stats = nsim_get_pause_stats,
.get_pauseparam = nsim_get_pauseparam,
.set_pauseparam = nsim_set_pauseparam,
2021-05-27 00:09:36 +05:00
};
void nsim_ethtool_init(struct netdevsim *ns)
{
struct dentry *ethtool, *dir;
ns->netdev->ethtool_ops = &nsim_ethtool_ops;
ethtool = debugfs_create_dir("ethtool", ns->nsim_dev_port->ddir);
dir = debugfs_create_dir("pause", ethtool);
debugfs_create_bool("report_stats_rx", 0600, dir,
2021-09-23 21:59:15 +05:00
&ns->ethtool.report_stats_rx);
2021-05-27 00:09:36 +05:00
debugfs_create_bool("report_stats_tx", 0600, dir,
2021-09-23 21:59:15 +05:00
&ns->ethtool.report_stats_tx);
2021-05-27 00:09:36 +05:00
}