ofproto: Rename *_begin functions as *_start.
authorJarno Rajahalme <jrajahalme@nicira.com>
Fri, 5 Jun 2015 21:03:11 +0000 (14:03 -0700)
committerJarno Rajahalme <jrajahalme@nicira.com>
Wed, 10 Jun 2015 20:19:34 +0000 (13:19 -0700)
commit4fcb208348e1f6fdc62cc0bcfdcf5b6570ae3f1a
tree568b6ae03312941847d181bc5cbb33fcf0b7c37a
parent40c9675a1e88804fcef9658ddacdf80dd82a1763
ofproto: Rename *_begin functions as *_start.

Weirdest things can bother you at night when you try to sleep ;-)

Now we have function triples such as add_flow_begin(),
add_flow_finish(), and add_flow_revert(), where a modification is
started in *_begin(), which can fail, and when successful can be
either made permanent with *_finish(), or cancelled with *_revert().

Linguistically it should be either "begin/end" or "start/finish", not
"begin/finish".  "begin/end" has some C++ STL baggage, so let's go
with "start/finish".  IMO "revert" rhymes with it, too.

Signed-off-by: Jarno Rajahalme <jrajahalme@nicira.com>
Acked-by: Ben Pfaff <blp@nicira.com>
ofproto/ofproto.c