diff options
author | Javier Martinez Canillas <martinez.javier@gmail.com> | 2011-01-03 14:05:01 +0100 |
---|---|---|
committer | Javier Martinez Canillas <martinez.javier@gmail.com> | 2011-01-03 14:05:01 +0100 |
commit | 4081834fc1ee725c25ce30c2b3c4135f920a48e0 (patch) | |
tree | fba8c44573ddeb44c2dd733dc0ee22bd9860f07f | |
parent | ccd3e1cc6a94d540759e9a1e6973abbd0f20da2a (diff) | |
download | ldd3-4081834fc1ee725c25ce30c2b3c4135f920a48e0.tar.gz |
scull: pipe: BKL ioctl pushdown API change
-rw-r--r-- | scull/pipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scull/pipe.c b/scull/pipe.c index 58603d4..e6aa7ff 100644 --- a/scull/pipe.c +++ b/scull/pipe.c @@ -317,7 +317,7 @@ struct file_operations scull_pipe_fops = { .read = scull_p_read, .write = scull_p_write, .poll = scull_p_poll, - .ioctl = scull_ioctl, + .unlocked_ioctl = scull_ioctl, .open = scull_p_open, .release = scull_p_release, .fasync = scull_p_fasync, |