mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 12:43:29 +02:00
[PATCH] cpumask: uninline next_cpu()
text data bss dec hex filename before: 3488027 1322496 360128 5170651 4ee5db vmlinux after: 3485112 1322480 359968 5167560 4ed9c8 vmlinux 2931 bytes saved Cc: Paul Jackson <pj@sgi.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
ccb46000f4
commit
3d18bd74a2
@@ -9,3 +9,8 @@ int __first_cpu(const cpumask_t *srcp)
|
||||
}
|
||||
EXPORT_SYMBOL(__first_cpu);
|
||||
|
||||
int __next_cpu(int n, const cpumask_t *srcp)
|
||||
{
|
||||
return min_t(int, NR_CPUS, find_next_bit(srcp->bits, NR_CPUS, n+1));
|
||||
}
|
||||
EXPORT_SYMBOL(__next_cpu);
|
||||
|
Reference in New Issue
Block a user