From: Alex Wang Date: Thu, 30 May 2013 21:37:57 +0000 (-0700) Subject: ofproto-dpif: Fix a typo X-Git-Tag: sliver-openvswitch-1.10.90-3~6^2~185 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=c33855167bb4215a96fe1d7ac518213dabe6e198;p=sliver-openvswitch.git ofproto-dpif: Fix a typo This patch fixes a typo in handle_miss_upcalls() function. Signed-off-by: Alex Wang Signed-off-by: Ben Pfaff --- diff --git a/ofproto/ofproto-dpif.c b/ofproto/ofproto-dpif.c index ffd239976..c52a3c504 100644 --- a/ofproto/ofproto-dpif.c +++ b/ofproto/ofproto-dpif.c @@ -3974,14 +3974,14 @@ handle_miss_upcalls(struct dpif_backer *backer, struct dpif_upcall *upcalls, if (error == ENODEV) { struct drop_key *drop_key; - /* Received packet on port for which we couldn't associate - * an ofproto. This can happen if a port is removed while - * traffic is being received. Print a rate-limited message + /* Received packet on datapath port for which we couldn't + * associate an ofproto. This can happen if a port is removed + * while traffic is being received. Print a rate-limited message * in case it happens frequently. Install a drop flow so * that future packets of the flow are inexpensively dropped * in the kernel. */ - VLOG_INFO_RL(&rl, "received packet on unassociated port %"PRIu32, - flow.in_port); + VLOG_INFO_RL(&rl, "received packet on unassociated datapath port " + "%"PRIu32, odp_in_port); drop_key = drop_key_lookup(backer, upcall->key, upcall->key_len); if (!drop_key) {