diff options
author | Miroslav Lichvar <mlichvar@redhat.com> | 2017-05-19 17:52:36 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-05-21 13:37:32 -0400 |
commit | e3412575488ac2408f737a14296cce34c9d8b4f8 (patch) | |
tree | d3b98453b57ba45ac7c2cf90ed87514a8a607d6a /drivers/net/ethernet/neterion | |
parent | b8210a9e4bea6354eccc5d8a50ecc21ea7486dc9 (diff) | |
download | blackbird-obmc-linux-e3412575488ac2408f737a14296cce34c9d8b4f8.tar.gz blackbird-obmc-linux-e3412575488ac2408f737a14296cce34c9d8b4f8.zip |
net: ethernet: update drivers to handle HWTSTAMP_FILTER_NTP_ALL
Include HWTSTAMP_FILTER_NTP_ALL in net_hwtstamp_validate() as a valid
filter and update drivers which can timestamp all packets, or which
explicitly list unsupported filters instead of using a default case, to
handle the filter.
CC: Richard Cochran <richardcochran@gmail.com>
CC: Willem de Bruijn <willemb@google.com>
Signed-off-by: Miroslav Lichvar <mlichvar@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/neterion')
-rw-r--r-- | drivers/net/ethernet/neterion/vxge/vxge-main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/neterion/vxge/vxge-main.c b/drivers/net/ethernet/neterion/vxge/vxge-main.c index 6a4310af5d97..50ea69d88480 100644 --- a/drivers/net/ethernet/neterion/vxge/vxge-main.c +++ b/drivers/net/ethernet/neterion/vxge/vxge-main.c @@ -3218,6 +3218,7 @@ static int vxge_hwtstamp_set(struct vxgedev *vdev, void __user *data) case HWTSTAMP_FILTER_PTP_V2_EVENT: case HWTSTAMP_FILTER_PTP_V2_SYNC: case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ: + case HWTSTAMP_FILTER_NTP_ALL: if (vdev->devh->config.hwts_en != VXGE_HW_HWTS_ENABLE) return -EFAULT; |