summaryrefslogtreecommitdiff
path: root/ofproto/ofproto-dpif-upcall.c
diff options
context:
space:
mode:
authorJustin Pettit <jpettit@ovn.org>2017-02-16 17:11:54 -0800
committerJustin Pettit <jpettit@ovn.org>2017-03-23 10:02:16 -0700
commitefc4afb2999b188b8fcda25835e20cf9e7cb3880 (patch)
treee908fbe317e5e9b58aa1855de1dc8501cbc9d992 /ofproto/ofproto-dpif-upcall.c
parent4f6780691653db8dbd6af310a84dae33350a3b79 (diff)
downloadopenvswitch-efc4afb2999b188b8fcda25835e20cf9e7cb3880.tar.gz
ofproto-dpif: Update handle_action() comment.
The comment didn't mention the SLOW_LLDP and SLOW_ACTION reasons. Signed-off-by: Justin Pettit <jpettit@ovn.org> Acked-by: Jarno Rajahalme <jarno@ovn.org>
Diffstat (limited to 'ofproto/ofproto-dpif-upcall.c')
-rw-r--r--ofproto/ofproto-dpif-upcall.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/ofproto/ofproto-dpif-upcall.c b/ofproto/ofproto-dpif-upcall.c
index 07086ee38..158d65eec 100644
--- a/ofproto/ofproto-dpif-upcall.c
+++ b/ofproto/ofproto-dpif-upcall.c
@@ -1352,12 +1352,15 @@ handle_upcalls(struct udpif *udpif, struct upcall *upcalls,
/* Handle the packets individually in order of arrival.
*
- * - For SLOW_CFM, SLOW_LACP, SLOW_STP, and SLOW_BFD, translation is what
- * processes received packets for these protocols.
+ * - For SLOW_CFM, SLOW_LACP, SLOW_STP, SLOW_BFD, and SLOW_LLDP,
+ * translation is what processes received packets for these
+ * protocols.
*
* - For SLOW_CONTROLLER, translation sends the packet to the OpenFlow
* controller.
*
+ * - For SLOW_ACTION, translation executes the actions directly.
+ *
* The loop fills 'ops' with an array of operations to execute in the
* datapath. */
n_ops = 0;