Re: [ovs-dev] [PATCH v4 3/7] ofp-actions: Ensure aligned accesses when setting masked fields.

2022-03-01 Thread Jeffrey Walton
On Tue, Mar 1, 2022 at 7:54 AM Dumitru Ceara wrote: > > On 3/1/22 13:44, Adrian Moreno wrote: > > > > > > On 3/1/22 12:59, Dumitru Ceara wrote: > >> On 3/1/22 12:54, Adrian Moreno wrote: > >>> > >>> > >>> On 3/1/22 10:35, Dumitru Ceara wrote: > On 3/1/22 10:07, Adrian Moreno wrote: > > >

Re: [ovs-dev] [PATCH v4 3/7] ofp-actions: Ensure aligned accesses when setting masked fields.

2022-03-01 Thread Dumitru Ceara
On 3/1/22 13:44, Adrian Moreno wrote: > > > On 3/1/22 12:59, Dumitru Ceara wrote: >> On 3/1/22 12:54, Adrian Moreno wrote: >>> >>> >>> On 3/1/22 10:35, Dumitru Ceara wrote: On 3/1/22 10:07, Adrian Moreno wrote: > > > On 2/25/22 18:14, Dumitru Ceara wrote: >> For example is pa

Re: [ovs-dev] [PATCH v4 3/7] ofp-actions: Ensure aligned accesses when setting masked fields.

2022-03-01 Thread Adrian Moreno
On 3/1/22 12:59, Dumitru Ceara wrote: On 3/1/22 12:54, Adrian Moreno wrote: On 3/1/22 10:35, Dumitru Ceara wrote: On 3/1/22 10:07, Adrian Moreno wrote: On 2/25/22 18:14, Dumitru Ceara wrote: For example is parsing the OVN "eth.dst[40] = 1;" action, which triggered the following warning

Re: [ovs-dev] [PATCH v4 3/7] ofp-actions: Ensure aligned accesses when setting masked fields.

2022-03-01 Thread Dumitru Ceara
On 3/1/22 12:54, Adrian Moreno wrote: > > > On 3/1/22 10:35, Dumitru Ceara wrote: >> On 3/1/22 10:07, Adrian Moreno wrote: >>> >>> >>> On 2/25/22 18:14, Dumitru Ceara wrote: For example is parsing the OVN "eth.dst[40] = 1;" action, which triggered the following warning from UndefinedBeh

Re: [ovs-dev] [PATCH v4 3/7] ofp-actions: Ensure aligned accesses when setting masked fields.

2022-03-01 Thread Adrian Moreno
On 3/1/22 10:35, Dumitru Ceara wrote: On 3/1/22 10:07, Adrian Moreno wrote: On 2/25/22 18:14, Dumitru Ceara wrote: For example is parsing the OVN "eth.dst[40] = 1;" action, which triggered the following warning from UndefinedBehaviorSanitizer:    lib/meta-flow.c:3210:9: runtime error: mem

Re: [ovs-dev] [PATCH v4 3/7] ofp-actions: Ensure aligned accesses when setting masked fields.

2022-03-01 Thread Dumitru Ceara
On 3/1/22 10:07, Adrian Moreno wrote: > > > On 2/25/22 18:14, Dumitru Ceara wrote: >> For example is parsing the OVN "eth.dst[40] = 1;" action, which >> triggered the following warning from UndefinedBehaviorSanitizer: >> >>    lib/meta-flow.c:3210:9: runtime error: member access within >> misalig

Re: [ovs-dev] [PATCH v4 3/7] ofp-actions: Ensure aligned accesses when setting masked fields.

2022-03-01 Thread Adrian Moreno
On 2/25/22 18:14, Dumitru Ceara wrote: For example is parsing the OVN "eth.dst[40] = 1;" action, which triggered the following warning from UndefinedBehaviorSanitizer: lib/meta-flow.c:3210:9: runtime error: member access within misaligned address 0x00de4e36 for type 'const union mf_val

[ovs-dev] [PATCH v4 3/7] ofp-actions: Ensure aligned accesses when setting masked fields.

2022-02-25 Thread Dumitru Ceara
For example is parsing the OVN "eth.dst[40] = 1;" action, which triggered the following warning from UndefinedBehaviorSanitizer: lib/meta-flow.c:3210:9: runtime error: member access within misaligned address 0x00de4e36 for type 'const union mf_value', which requires 8 byte alignment 0x00