Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
netdev
/
net-next
/
015e7b0b0e8e51f7321ec2aafc1d7fc0a8a5536f
/
.
/
rust
/
helpers
/
bitmap.c
blob: a50e2f082e47ad1bacbf453fd79d1fdfe2cc11f5 [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: GPL-2.0
#include
<linux/bitmap.h>
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
);
}