* [PATCH v2 1/1]core:Change a wrong explain about dev_get_by_name
@ 2013-03-25 4:10 tingwei liu
2013-03-25 15:44 ` Sergei Shtylyov
0 siblings, 1 reply; 3+ messages in thread
From: tingwei liu @ 2013-03-25 4:10 UTC (permalink / raw)
To: netdev, Alexey Kuznetsov, davem, Eric Dumazet, Ben Hutchings,
Linus Torvalds
From: Tingwei Liu <tingw.liu@gmail.com>
Date: Mon, 25 Mar 2013 11:09:59 +0800
Subject: [PATCH] Change a wrong explain about dev_get_by_name
a long time ago by the commit.
commit 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2
Author: Linus Torvalds <torvalds@ppc970.osdl.org>
Date: Sat Apr 16 15:20:36 2005 -0700
Linux-2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
When function "list_netdevice" get write lock "dev_base_lock" only
disable soft interrupt. So dev_get_by_name get read lock
"dev_base_lock", can not called on interrupt context.
Signed-off-by: Tingwei Liu <tingw.liu@gmail.com>
---
Changes from v1:
- add change log
- add the commnet
net/core/dev.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/net/core/dev.c b/net/core/dev.c
index d540ced..20c5c7c 100644
--- a/net/core/dev.c
+++ b/net/core/dev.c
@@ -700,10 +700,10 @@ EXPORT_SYMBOL(dev_get_by_name_rcu);
* @name: name to find
*
* Find an interface by name. This can be called from any
- * context and does its own locking. The returned handle has
- * the usage count incremented and the caller must use dev_put() to
- * release it when it is no longer needed. %NULL is returned if no
- * matching device is found.
+ * context except hard irq context and does its own locking.
+ * The returned handle has the usage count incremented and the
+ * caller must use dev_put() to release it when it is no longer
+ * needed. %NULL is returned if no matching device is found.
*/
struct net_device *dev_get_by_name(struct net *net, const char *name)
--
1.6.0.2
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH v2 1/1]core:Change a wrong explain about dev_get_by_name
2013-03-25 4:10 [PATCH v2 1/1]core:Change a wrong explain about dev_get_by_name tingwei liu
@ 2013-03-25 15:44 ` Sergei Shtylyov
2013-03-25 16:09 ` David Miller
0 siblings, 1 reply; 3+ messages in thread
From: Sergei Shtylyov @ 2013-03-25 15:44 UTC (permalink / raw)
To: tingwei liu
Cc: netdev, Alexey Kuznetsov, davem, Eric Dumazet, Ben Hutchings,
Linus Torvalds
Hello.
On 25-03-2013 8:10, tingwei liu wrote:
> From: Tingwei Liu <tingw.liu@gmail.com>
> Date: Mon, 25 Mar 2013 11:09:59 +0800
> Subject: [PATCH] Change a wrong explain about dev_get_by_name
> a long time ago by the commit.
Did you mean "before the commit"?
> commit 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2
> Author: Linus Torvalds <torvalds@ppc970.osdl.org>
> Date: Sat Apr 16 15:20:36 2005 -0700
> Linux-2.6.12-rc2
> Initial git repository build. I'm not bothering with the full history,
> even though we have it. We can create a separate "historical" git
> archive of that later if we want to, and in the meantime it's about
> 3.2GB when imported into git - space that would just make the early
> git days unnecessarily complicated, when we don't have a lot of good
> infrastructure for it.
> Let it rip!
> When function "list_netdevice" get write lock "dev_base_lock" only
> disable soft interrupt. So dev_get_by_name get read lock
> "dev_base_lock", can not called on interrupt context.
> Signed-off-by: Tingwei Liu <tingw.liu@gmail.com>
> ---
> Changes from v1:
> - add change log
> - add the commnet
>
> net/core/dev.c | 8 ++++----
> 1 files changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/net/core/dev.c b/net/core/dev.c
> index d540ced..20c5c7c 100644
> --- a/net/core/dev.c
> +++ b/net/core/dev.c
> @@ -700,10 +700,10 @@ EXPORT_SYMBOL(dev_get_by_name_rcu);
> * @name: name to find
> *
> * Find an interface by name. This can be called from any
> - * context and does its own locking. The returned handle has
> - * the usage count incremented and the caller must use dev_put() to
> - * release it when it is no longer needed. %NULL is returned if no
> - * matching device is found.
> + * context except hard irq context and does its own locking.
> + * The returned handle has the usage count incremented and the
> + * caller must use dev_put() to release it when it is no longer
> + * needed. %NULL is returned if no matching device is found.
It seems your patch has all the tabs replaced by spaces.
WBR, Sergei
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH v2 1/1]core:Change a wrong explain about dev_get_by_name
2013-03-25 15:44 ` Sergei Shtylyov
@ 2013-03-25 16:09 ` David Miller
0 siblings, 0 replies; 3+ messages in thread
From: David Miller @ 2013-03-25 16:09 UTC (permalink / raw)
To: sergei.shtylyov
Cc: tingw.liu, netdev, kuznet, eric.dumazet, bhutchings, linus971
From: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Date: Mon, 25 Mar 2013 19:44:10 +0400
> It seems your patch has all the tabs replaced by spaces.
I think this patch should simply be aborted. It hasn't addressed any
of Eric Dumazet's concerns, the patch submitter can't even keep the
patch from being corrupted by his email client, and the patch is of
near zero value as far as I'm concerned especially considering how
much work and effort is going into hand holding this patch submitter.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-03-25 16:09 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-25 4:10 [PATCH v2 1/1]core:Change a wrong explain about dev_get_by_name tingwei liu
2013-03-25 15:44 ` Sergei Shtylyov
2013-03-25 16:09 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).