public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] avoiding the same resource to be inserted
@ 2010-08-16 15:55 Huang Shijie
  2010-08-24 23:46 ` Andrew Morton
  0 siblings, 1 reply; 7+ messages in thread
From: Huang Shijie @ 2010-08-16 15:55 UTC (permalink / raw)
  To: akpm; +Cc: linux-kernel, Huang Shijie

  If the same resource is inserted to the resource tree
(maybe not on purpose), a dead loop will be created. In this situation,
The kernel does not report any warning or error	:(

  The command below will show a endless print.
  #cat /proc/iomem

  So, adding the check for the same resource is needed for the stability
and reliability of the kernel.

Signed-off-by: Huang Shijie <shijie8@gmail.com>
---
 kernel/resource.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/kernel/resource.c b/kernel/resource.c
index 7b36976..60daab4 100644
--- a/kernel/resource.c
+++ b/kernel/resource.c
@@ -451,7 +451,7 @@ static struct resource * __insert_resource(struct resource *parent, struct resou
 		if (!first)
 			return first;
 
-		if (first == parent)
+		if (first == parent || first == new)
 			return first;
 
 		if ((first->start > new->start) || (first->end < new->end))
-- 
1.6.6.1


^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH] avoiding the same resource to be inserted
  2010-08-16 15:55 [PATCH] avoiding the same resource to be inserted Huang Shijie
@ 2010-08-24 23:46 ` Andrew Morton
  2010-08-25  4:31   ` Huang Shijie
  2010-08-25  5:03   ` Huang Shijie
  0 siblings, 2 replies; 7+ messages in thread
From: Andrew Morton @ 2010-08-24 23:46 UTC (permalink / raw)
  To: Huang Shijie; +Cc: linux-kernel, Jesse Barnes, Bjorn Helgaas

On Mon, 16 Aug 2010 23:55:38 +0800
Huang Shijie <shijie8@gmail.com> wrote:

>   If the same resource is inserted to the resource tree
> (maybe not on purpose), a dead loop will be created. In this situation,
> The kernel does not report any warning or error	:(
> 
>   The command below will show a endless print.
>   #cat /proc/iomem

OK, we shouldn't do that.

>   So, adding the check for the same resource is needed for the stability
> and reliability of the kernel.
> 
> Signed-off-by: Huang Shijie <shijie8@gmail.com>
> ---
>  kernel/resource.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/kernel/resource.c b/kernel/resource.c
> index 7b36976..60daab4 100644
> --- a/kernel/resource.c
> +++ b/kernel/resource.c
> @@ -451,7 +451,7 @@ static struct resource * __insert_resource(struct resource *parent, struct resou
>  		if (!first)
>  			return first;
>  
> -		if (first == parent)
> +		if (first == parent || first == new)
>  			return first;

However, inserting the same thing twice _is_ a bug, and we shouldn't
silently accept it like this.  We should tell the programmer!

But we can recover from the situation so let's not kill the box.  How
does this look?

--- a/kernel/resource.c~kernel-resourcec-handle-reinsertion-of-an-already-inserted-resource
+++ a/kernel/resource.c
@@ -453,6 +453,8 @@ static struct resource * __insert_resour
 
 		if (first == parent)
 			return first;
+		if (WARN_ON(first == new))	/* duplicated insertion */
+			return first;
 
 		if ((first->start > new->start) || (first->end < new->end))
 			break;
_


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] avoiding the same resource to be inserted
  2010-08-24 23:46 ` Andrew Morton
@ 2010-08-25  4:31   ` Huang Shijie
  2010-08-25 15:17     ` Bjorn Helgaas
  2010-08-25  5:03   ` Huang Shijie
  1 sibling, 1 reply; 7+ messages in thread
From: Huang Shijie @ 2010-08-25  4:31 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel, Jesse Barnes, Bjorn Helgaas

On Wed, Aug 25, 2010 at 7:46 AM, Andrew Morton
<akpm@linux-foundation.org> wrote:
> On Mon, 16 Aug 2010 23:55:38 +0800
> Huang Shijie <shijie8@gmail.com> wrote:
>
>>   If the same resource is inserted to the resource tree
>> (maybe not on purpose), a dead loop will be created. In this situation,
>> The kernel does not report any warning or error       :(
>>
>>   The command below will show a endless print.
>>   #cat /proc/iomem
>
> OK, we shouldn't do that.
>
>>   So, adding the check for the same resource is needed for the stability
>> and reliability of the kernel.
>>
>> Signed-off-by: Huang Shijie <shijie8@gmail.com>
>> ---
>>  kernel/resource.c |    2 +-
>>  1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/kernel/resource.c b/kernel/resource.c
>> index 7b36976..60daab4 100644
>> --- a/kernel/resource.c
>> +++ b/kernel/resource.c
>> @@ -451,7 +451,7 @@ static struct resource * __insert_resource(struct resource *parent, struct resou
>>               if (!first)
>>                       return first;
>>
>> -             if (first == parent)
>> +             if (first == parent || first == new)
>>                       return first;
>
> However, inserting the same thing twice _is_ a bug, and we shouldn't
> silently accept it like this.  We should tell the programmer!

Indeed, this is a bug caused by the driver programmer.I had spent
nearly two day to find it in my colleague's code.


>
> But we can recover from the situation so let's not kill the box.  How
> does this look?
>
> --- a/kernel/resource.c~kernel-resourcec-handle-reinsertion-of-an-already-inserted-resource
> +++ a/kernel/resource.c
> @@ -453,6 +453,8 @@ static struct resource * __insert_resour
>
>                if (first == parent)
>                        return first;
> +               if (WARN_ON(first == new))      /* duplicated insertion */
> +                       return first;
>

Yes. This one is better.
Many drivers do not check the returned value of insert_resouce().


>                if ((first->start > new->start) || (first->end < new->end))
>                        break;
> _
>
>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] avoiding the same resource to be inserted
  2010-08-24 23:46 ` Andrew Morton
  2010-08-25  4:31   ` Huang Shijie
@ 2010-08-25  5:03   ` Huang Shijie
  2010-08-25  6:41     ` Andrew Morton
  1 sibling, 1 reply; 7+ messages in thread
From: Huang Shijie @ 2010-08-25  5:03 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel, Jesse Barnes, Bjorn Helgaas

On Wed, Aug 25, 2010 at 7:46 AM, Andrew Morton
<akpm@linux-foundation.org> wrote:
> On Mon, 16 Aug 2010 23:55:38 +0800
> Huang Shijie <shijie8@gmail.com> wrote:
>
>>   If the same resource is inserted to the resource tree
>> (maybe not on purpose), a dead loop will be created. In this situation,
>> The kernel does not report any warning or error       :(
>>
>>   The command below will show a endless print.
>>   #cat /proc/iomem
>
> OK, we shouldn't do that.
>
>>   So, adding the check for the same resource is needed for the stability
>> and reliability of the kernel.
>>
>> Signed-off-by: Huang Shijie <shijie8@gmail.com>
>> ---
>>  kernel/resource.c |    2 +-
>>  1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/kernel/resource.c b/kernel/resource.c
>> index 7b36976..60daab4 100644
>> --- a/kernel/resource.c
>> +++ b/kernel/resource.c
>> @@ -451,7 +451,7 @@ static struct resource * __insert_resource(struct resource *parent, struct resou
>>               if (!first)
>>                       return first;
>>
>> -             if (first == parent)
>> +             if (first == parent || first == new)
>>                       return first;
>
> However, inserting the same thing twice _is_ a bug, and we shouldn't
> silently accept it like this.  We should tell the programmer!
>
> But we can recover from the situation so let's not kill the box.  How
> does this look?
>
> --- a/kernel/resource.c~kernel-resourcec-handle-reinsertion-of-an-already-inserted-resource
> +++ a/kernel/resource.c
> @@ -453,6 +453,8 @@ static struct resource * __insert_resour
>
>                if (first == parent)
>                        return first;
> +               if (WARN_ON(first == new))      /* duplicated insertion */
> +                       return first;
>

I think WARN_ON() is not power enough. If the CONFIG_BUG is not
defined, the warning message may not be printed. So I think using a
directly printk() here is better.

What about this ?

--- a/kernel/resource.c
+++ b/kernel/resource.c
@@ -453,6 +453,11 @@ static struct resource * __insert_resource(struct
resource *parent, struct resou

 		if (first == parent)
 			return first;
+		if (first == new) {
+			printk(KERN_ERR "You should not insert the"
+					"same resource twice!\n");
+			return first;
+		}

 		if ((first->start > new->start) || (first->end < new->end))
 			break;





>                if ((first->start > new->start) || (first->end < new->end))
>                        break;
> _
>
>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] avoiding the same resource to be inserted
  2010-08-25  5:03   ` Huang Shijie
@ 2010-08-25  6:41     ` Andrew Morton
  2010-08-25  7:01       ` Huang Shijie
  0 siblings, 1 reply; 7+ messages in thread
From: Andrew Morton @ 2010-08-25  6:41 UTC (permalink / raw)
  To: Huang Shijie; +Cc: linux-kernel, Jesse Barnes, Bjorn Helgaas

On Wed, 25 Aug 2010 13:03:55 +0800 Huang Shijie <shijie8@gmail.com> wrote:

> On Wed, Aug 25, 2010 at 7:46 AM, Andrew Morton
> <akpm@linux-foundation.org> wrote:
> 
> I think WARN_ON() is not power enough. If the CONFIG_BUG is not
> defined, the warning message may not be printed. So I think using a
> directly printk() here is better.

No, WARN_ON() is good.  It gives us a backtrace and identifies the
buggy code.  Only maniacs turn off CONFIG_BUG.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] avoiding the same resource to be inserted
  2010-08-25  6:41     ` Andrew Morton
@ 2010-08-25  7:01       ` Huang Shijie
  0 siblings, 0 replies; 7+ messages in thread
From: Huang Shijie @ 2010-08-25  7:01 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel, Jesse Barnes, Bjorn Helgaas

On Wed, Aug 25, 2010 at 2:41 PM, Andrew Morton
<akpm@linux-foundation.org> wrote:
> On Wed, 25 Aug 2010 13:03:55 +0800 Huang Shijie <shijie8@gmail.com> wrote:
>
>> On Wed, Aug 25, 2010 at 7:46 AM, Andrew Morton
>> <akpm@linux-foundation.org> wrote:
>>
>> I think WARN_ON() is not power enough. If the CONFIG_BUG is not
>> defined, the warning message may not be printed. So I think using a
>> directly printk() here is better.
>
> No, WARN_ON() is good.  It gives us a backtrace and identifies the
> buggy code.  Only maniacs turn off CONFIG_BUG.
>

got it. Thanks a lot.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] avoiding the same resource to be inserted
  2010-08-25  4:31   ` Huang Shijie
@ 2010-08-25 15:17     ` Bjorn Helgaas
  0 siblings, 0 replies; 7+ messages in thread
From: Bjorn Helgaas @ 2010-08-25 15:17 UTC (permalink / raw)
  To: Huang Shijie; +Cc: Andrew Morton, linux-kernel, Jesse Barnes

On Tuesday, August 24, 2010 10:31:52 pm Huang Shijie wrote:
> On Wed, Aug 25, 2010 at 7:46 AM, Andrew Morton
> <akpm@linux-foundation.org> wrote:
> > On Mon, 16 Aug 2010 23:55:38 +0800
> > Huang Shijie <shijie8@gmail.com> wrote:
> >
> >>   If the same resource is inserted to the resource tree
> >> (maybe not on purpose), a dead loop will be created. In this situation,
> >> The kernel does not report any warning or error       :(
> >>
> >>   The command below will show a endless print.
> >>   #cat /proc/iomem
> >
> > OK, we shouldn't do that.
> >
> >>   So, adding the check for the same resource is needed for the stability
> >> and reliability of the kernel.
> >>
> >> Signed-off-by: Huang Shijie <shijie8@gmail.com>
> >> ---
> >>  kernel/resource.c |    2 +-
> >>  1 files changed, 1 insertions(+), 1 deletions(-)
> >>
> >> diff --git a/kernel/resource.c b/kernel/resource.c
> >> index 7b36976..60daab4 100644
> >> --- a/kernel/resource.c
> >> +++ b/kernel/resource.c
> >> @@ -451,7 +451,7 @@ static struct resource * __insert_resource(struct resource *parent, struct resou
> >>               if (!first)
> >>                       return first;
> >>
> >> -             if (first == parent)
> >> +             if (first == parent || first == new)
> >>                       return first;
> >
> > However, inserting the same thing twice _is_ a bug, and we shouldn't
> > silently accept it like this.  We should tell the programmer!
> 
> Indeed, this is a bug caused by the driver programmer.I had spent
> nearly two day to find it in my colleague's code.

insert_resource() is a hack to deal with the fact that we don't
discover resources in the logical order, so sometimes we have to
go back and add a resource after we've already added "children"
of the new resource.

In my opinion, the ugliness of using insert_resource() should be
confined to core architecture code, and drivers shouldn't use it
at all.

That said, I think it's a good idea to add the WARN_ON().

In fact, I wonder if we should also "WARN_ON(first == parent)".

Bjorn

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2010-08-25 15:18 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-16 15:55 [PATCH] avoiding the same resource to be inserted Huang Shijie
2010-08-24 23:46 ` Andrew Morton
2010-08-25  4:31   ` Huang Shijie
2010-08-25 15:17     ` Bjorn Helgaas
2010-08-25  5:03   ` Huang Shijie
2010-08-25  6:41     ` Andrew Morton
2010-08-25  7:01       ` Huang Shijie

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox