Re: [ovs-dev] [PATCH] bitmap: Convert single bitmap functions to 64-bit.

2015-06-25 Thread Ben Pfaff
On Thu, Jun 25, 2015 at 11:14:16AM -0700, Jesse Gross wrote: > On Thu, Jun 25, 2015 at 10:54 AM, Ben Pfaff wrote: > > On Thu, Jun 25, 2015 at 09:22:09AM -0700, Jesse Gross wrote: > >> Currently the functions to set, clear, and iterate over bitmaps > >> only operate over 32 bit values. If we conver

Re: [ovs-dev] [PATCH] bitmap: Convert single bitmap functions to 64-bit.

2015-06-25 Thread Jesse Gross
On Thu, Jun 25, 2015 at 10:54 AM, Ben Pfaff wrote: > On Thu, Jun 25, 2015 at 09:22:09AM -0700, Jesse Gross wrote: >> Currently the functions to set, clear, and iterate over bitmaps >> only operate over 32 bit values. If we convert them to handle >> 64 bit bitmaps, they can be used in more places.

Re: [ovs-dev] [PATCH] bitmap: Convert single bitmap functions to 64-bit.

2015-06-25 Thread Ben Pfaff
On Thu, Jun 25, 2015 at 09:22:09AM -0700, Jesse Gross wrote: > Currently the functions to set, clear, and iterate over bitmaps > only operate over 32 bit values. If we convert them to handle > 64 bit bitmaps, they can be used in more places. > > Suggested-by: Ben Pfaff > Signed-off-by: Jesse Gros

[ovs-dev] [PATCH] bitmap: Convert single bitmap functions to 64-bit.

2015-06-25 Thread Jesse Gross
Currently the functions to set, clear, and iterate over bitmaps only operate over 32 bit values. If we convert them to handle 64 bit bitmaps, they can be used in more places. Suggested-by: Ben Pfaff Signed-off-by: Jesse Gross --- lib/bitmap.h | 10 +- lib/cmap.c| 10 +--