netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [IPV4]: multipath_wrandom.c GPF fixes
@ 2005-05-05 20:31 Patrick McHardy
  2005-05-05 21:28 ` David S. Miller
  0 siblings, 1 reply; 3+ messages in thread
From: Patrick McHardy @ 2005-05-05 20:31 UTC (permalink / raw)
  To: David S. Miller; +Cc: Maillist netdev

[-- Attachment #1: Type: text/plain, Size: 44 bytes --]

multipath_wrandom needs to use GFP_ATOMIC.


[-- Attachment #2: x --]
[-- Type: text/plain, Size: 1532 bytes --]

[IPV4]: multipath_wrandom.c GPF fixes

Signed-off-by: Patrick McHardy <kaber@trash.net>

---
commit cdb5c875d48676b20ecd95fef080891a68c32e9c
tree 46b576def0e0b0e4600193306cb830e66b5a57da
parent 3a614a8969f79ac4116f496beff879736dca83e2
author Patrick McHardy <kaber@trash.net> 1115277458 +0200
committer Patrick McHardy <kaber@trash.net> 1115277458 +0200

Index: net/ipv4/multipath_wrandom.c
===================================================================
--- a744d6c4cd2587f82796c0f6cb4d7f94744ef9f2/net/ipv4/multipath_wrandom.c  (mode:100644 sha1:10b23e1bece663bd8a9317f980b30ec0df7f0a11)
+++ 46b576def0e0b0e4600193306cb830e66b5a57da/net/ipv4/multipath_wrandom.c  (mode:100644 sha1:c3d2ca1a6781513bc7b2524aad96f61e7a4053a6)
@@ -172,7 +172,7 @@
 		    multipath_comparekeys(&rt->fl, flp)) {
 			struct multipath_candidate* mpc =
 				(struct multipath_candidate*)
-				kmalloc(size_mpc, GFP_KERNEL);
+				kmalloc(size_mpc, GFP_ATOMIC);
 
 			if (!mpc)
 				return;
@@ -244,7 +244,7 @@
 	if (!target_route) {
 		const size_t size_rt = sizeof(struct multipath_route);
 		target_route = (struct multipath_route *)
-			kmalloc(size_rt, GFP_KERNEL);
+			kmalloc(size_rt, GFP_ATOMIC);
 
 		target_route->gw = nh->nh_gw;
 		target_route->oif = nh->nh_oif;
@@ -265,7 +265,7 @@
 	if (!target_dest) {
 		const size_t size_dst = sizeof(struct multipath_dest);
 		target_dest = (struct multipath_dest*)
-			kmalloc(size_dst, GFP_KERNEL);
+			kmalloc(size_dst, GFP_ATOMIC);
 
 		target_dest->nh_info = nh;
 		target_dest->network = network;

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

* Re: [IPV4]: multipath_wrandom.c GPF fixes
  2005-05-05 20:31 [IPV4]: multipath_wrandom.c GPF fixes Patrick McHardy
@ 2005-05-05 21:28 ` David S. Miller
  2005-05-05 22:33   ` Patrick McHardy
  0 siblings, 1 reply; 3+ messages in thread
From: David S. Miller @ 2005-05-05 21:28 UTC (permalink / raw)
  To: Patrick McHardy; +Cc: netdev

On Thu, 05 May 2005 22:31:06 +0200
Patrick McHardy <kaber@trash.net> wrote:

> multipath_wrandom needs to use GFP_ATOMIC.

I didn't fix this, because none of these allocations even
check the return value so it's kind of pointless.

There is zero error handling in the multipath modules.

But I suppose it's best to get some of this fixed rather
than none of it, so patch applied, thanks.

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

* Re: [IPV4]: multipath_wrandom.c GPF fixes
  2005-05-05 21:28 ` David S. Miller
@ 2005-05-05 22:33   ` Patrick McHardy
  0 siblings, 0 replies; 3+ messages in thread
From: Patrick McHardy @ 2005-05-05 22:33 UTC (permalink / raw)
  To: David S. Miller; +Cc: netdev

David S. Miller wrote:
> I didn't fix this, because none of these allocations even
> check the return value so it's kind of pointless.
> 
> There is zero error handling in the multipath modules.
> 
> But I suppose it's best to get some of this fixed rather
> than none of it, so patch applied, thanks.

The first one is already checked, I'll look into the others.

Regards
Patrick

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

end of thread, other threads:[~2005-05-05 22:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-05-05 20:31 [IPV4]: multipath_wrandom.c GPF fixes Patrick McHardy
2005-05-05 21:28 ` David S. Miller
2005-05-05 22:33   ` Patrick McHardy

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).