Re: [PATCH] net: bridge: br_set_ageing_time takes a clock_t

2016-07-25 Thread David Miller
From: Vivien Didelot Date: Thu, 21 Jul 2016 12:42:19 -0400 > Change the ageing_time type in br_set_ageing_time() from u32 to what it > is expected to be, i.e. a clock_t. > > Signed-off-by: Vivien Didelot Applied.

Re: [PATCH] net: bridge: br_set_ageing_time takes a clock_t

2016-07-21 Thread Cong Wang
On Thu, Jul 21, 2016 at 11:18 AM, Vivien Didelot wrote: > Hi Cong, > > Cong Wang writes: > >> On Thu, Jul 21, 2016 at 9:42 AM, Vivien Didelot >> wrote: >>> Change the ageing_time type in br_set_ageing_time() from u32 to what it >>> is expected to be, i.e. a clock_t. >> >> You also need to change

Re: [PATCH] net: bridge: br_set_ageing_time takes a clock_t

2016-07-21 Thread Vivien Didelot
Hi Cong, Cong Wang writes: > On Thu, Jul 21, 2016 at 9:42 AM, Vivien Didelot > wrote: >> Change the ageing_time type in br_set_ageing_time() from u32 to what it >> is expected to be, i.e. a clock_t. > > You also need to change struct switchdev_attr: > > struct switchdev_attr { > struct

Re: [PATCH] net: bridge: br_set_ageing_time takes a clock_t

2016-07-21 Thread Cong Wang
On Thu, Jul 21, 2016 at 9:42 AM, Vivien Didelot wrote: > Change the ageing_time type in br_set_ageing_time() from u32 to what it > is expected to be, i.e. a clock_t. You also need to change struct switchdev_attr: struct switchdev_attr { struct net_device *orig_dev; enum switchdev

[PATCH] net: bridge: br_set_ageing_time takes a clock_t

2016-07-21 Thread Vivien Didelot
Change the ageing_time type in br_set_ageing_time() from u32 to what it is expected to be, i.e. a clock_t. Signed-off-by: Vivien Didelot --- net/bridge/br_private.h | 2 +- net/bridge/br_stp.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net/bridge/br_private.h b/ne