aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/subr_rman.c
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2000-10-22 04:48:11 +0000
committerWarner Losh <imp@FreeBSD.org>2000-10-22 04:48:11 +0000
commitbbfe0254618a89ee89a999b8b76b0b3aee6ef097 (patch)
tree4bf594225f87427bd82e8728d7da28fd923b5ec3 /sys/kern/subr_rman.c
parentfe8d027cd840d44a18aa0555dca0bc963ea58002 (diff)
downloadsrc-bbfe0254618a89ee89a999b8b76b0b3aee6ef097.tar.gz
src-bbfe0254618a89ee89a999b8b76b0b3aee6ef097.zip
Cleanup the rman_make_alignment_flags function to be much clearer and shorter
than the prior version.
Notes
Notes: svn path=/head/; revision=67425
Diffstat (limited to 'sys/kern/subr_rman.c')
-rw-r--r--sys/kern/subr_rman.c22
1 files changed, 10 insertions, 12 deletions
diff --git a/sys/kern/subr_rman.c b/sys/kern/subr_rman.c
index 91a7bcdafcff..73a2daf96c48 100644
--- a/sys/kern/subr_rman.c
+++ b/sys/kern/subr_rman.c
@@ -598,18 +598,16 @@ uint32_t
rman_make_alignment_flags(uint32_t size)
{
int i;
- int count;
- for (i = 0, count = 0; i < 32 && size > 0x01; i++) {
- count += size & 1;
- size >>= 1;
- }
-
- if (count > 0)
- i ++;
-
- if (i > 31)
- i = 0;
+ /*
+ * Find the hightest bit set, and add one if more than one bit
+ * set. We're effectively computing the ceil(log2(size)) here.
+ */
+ for (i = 32; i > 0; i--)
+ if ((1 << i) & size)
+ break;
+ if (~(1 << i) & size)
+ i++;
return(RF_ALIGNMENT_LOG2(i));
- }
+}