datapath: Remove unnecessary range check from put_actions().
authorBen Pfaff <blp@nicira.com>
Tue, 16 Jun 2009 21:16:14 +0000 (14:16 -0700)
committerBen Pfaff <blp@nicira.com>
Mon, 6 Jul 2009 16:07:24 +0000 (09:07 -0700)
commit2f8c6cfb506aad3b9b498917878e65149c3b67b2
tree82ab4028c1789f60ddb44b3482778b89a02dfe2b
parent8f24562aed1ad5d80eebf9c6430deb3d900c3e71
datapath: Remove unnecessary range check from put_actions().

This code checked that the number of actions in a flow query did not
exceed the maximum number of actions that are allowed on a given flow.
But this check is unnecessary, since the code will never copy out any
more actions than actually exist in a flow.  It would be a shame to refuse
a flow query simply on the basis that the caller allocated more memory
than necessary, so eliminate the check.
datapath/datapath.c