datapath: Fix 32-bit truncation of argument to ODPAT_OUTPUT_CONTROL.
authorBen Pfaff <blp@nicira.com>
Tue, 28 Dec 2010 21:28:31 +0000 (13:28 -0800)
committerBen Pfaff <blp@nicira.com>
Wed, 29 Dec 2010 06:40:37 +0000 (22:40 -0800)
Signed-off-by: Ben Pfaff <blp@nicira.com>
Acked-by: Jesse Gross <jesse@nicira.com>
datapath/actions.c

index 639b870..5e16143 100644 (file)
@@ -360,7 +360,7 @@ error:
        kfree_skb(skb);
 }
 
-static int output_control(struct datapath *dp, struct sk_buff *skb, u32 arg)
+static int output_control(struct datapath *dp, struct sk_buff *skb, u64 arg)
 {
        skb = skb_clone(skb, GFP_ATOMIC);
        if (!skb)