summaryrefslogtreecommitdiffstats
path: root/drivers/block/aoe/aoenet.c
diff options
context:
space:
mode:
authorEd Cashin2009-02-18 23:48:13 +0100
committerLinus Torvalds2009-02-19 00:37:53 +0100
commitb6d6c5175809934e04a606d9193ef04924a7a7d9 (patch)
tree49c90d21c05c657e51d8da3eff1b10b9c1f3da12 /drivers/block/aoe/aoenet.c
parentvmalloc: add __get_vm_area_caller() (diff)
downloadkernel-qcow2-linux-b6d6c5175809934e04a606d9193ef04924a7a7d9.tar.gz
kernel-qcow2-linux-b6d6c5175809934e04a606d9193ef04924a7a7d9.tar.xz
kernel-qcow2-linux-b6d6c5175809934e04a606d9193ef04924a7a7d9.zip
aoe: ignore vendor extension AoE responses
The Welland ME-747K-SI AoE target generates unsolicited AoE responses that are marked as vendor extensions. Instead of ignoring these packets, the aoe driver was generating kernel messages for each unrecognized response received. This patch corrects the behavior. Signed-off-by: Ed Cashin <ecashin@coraid.com> Reported-by: <karaluh@karaluh.pl> Tested-by: <karaluh@karaluh.pl> Cc: <stable@kernel.org> Cc: Alex Buell <alex.buell@munted.org.uk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/block/aoe/aoenet.c')
-rw-r--r--drivers/block/aoe/aoenet.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/block/aoe/aoenet.c b/drivers/block/aoe/aoenet.c
index 30de5b1c647e..c6099ba9a4b8 100644
--- a/drivers/block/aoe/aoenet.c
+++ b/drivers/block/aoe/aoenet.c
@@ -142,6 +142,8 @@ aoenet_rcv(struct sk_buff *skb, struct net_device *ifp, struct packet_type *pt,
aoecmd_cfg_rsp(skb);
break;
default:
+ if (h->cmd >= AOECMD_VEND_MIN)
+ break; /* don't complain about vendor commands */
printk(KERN_INFO "aoe: unknown cmd %d\n", h->cmd);
}
exit: