Skip to content

Commit

Permalink
openflow-common: Correct Netronome vendor ID.
Browse files Browse the repository at this point in the history
Due to an error on my part the Netronome vendor Id is incorrect:
the last digit should be 'd' rather than '0' as per the
Netronome IEEE OUI.

Signed-off-by: Simon Horman <[email protected]>
Signed-off-by: Ben Pfaff <[email protected]>
  • Loading branch information
shorman-netronome authored and blp committed Sep 30, 2015
1 parent 18167ff commit c28a1f8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Documentation/group-selection-method-property.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ allows controllers to:

The Experimenter ID of this extension is:

NTR_VENDOR_ID = 0x00001540
NTR_VENDOR_ID = 0x0000154d


4. Group Experimenter Property
Expand Down
3 changes: 2 additions & 1 deletion include/openflow/openflow-common.h
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@ enum ofp_version {
*/
#define OF_VENDOR_ID 0
#define HPL_VENDOR_ID 0x000004EA /* HP Labs. */
#define NTR_VENDOR_ID 0x00001540 /* Netronome. */
#define NTR_VENDOR_ID 0x0000154d /* Netronome. */
#define NTR_COMPAT_VENDOR_ID 0x00001540 /* Incorrect value used in v2.4. */
#define NX_VENDOR_ID 0x00002320 /* Nicira. */
#define ONF_VENDOR_ID 0x4f4e4600 /* Open Networking Foundation. */

Expand Down
1 change: 1 addition & 0 deletions lib/ofp-util.c
Original file line number Diff line number Diff line change
Expand Up @@ -8191,6 +8191,7 @@ parse_ofp15_group_prop_exp(struct ofpbuf *payload,

switch (experimenter) {
case NTR_VENDOR_ID:
case NTR_COMPAT_VENDOR_ID:
error = parse_group_prop_ntr(payload, exp_type, group_type,
group_cmd, gp);
break;
Expand Down

0 comments on commit c28a1f8

Please sign in to comment.