diff options
author | Johannes Berg <johannes.berg@intel.com> | 2022-01-31 15:35:27 +0100 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2022-03-11 10:47:05 +0100 |
commit | b5fa1d09f10f2b30603bf2578ef781d2a507be17 (patch) | |
tree | 9a880632b5435bfbefa3fa2094249689fbbe40d0 /arch/um/drivers/vector_user.h | |
parent | d2a0a616ab2246aab9527eeacf86a033679c8b22 (diff) | |
download | linux-b5fa1d09f10f2b30603bf2578ef781d2a507be17.tar.gz linux-b5fa1d09f10f2b30603bf2578ef781d2a507be17.tar.bz2 linux-b5fa1d09f10f2b30603bf2578ef781d2a507be17.zip |
uml: net: vector: fix const issue
Since the constification of MAC addresses, the argument
to uml_vector_default_bpf() must be const.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Acked-By: anton ivanov <anton.ivanov@cambridgegreys.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'arch/um/drivers/vector_user.h')
-rw-r--r-- | arch/um/drivers/vector_user.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/um/drivers/vector_user.h b/arch/um/drivers/vector_user.h index d29d5fdd98fa..3a73d17a0161 100644 --- a/arch/um/drivers/vector_user.h +++ b/arch/um/drivers/vector_user.h @@ -97,7 +97,7 @@ extern int uml_vector_recvmmsg( unsigned int vlen, unsigned int flags ); -extern void *uml_vector_default_bpf(void *mac); +extern void *uml_vector_default_bpf(const void *mac); extern void *uml_vector_user_bpf(char *filename); extern int uml_vector_attach_bpf(int fd, void *bpf); extern int uml_vector_detach_bpf(int fd, void *bpf); |