peter 4830c34648 Move the "- 1" into the RQB_FFS(mask) macro itself so that
implementations can provide a base zero ffs function if they wish.
This changes
  #define RQB_FFS(mask) (ffs64(mask))
  foo = RQB_FFS(mask) - 1;
to
  #define RQB_FFS(mask) (ffs64(mask) - 1)
  foo = RQB_FFS(mask);
On some platforms we can get the "- 1" for free, eg: those that use the
C code for ffs64().

Reviewed by:	jake (in principle)
2002-06-20 06:21:20 +00:00
..
2001-11-02 18:05:43 +00:00
2002-03-23 02:01:27 +00:00
2002-03-20 05:48:58 +00:00
2002-03-20 05:48:58 +00:00
2002-03-20 05:48:58 +00:00
2002-03-20 05:48:58 +00:00
2002-04-17 22:41:58 +00:00
2002-03-20 05:48:58 +00:00
2002-03-20 05:48:58 +00:00
2002-04-29 07:43:16 +00:00
2002-03-20 05:48:58 +00:00
2002-03-20 05:48:58 +00:00
2002-05-10 02:02:54 +00:00