aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Cochran <richardcochran@gmail.com>2012-04-03 18:59:22 -0400
committerDavid S. Miller <davem@davemloft.net>2012-04-04 05:28:46 -0400
commit02eacbd0c405d378d2357e8e0fac5de981bd40f8 (patch)
treec6213bbd5f83b8dc4a5dd06f35792beb91116bd7
parent509a7c25729feab353502e1b544c614772a1d49a (diff)
ethtool: Add a common function for drivers with transmit time stamping.
Currently, most drivers do not support transmit SO_TIMESTAMPING. For those that do support it, there is one appropriate response to the get_ts_info query. This patch adds a common function providing this response. Signed-off-by: Richard Cochran <richardcochran@gmail.com> Reviewed-by: Ben Hutchings <bhutchings@solarflare.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--include/linux/ethtool.h1
-rw-r--r--net/core/ethtool.c11
2 files changed, 12 insertions, 0 deletions
diff --git a/include/linux/ethtool.h b/include/linux/ethtool.h
index 1769714447b3..560a247bde2a 100644
--- a/include/linux/ethtool.h
+++ b/include/linux/ethtool.h
@@ -811,6 +811,7 @@ struct net_device;
811 811
812/* Some generic methods drivers may use in their ethtool_ops */ 812/* Some generic methods drivers may use in their ethtool_ops */
813u32 ethtool_op_get_link(struct net_device *dev); 813u32 ethtool_op_get_link(struct net_device *dev);
814int ethtool_op_get_ts_info(struct net_device *dev, struct ethtool_ts_info *eti);
814 815
815/** 816/**
816 * ethtool_rxfh_indir_default - get default value for RX flow hash indirection 817 * ethtool_rxfh_indir_default - get default value for RX flow hash indirection
diff --git a/net/core/ethtool.c b/net/core/ethtool.c
index a723b1321691..beacdd93cd8f 100644
--- a/net/core/ethtool.c
+++ b/net/core/ethtool.c
@@ -38,6 +38,17 @@ u32 ethtool_op_get_link(struct net_device *dev)
38} 38}
39EXPORT_SYMBOL(ethtool_op_get_link); 39EXPORT_SYMBOL(ethtool_op_get_link);
40 40
41int ethtool_op_get_ts_info(struct net_device *dev, struct ethtool_ts_info *info)
42{
43 info->so_timestamping =
44 SOF_TIMESTAMPING_TX_SOFTWARE |
45 SOF_TIMESTAMPING_RX_SOFTWARE |
46 SOF_TIMESTAMPING_SOFTWARE;
47 info->phc_index = -1;
48 return 0;
49}
50EXPORT_SYMBOL(ethtool_op_get_ts_info);
51
41/* Handlers for each ethtool command */ 52/* Handlers for each ethtool command */
42 53
43#define ETHTOOL_DEV_FEATURE_WORDS ((NETDEV_FEATURE_COUNT + 31) / 32) 54#define ETHTOOL_DEV_FEATURE_WORDS ((NETDEV_FEATURE_COUNT + 31) / 32)