lkml.org 
[lkml]   [2004]   [Mar]   [29]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [PATCH] mask ADT: bitmap and bitop tweaks [1/22]
From
Date
On Mon, 2004-03-29 at 04:12, Paul Jackson wrote:
> Patch_1_of_22 - Underlying bitmap/bitop details, added ops
> Add a couple of 'const' qualifiers
> Add intersects, subset, xor and andnot operators.
> Fix some unused bits in bitmap_complement
> Change bitmap_complement to take two operands.

<snip>

> diff -Nru a/lib/bitmap.c b/lib/bitmap.c
> --- a/lib/bitmap.c Mon Mar 29 01:03:26 2004
> +++ b/lib/bitmap.c Mon Mar 29 01:03:26 2004
> @@ -45,7 +45,7 @@
> EXPORT_SYMBOL(bitmap_full);
>
> int bitmap_equal(const unsigned long *bitmap1,
> - unsigned long *bitmap2, int bits)
> + const unsigned long *bitmap2, int bits)
> {
> int k, lim = bits/BITS_PER_LONG;;
> for (k = 0; k < lim; ++k)

Double `;`? You didn't put it there, but it seems that...

> @@ -61,13 +61,14 @@
> }
> EXPORT_SYMBOL(bitmap_equal);
>
> -void bitmap_complement(unsigned long *bitmap, int bits)
> +void bitmap_complement(unsigned long *dst, const unsigned long *src, int bits)
> {
> - int k;
> - int nr = BITS_TO_LONGS(bits);
> + int k, lim = bits/BITS_PER_LONG;;
> + for (k = 0; k < lim; ++k)
> + dst[k] = ~src[k];

...you propagated the error...


> +int bitmap_intersects(const unsigned long *bitmap1,
> + const unsigned long *bitmap2, int bits)
> +{
> + int k, lim = bits/BITS_PER_LONG;;

...a couple times...

> + for (k = 0; k < lim; ++k)
> + if (bitmap1[k] & bitmap2[k])
> + return 1;
> +
> + if (bits % BITS_PER_LONG)
> + if ((bitmap1[k] & bitmap2[k]) &
> + ((1UL << (bits % BITS_PER_LONG)) - 1))
> + return 1;
> + return 0;
> +}
> +EXPORT_SYMBOL(bitmap_intersects);

Do we need to check the last word specially? If we're assuming that the
unused bits are 0's, then they can't affect the check, right? If we're
not assuming the unused bits are 0's, then we need to do this last word
special casing in bitmap_xor & bitmap_andnot, because they could set the
unused bits. Or am I confused?

> +int bitmap_subset(const unsigned long *bitmap1,
> + const unsigned long *bitmap2, int bits)
> +{
> + int k, lim = bits/BITS_PER_LONG;;
> + for (k = 0; k < lim; ++k)
> + if (bitmap1[k] & ~bitmap2[k])
> + return 0;
> +
> + if (bits % BITS_PER_LONG)
> + if ((bitmap1[k] & ~bitmap2[k]) &
> + ((1UL << (bits % BITS_PER_LONG)) - 1))
> + return 0;
> + return 1;
> +}
> +EXPORT_SYMBOL(bitmap_subset);

Same comments here, both the double ';' and the last word special
casing...

Looking ahead, patch 2/22 specifically states that we assume all our
input masks have the high/unused bits cleared and we promise not to set
them. So we shouldn't need the last word special casing in
bitmap_intersect & bitmap_subset... I think. ;)

-Matt

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-03-22 14:02    [W:0.086 / U:0.716 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site