[ovs-build] Passed: williamtu/ovs-travis#84 (truncatev9 - 819ecee)

Travis CI builds at travis-ci.org
Sat Jun 18 22:18:36 UTC 2016


Build Update for williamtu/ovs-travis
-------------------------------------

Build: #84
Status: Passed

Duration: 17 minutes and 25 seconds
Commit: 819ecee (truncatev9)
Author: William Tu
Message: ofp-actions: Add truncate action.

The patch adds a new action to support packet truncation.  The new action
is formatted as 'output(port=n,max_len=m)', as output to port n, with
packet size being MIN(original_size, m).

One use case is to enable port mirroring to send smaller packets to the
destination port so that only useful packet information is mirrored/copied,
saving some performance overhead of copying entire packet payload.  Example
use case is below as well as shown in the testcases:

    - Output to port 1 with max_len 100 bytes.
    - The output packet size on port 1 will be MIN(original_packet_size, 100).
    # ovs-ofctl add-flow br0 'actions=output(port=1,max_len=100)'

    - The scope of max_len is limited to output action itself.  The following
      packet size of output:1 and output:2 will be intact.
    # ovs-ofctl add-flow br0 \
            'actions=output(port=1,max_len=100),output:1,output:2'
    - The Datapath actions shows:
    # Datapath actions: trunc(100),1,1,2

Signed-off-by: William Tu <u9012063 at gmail.com>
Cc: Pravin Shelar <pshelar at nicira.com>

View the changeset: https://github.com/williamtu/ovs-travis/compare/truncatev9

View the full build log and details: https://travis-ci.org/williamtu/ovs-travis/builds/138633736

--

You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://www.openvswitch.org/pipermail/ovs-build/attachments/20160618/b7bc5e32/attachment-0002.html>


More information about the build mailing list