Skip to content
Snippets Groups Projects
Commit cf0dec66 authored by Eric Biggers's avatar Eric Biggers Committed by Mike Snitzer
Browse files

dm ioctl: constify ioctl lookup table


Constify the lookup table for device-mapper ioctls so that it is placed
in .rodata.

Signed-off-by: default avatarEric Biggers <ebiggers@google.com>
Signed-off-by: default avatarMike Snitzer <snitzer@redhat.com>
parent 5916a22b
No related branches found
No related tags found
No related merge requests found
...@@ -1629,7 +1629,7 @@ static int target_message(struct file *filp, struct dm_ioctl *param, size_t para ...@@ -1629,7 +1629,7 @@ static int target_message(struct file *filp, struct dm_ioctl *param, size_t para
*---------------------------------------------------------------*/ *---------------------------------------------------------------*/
static ioctl_fn lookup_ioctl(unsigned int cmd, int *ioctl_flags) static ioctl_fn lookup_ioctl(unsigned int cmd, int *ioctl_flags)
{ {
static struct { static const struct {
int cmd; int cmd;
int flags; int flags;
ioctl_fn fn; ioctl_fn fn;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment