X-Git-Url: https://git.stricted.de/?a=blobdiff_plain;f=net%2Fopenvswitch%2Factions.c;h=c7425f32e7db7c26a43a5e102711d97803befaf8;hb=15e473046cb6e5d18a4d0057e61d76315230382b;hp=0da687769f56106f3543691c5b5a2adb6b439d62;hpb=9f00d9776bc5beb92e8bfc884a7e96ddc5589e2e;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git diff --git a/net/openvswitch/actions.c b/net/openvswitch/actions.c index 0da687769f56..c7425f32e7db 100644 --- a/net/openvswitch/actions.c +++ b/net/openvswitch/actions.c @@ -286,7 +286,7 @@ static int output_userspace(struct datapath *dp, struct sk_buff *skb, upcall.cmd = OVS_PACKET_CMD_ACTION; upcall.key = &OVS_CB(skb)->flow->key; upcall.userdata = NULL; - upcall.pid = 0; + upcall.portid = 0; for (a = nla_data(attr), rem = nla_len(attr); rem > 0; a = nla_next(a, &rem)) { @@ -296,7 +296,7 @@ static int output_userspace(struct datapath *dp, struct sk_buff *skb, break; case OVS_USERSPACE_ATTR_PID: - upcall.pid = nla_get_u32(a); + upcall.portid = nla_get_u32(a); break; } }