[PATCH 10/18] lib: bitmap: Make the start index of bitmap_set unsigned

2014-07-03 Thread Rasmus Villemoes
The compiler can generate slightly smaller and simpler code when it knows that "start" is non-negative. Also, use the names "start" and "len" for the two parameters in both header file and implementation, instead of the previous mix. Signed-off-by: Rasmus Villemoes --- include/linux/bitmap.h |

[PATCH 10/18] lib: bitmap: Make the start index of bitmap_set unsigned

2014-07-03 Thread Rasmus Villemoes
The compiler can generate slightly smaller and simpler code when it knows that start is non-negative. Also, use the names start and len for the two parameters in both header file and implementation, instead of the previous mix. Signed-off-by: Rasmus Villemoes li...@rasmusvillemoes.dk ---