Re: [PATCH 01/02] cpuset bitmap and mask remap operators

From: Andrew Morton
Date: Mon Oct 24 2005 - 02:50:05 EST


Paul Jackson <pj@xxxxxxx> wrote:
>
> +#define node_remap(oldbit, old, new) \
> + __node_remap((oldbit), &(old), &(new), MAX_NUMNODES)
> +static inline int __node_remap(int oldbit,
> + const nodemask_t *oldp, const nodemask_t *newp, int nbits)
> +{
> + return bitmap_bitremap(oldbit, oldp->bits, newp->bits, nbits);
> +}

What's the reason for the wrapper macro?

+EXPORT_SYMBOL(bitmap_bitremap);

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