Re: Fix a couple of misuages of bms_num_members()

2020-08-25 Thread David Rowley
On Wed, 26 Aug 2020 at 01:18, Tomas Vondra wrote: > > On Wed, Aug 26, 2020 at 12:51:37AM +1200, David Rowley wrote: > >I noticed today there are a few places where we use bms_num_memebers() > >where we really should be using bms_membership(). These are not bugs, > >they're mostly just bad example

Re: Fix a couple of misuages of bms_num_members()

2020-08-25 Thread Tomas Vondra
On Wed, Aug 26, 2020 at 12:51:37AM +1200, David Rowley wrote: I noticed today there are a few places where we use bms_num_memebers() where we really should be using bms_membership(). These are not bugs, they're mostly just bad examples to leave laying around, at best, and a small performance pen

Fix a couple of misuages of bms_num_members()

2020-08-25 Thread David Rowley
I noticed today there are a few places where we use bms_num_memebers() where we really should be using bms_membership(). These are not bugs, they're mostly just bad examples to leave laying around, at best, and a small performance penalty, at worst. Unless there are any objections, I plan to push