2013/3/26 Can Zhang <[email protected]>: > Hello, > > Your patch 1/3 failed in nx_match.py. Below is the .rej file:
Thanks for your trying. Applying the patch succeeded at my environment. Please try it again or give me more information. > --- > > diff a/ryu/ofproto/nx_match.py b/ryu/ofproto/nx_match.py (rejected > hunks) > @@ -503,11 +586,20 @@ class MFIPDSCP(MFField): > > > @_register_make > -@..., ofproto_v1_0.NXM_NX_TUN_ID_W]) > +@_set_nxm_headers([ofproto_v1_0.NXM_NX_TUN_ID, > + ofproto_v1_0.NXM_NX_TUN_ID_W]) > [email protected]_field_header([ofproto_v1_0.NXM_NX_TUN_ID, > + ofproto_v1_0.NXM_NX_TUN_ID_W]) > class MFTunId(MFField): > + pack_str = MF_PACK_STRING_BE64 > + > + def __init__(self, header, value, mask=None): > + super(MFTunId, self).__init__(header, MFTunId.pack_str) > + self.value = value > + > @classmethod > def make(cls, header): > - return cls(header, MF_PACK_STRING_BE64) > + return cls(header, MFTunId.pack_str) > > def put(self, buf, offset, rule): > return self.putm(buf, offset, rule.flow.tun_id, rule.wc.tun_id_mask) > > > > > > Best regards, > Can Zhang > > > > > > ------------------------------------------------------------------------------ > Own the Future-Intel® Level Up Game Demo Contest 2013 > Rise to greatness in Intel's independent game demo contest. > Compete for recognition, cash, and the chance to get your game > on Steam. $5K grand prize plus 10 genre and skill prizes. > Submit your demo by 6/6/13. http://p.sf.net/sfu/intel_levelupd2d > _______________________________________________ > Ryu-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/ryu-devel ------------------------------------------------------------------------------ Own the Future-Intel® Level Up Game Demo Contest 2013 Rise to greatness in Intel's independent game demo contest. Compete for recognition, cash, and the chance to get your game on Steam. $5K grand prize plus 10 genre and skill prizes. Submit your demo by 6/6/13. http://p.sf.net/sfu/intel_levelupd2d _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
