diff options
Diffstat (limited to 'net/sunrpc/cache.c')
-rw-r--r-- | net/sunrpc/cache.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/sunrpc/cache.c b/net/sunrpc/cache.c index e68943895be4..aa36dad32db1 100644 --- a/net/sunrpc/cache.c +++ b/net/sunrpc/cache.c | |||
@@ -930,10 +930,10 @@ out: | |||
930 | 930 | ||
931 | static DECLARE_WAIT_QUEUE_HEAD(queue_wait); | 931 | static DECLARE_WAIT_QUEUE_HEAD(queue_wait); |
932 | 932 | ||
933 | static unsigned int cache_poll(struct file *filp, poll_table *wait, | 933 | static __poll_t cache_poll(struct file *filp, poll_table *wait, |
934 | struct cache_detail *cd) | 934 | struct cache_detail *cd) |
935 | { | 935 | { |
936 | unsigned int mask; | 936 | __poll_t mask; |
937 | struct cache_reader *rp = filp->private_data; | 937 | struct cache_reader *rp = filp->private_data; |
938 | struct cache_queue *cq; | 938 | struct cache_queue *cq; |
939 | 939 | ||
@@ -1501,7 +1501,7 @@ static ssize_t cache_write_procfs(struct file *filp, const char __user *buf, | |||
1501 | return cache_write(filp, buf, count, ppos, cd); | 1501 | return cache_write(filp, buf, count, ppos, cd); |
1502 | } | 1502 | } |
1503 | 1503 | ||
1504 | static unsigned int cache_poll_procfs(struct file *filp, poll_table *wait) | 1504 | static __poll_t cache_poll_procfs(struct file *filp, poll_table *wait) |
1505 | { | 1505 | { |
1506 | struct cache_detail *cd = PDE_DATA(file_inode(filp)); | 1506 | struct cache_detail *cd = PDE_DATA(file_inode(filp)); |
1507 | 1507 | ||
@@ -1720,7 +1720,7 @@ static ssize_t cache_write_pipefs(struct file *filp, const char __user *buf, | |||
1720 | return cache_write(filp, buf, count, ppos, cd); | 1720 | return cache_write(filp, buf, count, ppos, cd); |
1721 | } | 1721 | } |
1722 | 1722 | ||
1723 | static unsigned int cache_poll_pipefs(struct file *filp, poll_table *wait) | 1723 | static __poll_t cache_poll_pipefs(struct file *filp, poll_table *wait) |
1724 | { | 1724 | { |
1725 | struct cache_detail *cd = RPC_I(file_inode(filp))->private; | 1725 | struct cache_detail *cd = RPC_I(file_inode(filp))->private; |
1726 | 1726 | ||