aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorBen Hutchings <bhutchings@solarflare.com>2013-11-13 20:05:58 -0500
committerBen Hutchings <bhutchings@solarflare.com>2013-11-18 18:50:12 -0500
commite1bd1dc207dae92cdb5b424226f89d1b4e4bb182 (patch)
tree4b6176b6f5644b1fedfb90564e637875447d6f7c /include
parent018c5bba052b3a383d83cf0c756da0e7bc748397 (diff)
net_tstamp: Improve kernel-doc for struct hwtstamp_config
Fix the name of the rx_filter field. Remove text about 32/64-bit compatibility; this works just the same as for most socket ioctls and as the structure is not allowed to grow there is no need to remind anyone how to maintain it. Add explanation about drivers changing the filter mode. Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Diffstat (limited to 'include')
-rw-r--r--include/uapi/linux/net_tstamp.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/uapi/linux/net_tstamp.h b/include/uapi/linux/net_tstamp.h
index ae5df122e42f..c9a7de2a6276 100644
--- a/include/uapi/linux/net_tstamp.h
+++ b/include/uapi/linux/net_tstamp.h
@@ -30,13 +30,13 @@ enum {
30 * 30 *
31 * @flags: no flags defined right now, must be zero 31 * @flags: no flags defined right now, must be zero
32 * @tx_type: one of HWTSTAMP_TX_* 32 * @tx_type: one of HWTSTAMP_TX_*
33 * @rx_type: one of one of HWTSTAMP_FILTER_* 33 * @rx_filter: one of HWTSTAMP_FILTER_*
34 * 34 *
35 * %SIOCSHWTSTAMP expects a &struct ifreq with a ifr_data pointer to 35 * %SIOCSHWTSTAMP expects a &struct ifreq with a ifr_data pointer to
36 * this structure. dev_ifsioc() in the kernel takes care of the 36 * this structure. If the driver or hardware does not support the
37 * translation between 32 bit userspace and 64 bit kernel. The 37 * requested @rx_filter value, the driver may use a more general
38 * structure is intentionally chosen so that it has the same layout on 38 * filter mode. In this case @rx_filter will indicate the actual mode
39 * 32 and 64 bit systems, don't break this! 39 * on return.
40 */ 40 */
41struct hwtstamp_config { 41struct hwtstamp_config {
42 int flags; 42 int flags;