[ovs-dev] [netlink flows v2 03/12] datapath: Fix 32-bit truncation of argument to ODPAT_OUTPUT_CONTROL.

Ben Pfaff blp at nicira.com
Tue Dec 28 22:32:58 UTC 2010


Signed-off-by: Ben Pfaff <blp at nicira.com>
---
 datapath/actions.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/datapath/actions.c b/datapath/actions.c
index 639b870..5e16143 100644
--- a/datapath/actions.c
+++ b/datapath/actions.c
@@ -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)
-- 
1.7.1





More information about the dev mailing list