Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1601693
| From | Vivien Didelot <vivien.didelot@savoirfairelinux.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH net-next v2 3/3] net: dsa: mv88e6xxx: specify ageing time limits |
| Date | 2017-03-15 21:00 +0100 |
| Message-ID | <tlnfs-3Ul-17@gated-at.bofh.it> (permalink) |
| References | <tlnfr-3Ul-5@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
Now that DSA has ageing time limits, specify them when registering a switch so that out-of-range values are handled correctly by the core. Signed-off-by: Vivien Didelot <vivien.didelot@savoirfairelinux.com> Reported-by: Jason Cobham <jcobham@questertangent.com> --- drivers/net/dsa/mv88e6xxx/chip.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/net/dsa/mv88e6xxx/chip.c b/drivers/net/dsa/mv88e6xxx/chip.c index 3354f99df378..2bca297d9296 100644 --- a/drivers/net/dsa/mv88e6xxx/chip.c +++ b/drivers/net/dsa/mv88e6xxx/chip.c @@ -4253,6 +4253,8 @@ static int mv88e6xxx_register_switch(struct mv88e6xxx_chip *chip) ds->priv = chip; ds->ops = &mv88e6xxx_switch_ops; + ds->ageing_time_min = chip->info->age_time_coeff; + ds->ageing_time_max = chip->info->age_time_coeff * U8_MAX; dev_set_drvdata(dev, ds); -- 2.12.0
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH net-next v2 3/3] net: dsa: mv88e6xxx: specify ageing time limits Vivien Didelot <vivien.didelot@savoirfairelinux.com> - 2017-03-15 21:00 +0100 Re: [PATCH net-next v2 3/3] net: dsa: mv88e6xxx: specify ageing time limits Florian Fainelli <f.fainelli@gmail.com> - 2017-03-15 21:10 +0100
csiph-web