Re: [ovs-dev] [const 0/9] Mark many static data structures as const.

2013-05-03 Thread Ben Pfaff
I applied them to master. Thanks a lot for the reviews. On Fri, May 03, 2013 at 01:13:09PM -0700, Andy Zhou wrote: > I have reviewed all 9 patches. They look fine. Thanks. > > > On Wed, May 1, 2013 at 11:20 AM, Ben Pfaff wrote: > > > In preparation for multithreading OVS, it makes sense to ma

Re: [ovs-dev] [const 0/9] Mark many static data structures as const.

2013-05-03 Thread Andy Zhou
I have reviewed all 9 patches. They look fine. Thanks. On Wed, May 1, 2013 at 11:20 AM, Ben Pfaff wrote: > In preparation for multithreading OVS, it makes sense to mark any > static data that we can "const", because read-only access to data > is obviously thread-safe. > > Ben Pfaff (9): > dpi

[ovs-dev] [const 0/9] Mark many static data structures as const.

2013-05-01 Thread Ben Pfaff
In preparation for multithreading OVS, it makes sense to mark any static data that we can "const", because read-only access to data is obviously thread-safe. Ben Pfaff (9): dpif-linux: Make dummy_action const in dpif_linux_init_flow_put(). Make most "struct option" instances "const". hmap: M