Thanks, I've applied all 3 of these patches to my tree, and will send
them on.
One minor note though:
> +static int log2(int val)
> +{
> + int answer = 0;
> + while ((val >>= 1))
> + answer++;
> + return answer;
> +}
Can you start using the proper kernel coding style of 8 character tabs?
I've fixed up this in your different patches before applying them, but
in the future it would be nicer if I didn't have to.
thanks,
greg k-h
-
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/