aboutsummaryrefslogtreecommitdiffstats
path: root/rust/helpers/bitmap.c
blob: 57e9e64ab0c385cbaec8ba3f169bc304e07cf419 (plain)
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: GPL-2.0

#include <linux/bitmap.h>

__rust_helper void rust_helper_bitmap_copy_and_extend(unsigned long *to,
						      const unsigned long *from,
						      unsigned int count,
						      unsigned int size)
{
	bitmap_copy_and_extend(to, from, count, size);
}