mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-04 05:58:09 +07:00
ixp4xx_eth: Validate hwtstamp_config completely before applying it
hwtstamp_ioctl() should validate all fields of hwtstamp_config before making any changes. Currently it sets the TX configuration before validating the rx_filter field. Untested as I don't have a cross-compiler to hand. Signed-off-by: Ben Hutchings <bhutchings@solarflare.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
2ee91e54bd
commit
a5be8cd387
@ -389,16 +389,8 @@ static int hwtstamp_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
|
|||||||
ch = PORT2CHANNEL(port);
|
ch = PORT2CHANNEL(port);
|
||||||
regs = (struct ixp46x_ts_regs __iomem *) IXP4XX_TIMESYNC_BASE_VIRT;
|
regs = (struct ixp46x_ts_regs __iomem *) IXP4XX_TIMESYNC_BASE_VIRT;
|
||||||
|
|
||||||
switch (cfg.tx_type) {
|
if (cfg.tx_type != HWTSTAMP_TX_OFF && cfg.tx_type != HWTSTAMP_TX_ON)
|
||||||
case HWTSTAMP_TX_OFF:
|
|
||||||
port->hwts_tx_en = 0;
|
|
||||||
break;
|
|
||||||
case HWTSTAMP_TX_ON:
|
|
||||||
port->hwts_tx_en = 1;
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
return -ERANGE;
|
return -ERANGE;
|
||||||
}
|
|
||||||
|
|
||||||
switch (cfg.rx_filter) {
|
switch (cfg.rx_filter) {
|
||||||
case HWTSTAMP_FILTER_NONE:
|
case HWTSTAMP_FILTER_NONE:
|
||||||
@ -416,6 +408,8 @@ static int hwtstamp_ioctl(struct net_device *netdev, struct ifreq *ifr, int cmd)
|
|||||||
return -ERANGE;
|
return -ERANGE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
port->hwts_tx_en = cfg.tx_type == HWTSTAMP_TX_ON;
|
||||||
|
|
||||||
/* Clear out any old time stamps. */
|
/* Clear out any old time stamps. */
|
||||||
__raw_writel(TX_SNAPSHOT_LOCKED | RX_SNAPSHOT_LOCKED,
|
__raw_writel(TX_SNAPSHOT_LOCKED | RX_SNAPSHOT_LOCKED,
|
||||||
®s->channel[ch].ch_event);
|
®s->channel[ch].ch_event);
|
||||||
|
Loading…
Reference in New Issue
Block a user