public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] 2.6.6 memory allocation checks in drivers/pci/hotplug/shpchprm_acpi.c
@ 2004-06-06 16:20 Yury Umanets
  2004-06-06 17:51 ` Randy.Dunlap
  0 siblings, 1 reply; 8+ messages in thread
From: Yury Umanets @ 2004-06-06 16:20 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel

Adds memory allocation checks in acpi_get__hpp()

 ./linux-2.6.6-modified/drivers/pci/hotplug/shpchprm_acpi.c |    2 ++
 1 files changed, 2 insertions(+)

Signed-off-by: Yury Umanets <torque@ukrpost.net>

diff -rupN ./linux-2.6.6/drivers/pci/hotplug/shpchprm_acpi.c
./linux-2.6.6-modified/drivers/pci/hotplug/shpchprm_acpi.c
--- ./linux-2.6.6/drivers/pci/hotplug/shpchprm_acpi.c	Mon May 10
05:32:28 2004
+++ ./linux-2.6.6-modified/drivers/pci/hotplug/shpchprm_acpi.c	Wed Jun 
2 14:28:07 2004
@@ -218,6 +218,8 @@ static void acpi_get__hpp ( struct acpi_
 	}
 
 	ab->_hpp = kmalloc (sizeof (struct acpi__hpp), GFP_KERNEL);
+	if (!ab->_hpp)
+		goto free_and_return;
 	memset(ab->_hpp, 0, sizeof(struct acpi__hpp));
 
 	ab->_hpp->cache_line_size	= nui[0];

-- 
umka


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

* Re: [PATCH] 2.6.6 memory allocation checks in drivers/pci/hotplug/shpchprm_acpi.c
  2004-06-06 16:20 [PATCH] 2.6.6 memory allocation checks in drivers/pci/hotplug/shpchprm_acpi.c Yury Umanets
@ 2004-06-06 17:51 ` Randy.Dunlap
  2004-06-07 15:52   ` Yury Umanets
  2004-06-07 17:35   ` Luiz Fernando N. Capitulino
  0 siblings, 2 replies; 8+ messages in thread
From: Randy.Dunlap @ 2004-06-06 17:51 UTC (permalink / raw)
  To: Yury Umanets; +Cc: akpm, linux-kernel

On Sun, 06 Jun 2004 19:20:51 +0300 Yury Umanets wrote:

| Adds memory allocation checks in acpi_get__hpp()
| 
|  ./linux-2.6.6-modified/drivers/pci/hotplug/shpchprm_acpi.c |    2 ++
|  1 files changed, 2 insertions(+)
| 
| Signed-off-by: Yury Umanets <torque@ukrpost.net>
| 
| diff -rupN ./linux-2.6.6/drivers/pci/hotplug/shpchprm_acpi.c
| ./linux-2.6.6-modified/drivers/pci/hotplug/shpchprm_acpi.c
| --- ./linux-2.6.6/drivers/pci/hotplug/shpchprm_acpi.c	Mon May 10
| 05:32:28 2004
| +++ ./linux-2.6.6-modified/drivers/pci/hotplug/shpchprm_acpi.c	Wed Jun 
| 2 14:28:07 2004
| @@ -218,6 +218,8 @@ static void acpi_get__hpp ( struct acpi_
|  	}
|  
|  	ab->_hpp = kmalloc (sizeof (struct acpi__hpp), GFP_KERNEL);
| +	if (!ab->_hpp)
| +		goto free_and_return;
|  	memset(ab->_hpp, 0, sizeof(struct acpi__hpp));
|  
|  	ab->_hpp->cache_line_size	= nui[0];
| 
| -- 

All other failure paths in this function use err() to inform the
console about what's happening...  so flip a coin, I guess:
add a message or say that ACPI already has too many messages.  :(

--
~Randy

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

* Re: [PATCH] 2.6.6 memory allocation checks in drivers/pci/hotplug/shpchprm_acpi.c
  2004-06-06 17:51 ` Randy.Dunlap
@ 2004-06-07 15:52   ` Yury Umanets
  2004-06-07 17:35   ` Luiz Fernando N. Capitulino
  1 sibling, 0 replies; 8+ messages in thread
From: Yury Umanets @ 2004-06-07 15:52 UTC (permalink / raw)
  To: Randy.Dunlap; +Cc: akpm, linux-kernel

On Sun, 2004-06-06 at 20:51, Randy.Dunlap wrote:
> On Sun, 06 Jun 2004 19:20:51 +0300 Yury Umanets wrote:
> 
> | Adds memory allocation checks in acpi_get__hpp()
> | 
> |  ./linux-2.6.6-modified/drivers/pci/hotplug/shpchprm_acpi.c |    2 ++
> |  1 files changed, 2 insertions(+)
> | 
> | Signed-off-by: Yury Umanets <torque@ukrpost.net>
> | 
> | diff -rupN ./linux-2.6.6/drivers/pci/hotplug/shpchprm_acpi.c
> | ./linux-2.6.6-modified/drivers/pci/hotplug/shpchprm_acpi.c
> | --- ./linux-2.6.6/drivers/pci/hotplug/shpchprm_acpi.c	Mon May 10
> | 05:32:28 2004
> | +++ ./linux-2.6.6-modified/drivers/pci/hotplug/shpchprm_acpi.c	Wed Jun 
> | 2 14:28:07 2004
> | @@ -218,6 +218,8 @@ static void acpi_get__hpp ( struct acpi_
> |  	}
> |  
> |  	ab->_hpp = kmalloc (sizeof (struct acpi__hpp), GFP_KERNEL);
> | +	if (!ab->_hpp)
> | +		goto free_and_return;
> |  	memset(ab->_hpp, 0, sizeof(struct acpi__hpp));
> |  
> |  	ab->_hpp->cache_line_size	= nui[0];
> | 
> | -- 
> 
> All other failure paths in this function use err() to inform the
> console about what's happening...  so flip a coin, I guess:
> add a message or say that ACPI already has too many messages.  :(

Hello Randy!

Fixed versions for both (shpchprm_acpi.c and pciehprm_acpi.c) are below:

 ./linux-2.6.6-modified/drivers/pci/hotplug/pciehprm_acpi.c |    4 ++++
 1 files changed, 4 insertions(+)

Signed-off-by: Yury Umanets <torque@ukrpost.net>

diff -rupN ./linux-2.6.6/drivers/pci/hotplug/pciehprm_acpi.c
./linux-2.6.6-modified/drivers/pci/hotplug/pciehprm_acpi.c
--- ./linux-2.6.6/drivers/pci/hotplug/pciehprm_acpi.c	Mon May 10
05:33:19 2004
+++ ./linux-2.6.6-modified/drivers/pci/hotplug/pciehprm_acpi.c	Mon Jun 
7 18:40:15 2004
@@ -218,6 +218,10 @@ static void acpi_get__hpp ( struct acpi_
 	}
 
 	ab->_hpp = kmalloc (sizeof (struct acpi__hpp), GFP_KERNEL);
+	if (!ab->_hpp) {
+		err ("acpi_pciehprm:%s alloc for _HPP fail\n", path_name);
+		goto free_and_return;
+	}
 	memset(ab->_hpp, 0, sizeof(struct acpi__hpp));
 
 	ab->_hpp->cache_line_size	= nui[0];


 ./linux-2.6.6-modified/drivers/pci/hotplug/shpchprm_acpi.c |    4 ++++
 1 files changed, 4 insertions(+)

diff -rupN ./linux-2.6.6/drivers/pci/hotplug/shpchprm_acpi.c
./linux-2.6.6-modified/drivers/pci/hotplug/shpchprm_acpi.c
--- ./linux-2.6.6/drivers/pci/hotplug/shpchprm_acpi.c	Mon May 10
05:32:28 2004
+++ ./linux-2.6.6-modified/drivers/pci/hotplug/shpchprm_acpi.c	Mon Jun 
7 18:39:01 2004
@@ -218,6 +218,10 @@ static void acpi_get__hpp ( struct acpi_
 	}
 
 	ab->_hpp = kmalloc (sizeof (struct acpi__hpp), GFP_KERNEL);
+	if (!ab->_hpp) {
+		err ("acpi_shpchprm:%s alloc for _HPP fail\n", path_name);
+		goto free_and_return;
+	}
 	memset(ab->_hpp, 0, sizeof(struct acpi__hpp));
 
 	ab->_hpp->cache_line_size	= nui[0];


-- 
umka


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

* Re: [PATCH] 2.6.6 memory allocation checks in drivers/pci/hotplug/shpchprm_acpi.c
  2004-06-06 17:51 ` Randy.Dunlap
  2004-06-07 15:52   ` Yury Umanets
@ 2004-06-07 17:35   ` Luiz Fernando N. Capitulino
  2004-06-08  6:14     ` Yury Umanets
  1 sibling, 1 reply; 8+ messages in thread
From: Luiz Fernando N. Capitulino @ 2004-06-07 17:35 UTC (permalink / raw)
  To: Randy.Dunlap; +Cc: Yury Umanets, akpm, linux-kernel, dely.l.sy


 Hello Randy, Yury,

Em Sun, Jun 06, 2004 at 10:51:06AM -0700, Randy.Dunlap escreveu:

| On Sun, 06 Jun 2004 19:20:51 +0300 Yury Umanets wrote:
| 
| | Adds memory allocation checks in acpi_get__hpp()
| | 
| |  ./linux-2.6.6-modified/drivers/pci/hotplug/shpchprm_acpi.c |    2 ++
| |  1 files changed, 2 insertions(+)
| | 
| | Signed-off-by: Yury Umanets <torque@ukrpost.net>
| | 
| | diff -rupN ./linux-2.6.6/drivers/pci/hotplug/shpchprm_acpi.c
| | ./linux-2.6.6-modified/drivers/pci/hotplug/shpchprm_acpi.c
| | --- ./linux-2.6.6/drivers/pci/hotplug/shpchprm_acpi.c	Mon May 10
| | 05:32:28 2004
| | +++ ./linux-2.6.6-modified/drivers/pci/hotplug/shpchprm_acpi.c	Wed Jun 
| | 2 14:28:07 2004
| | @@ -218,6 +218,8 @@ static void acpi_get__hpp ( struct acpi_
| |  	}
| |  
| |  	ab->_hpp = kmalloc (sizeof (struct acpi__hpp), GFP_KERNEL);
| | +	if (!ab->_hpp)
| | +		goto free_and_return;
| |  	memset(ab->_hpp, 0, sizeof(struct acpi__hpp));
| |  
| |  	ab->_hpp->cache_line_size	= nui[0];
| | 
| | -- 
| 
| All other failure paths in this function use err() to inform the
| console about what's happening...  so flip a coin, I guess:
| add a message or say that ACPI already has too many messages.  :(

 I sent the same patch for this some weeks ago. Dely accepted, but it was
not applyed. Don't know why.


-- 
Luiz Fernando N. Capitulino
<http://www.telecentros.sp.gov.br>

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

* RE: [PATCH] 2.6.6 memory allocation checks in drivers/pci/hotplug/shpchprm_acpi.c
@ 2004-06-07 17:56 Sy, Dely L
  2004-06-07 18:12 ` Greg KH
  0 siblings, 1 reply; 8+ messages in thread
From: Sy, Dely L @ 2004-06-07 17:56 UTC (permalink / raw)
  To: Luiz Fernando N. Capitulino, Randy.Dunlap, greg
  Cc: Yury Umanets, akpm, linux-kernel

Hi, Luiz,

I sent out the patch to Greg last week and he'll apply it.

Thanks,
Dely

-----Original Message-----
From: Luiz Fernando N. Capitulino
[mailto:lcapitulino@prefeitura.sp.gov.br] 
Sent: Monday, June 07, 2004 10:36 AM
To: Randy.Dunlap
Cc: Yury Umanets; akpm@osdl.org; linux-kernel@vger.kernel.org; Sy, Dely
L
Subject: Re: [PATCH] 2.6.6 memory allocation checks in
drivers/pci/hotplug/shpchprm_acpi.c


 Hello Randy, Yury,

Em Sun, Jun 06, 2004 at 10:51:06AM -0700, Randy.Dunlap escreveu:

| On Sun, 06 Jun 2004 19:20:51 +0300 Yury Umanets wrote:
| 
| | Adds memory allocation checks in acpi_get__hpp()
| | 
| |  ./linux-2.6.6-modified/drivers/pci/hotplug/shpchprm_acpi.c |    2
++
| |  1 files changed, 2 insertions(+)
| | 
| | Signed-off-by: Yury Umanets <torque@ukrpost.net>
| | 
| | diff -rupN ./linux-2.6.6/drivers/pci/hotplug/shpchprm_acpi.c
| | ./linux-2.6.6-modified/drivers/pci/hotplug/shpchprm_acpi.c
| | --- ./linux-2.6.6/drivers/pci/hotplug/shpchprm_acpi.c	Mon May
10
| | 05:32:28 2004
| | +++ ./linux-2.6.6-modified/drivers/pci/hotplug/shpchprm_acpi.c
Wed Jun 
| | 2 14:28:07 2004
| | @@ -218,6 +218,8 @@ static void acpi_get__hpp ( struct acpi_
| |  	}
| |  
| |  	ab->_hpp = kmalloc (sizeof (struct acpi__hpp), GFP_KERNEL);
| | +	if (!ab->_hpp)
| | +		goto free_and_return;
| |  	memset(ab->_hpp, 0, sizeof(struct acpi__hpp));
| |  
| |  	ab->_hpp->cache_line_size	= nui[0];
| | 
| | -- 
| 
| All other failure paths in this function use err() to inform the
| console about what's happening...  so flip a coin, I guess:
| add a message or say that ACPI already has too many messages.  :(

 I sent the same patch for this some weeks ago. Dely accepted, but it
was
not applyed. Don't know why.


-- 
Luiz Fernando N. Capitulino
<http://www.telecentros.sp.gov.br>

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

* Re: [PATCH] 2.6.6 memory allocation checks in drivers/pci/hotplug/shpchprm_acpi.c
  2004-06-07 17:56 Sy, Dely L
@ 2004-06-07 18:12 ` Greg KH
  0 siblings, 0 replies; 8+ messages in thread
From: Greg KH @ 2004-06-07 18:12 UTC (permalink / raw)
  To: Sy, Dely L
  Cc: Luiz Fernando N. Capitulino, Randy.Dunlap, Yury Umanets, akpm,
	linux-kernel

On Mon, Jun 07, 2004 at 10:56:54AM -0700, Sy, Dely L wrote:
> Hi, Luiz,
> 
> I sent out the patch to Greg last week and he'll apply it.

Dely, was this in the patch that I applied on Friday?

thanks,

greg k-h

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

* RE: [PATCH] 2.6.6 memory allocation checks in drivers/pci/hotplug/shpchprm_acpi.c
@ 2004-06-07 18:27 Sy, Dely L
  0 siblings, 0 replies; 8+ messages in thread
From: Sy, Dely L @ 2004-06-07 18:27 UTC (permalink / raw)
  To: Greg KH
  Cc: Luiz Fernando N. Capitulino, Randy.Dunlap, Yury Umanets, akpm,
	linux-kernel

On Monday, June 07, 2004 11:12 AM, Greg KH wrote:
> On Mon, Jun 07, 2004 at 10:56:54AM -0700, Sy, Dely L wrote:
> > Hi, Luiz,
> > 
> > I sent out the patch to Greg last week and he'll apply it.
> 
> Dely, was this in the patch that I applied on Friday?

Yes.

Thanks,
Dely



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

* Re: [PATCH] 2.6.6 memory allocation checks in drivers/pci/hotplug/shpchprm_acpi.c
  2004-06-07 17:35   ` Luiz Fernando N. Capitulino
@ 2004-06-08  6:14     ` Yury Umanets
  0 siblings, 0 replies; 8+ messages in thread
From: Yury Umanets @ 2004-06-08  6:14 UTC (permalink / raw)
  To: Luiz Fernando N. Capitulino; +Cc: Randy.Dunlap, akpm, linux-kernel, dely.l.sy

On Mon, 2004-06-07 at 20:35, Luiz Fernando N. Capitulino wrote:
>  Hello Randy, Yury,
> 
> Em Sun, Jun 06, 2004 at 10:51:06AM -0700, Randy.Dunlap escreveu:
> 
> | On Sun, 06 Jun 2004 19:20:51 +0300 Yury Umanets wrote:
> | 
> | | Adds memory allocation checks in acpi_get__hpp()
> | | 
> | |  ./linux-2.6.6-modified/drivers/pci/hotplug/shpchprm_acpi.c |    2 ++
> | |  1 files changed, 2 insertions(+)
> | | 
> | | Signed-off-by: Yury Umanets <torque@ukrpost.net>
> | | 
> | | diff -rupN ./linux-2.6.6/drivers/pci/hotplug/shpchprm_acpi.c
> | | ./linux-2.6.6-modified/drivers/pci/hotplug/shpchprm_acpi.c
> | | --- ./linux-2.6.6/drivers/pci/hotplug/shpchprm_acpi.c	Mon May 10
> | | 05:32:28 2004
> | | +++ ./linux-2.6.6-modified/drivers/pci/hotplug/shpchprm_acpi.c	Wed Jun 
> | | 2 14:28:07 2004
> | | @@ -218,6 +218,8 @@ static void acpi_get__hpp ( struct acpi_
> | |  	}
> | |  
> | |  	ab->_hpp = kmalloc (sizeof (struct acpi__hpp), GFP_KERNEL);
> | | +	if (!ab->_hpp)
> | | +		goto free_and_return;
> | |  	memset(ab->_hpp, 0, sizeof(struct acpi__hpp));
> | |  
> | |  	ab->_hpp->cache_line_size	= nui[0];
> | | 
> | | -- 
> | 
> | All other failure paths in this function use err() to inform the
> | console about what's happening...  so flip a coin, I guess:
> | add a message or say that ACPI already has too many messages.  :(
> 
>  I sent the same patch for this some weeks ago. Dely accepted, but it was
> not applyed. Don't know why.
Hello,

I'm not sure that I know the order of patches reviewing/applying, but it
seems to be depend on contact person busyness and importance of the
patch. This patch is not so important though :)

-- 
umka


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

end of thread, other threads:[~2004-06-08  6:14 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-06-06 16:20 [PATCH] 2.6.6 memory allocation checks in drivers/pci/hotplug/shpchprm_acpi.c Yury Umanets
2004-06-06 17:51 ` Randy.Dunlap
2004-06-07 15:52   ` Yury Umanets
2004-06-07 17:35   ` Luiz Fernando N. Capitulino
2004-06-08  6:14     ` Yury Umanets
  -- strict thread matches above, loose matches on Subject: below --
2004-06-07 17:56 Sy, Dely L
2004-06-07 18:12 ` Greg KH
2004-06-07 18:27 Sy, Dely L

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