Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1258798

Re: [PATCH v2 1/6] net: dsa: Use delayed work instead of timer+work for polling

From Andrew Lunn <andrew@lunn.ch>
Newsgroups linux.kernel
Subject Re: [PATCH v2 1/6] net: dsa: Use delayed work instead of timer+work for polling
Date 2015-10-29 15:00 +0100
Message-ID <qoVUd-RM-11@gated-at.bofh.it> (permalink)
References <qoVrc-Hx-11@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Thu, Oct 29, 2015 at 02:22:41PM +0100, Neil Armstrong wrote:
> Simplifies the code and avoids a crash when removing the
> module:
>  dsa dsa ethmv2 (unregistering): Link is Down
>  device eth1 left promiscuous mode
>  Unable to handle kernel paging request at virtual address bacc5cf6
>  ...
>  (run_timer_softirq) from [<c003e810>] (__do_softirq+0xcc/0x320)
>  (__do_softirq) from [<c003ed40>] (irq_exit+0xac/0x10c)
>  (irq_exit) from [<c007ec20>] (__handle_domain_irq+0x50/0xa8)
> 
> Signed-off-by: Frode Isaksen <fisaksen@baylibre.com>
> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
> ---
>  include/net/dsa.h |  3 +--
>  net/dsa/dsa.c     | 28 ++++++++--------------------
>  2 files changed, 9 insertions(+), 22 deletions(-)
> 
> diff --git a/include/net/dsa.h b/include/net/dsa.h
> index 98ccbde..d4d13f7 100644
> --- a/include/net/dsa.h
> +++ b/include/net/dsa.h
> @@ -112,8 +112,7 @@ struct dsa_switch_tree {
>  	 * Link state polling.
>  	 */
>  	int			link_poll_needed;
> -	struct work_struct	link_poll_work;
> -	struct timer_list	link_poll_timer;
> +	struct delayed_work	link_poll_work;
> 
>  	/*
>  	 * Data for the individual switch chips.
> diff --git a/net/dsa/dsa.c b/net/dsa/dsa.c
> index 1eba07f..aeb6a7c 100644
> --- a/net/dsa/dsa.c
> +++ b/net/dsa/dsa.c
> @@ -513,7 +513,7 @@ static void dsa_link_poll_work(struct work_struct *ugly)
>  	struct dsa_switch_tree *dst;
>  	int i;
> 
> -	dst = container_of(ugly, struct dsa_switch_tree, link_poll_work);
> +	dst = container_of(ugly, struct dsa_switch_tree, link_poll_work.work);
> 
>  	for (i = 0; i < dst->pd->nr_chips; i++) {
>  		struct dsa_switch *ds = dst->ds[i];
> @@ -522,17 +522,9 @@ static void dsa_link_poll_work(struct work_struct *ugly)
>  			ds->drv->poll_link(ds);

Hi Neil, Frode

I assume you have see:

http://permalink.gmane.org/gmane.linux.network/380777

which is now in net-next.

The only driver making use of poll_link is mv88e6060.c. The argument
from removing it from the other mv88e6xxx drivers is that it is not
needed. The phylib will be polling the phys and looking for state
changes. mv88e6060.c implements phy_read() and phy_write() so it
should also allow the use of phylib.

Could you try 6060 without .poll_link. If that works, we should be
able to remove all this code, rather than fix it up.

     Andrew
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH v2 1/6] net: dsa: Use delayed work instead of timer+work for  polling Neil Armstrong <narmstrong@baylibre.com> - 2015-10-29 14:30 +0100
  Re: [PATCH v2 1/6] net: dsa: Use delayed work instead of timer+work  for polling Andrew Lunn <andrew@lunn.ch> - 2015-10-29 15:00 +0100
    Re: [PATCH v2 1/6] net: dsa: Use delayed work instead of timer+work  for polling Neil Armstrong <narmstrong@baylibre.com> - 2015-10-29 15:20 +0100
      Re: [PATCH v2 1/6] net: dsa: Use delayed work instead of timer+work  for polling Andrew Lunn <andrew@lunn.ch> - 2015-10-29 15:50 +0100
        Re: [PATCH v2 1/6] net: dsa: Use delayed work instead of timer+work  for polling Vivien Didelot <vivien.didelot@savoirfairelinux.com> - 2015-10-29 16:10 +0100
          Re: [PATCH v2 1/6] net: dsa: Use delayed work instead of timer+work  for polling Andrew Lunn <andrew@lunn.ch> - 2015-10-29 16:30 +0100
            Re: [PATCH v2 1/6] net: dsa: Use delayed work instead of timer+work  for polling Neil Armstrong <narmstrong@baylibre.com> - 2015-10-30 16:50 +0100
              Re: [PATCH v2 1/6] net: dsa: Use delayed work instead of timer+work  for polling Andrew Lunn <andrew@lunn.ch> - 2015-10-30 17:40 +0100

csiph-web