From: Sasha Levin Date: Wed, 3 Dec 2014 14:26:25 +0000 (-0500) Subject: amdkfd: use sizeof(long) granularity for the pasid bitmask X-Git-Tag: omap-for-v3.19/fixes-rc1~80^2~10^2~2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aeda036c371c58d3a6dcb3e5ac3c1503e7ffc4cf;p=pandora-kernel.git amdkfd: use sizeof(long) granularity for the pasid bitmask All the bit operations (such as find_first_zero_bit()) read sizeof(long) bytes at a time. If we allocated less than sizeof(long) bytes for the bitmask we would be accessing invalid memory when working with the bitmask. Change the allocator to allocate sizeof(long) multiples for the bitmask. Signed-off-by: Sasha Levin Signed-off-by: Oded Gabbay --- Reading git-diff-tree failed