diff options
author | Mike Rapoport <rppt@linux.vnet.ibm.com> | 2018-02-21 14:45:46 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2018-02-21 15:35:43 -0800 |
commit | 14fec9eba43b05d39825128e4354a2dc50fb59ea (patch) | |
tree | 8ec6618f5384cba0cd43d8473344f0a6c543bbe9 /mm | |
parent | b1a8a7a70043400d1e685899548c92b92f640d71 (diff) | |
download | linux-14fec9eba43b05d39825128e4354a2dc50fb59ea.tar.gz linux-14fec9eba43b05d39825128e4354a2dc50fb59ea.tar.bz2 linux-14fec9eba43b05d39825128e4354a2dc50fb59ea.zip |
mm/zpool.c: zpool_evictable: fix mismatch in parameter name and kernel-doc
[akpm@linux-foundation.org: add colon, per Randy]
Link: http://lkml.kernel.org/r/1518116984-21141-1-git-send-email-rppt@linux.vnet.ibm.com
Signed-off-by: Mike Rapoport <rppt@linux.vnet.ibm.com>
Reviewed-by: Andrew Morton <akpm@linux-foundation.org>
Cc: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/zpool.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/zpool.c b/mm/zpool.c index f8cb83e7699b..01a771e304fa 100644 --- a/mm/zpool.c +++ b/mm/zpool.c @@ -360,7 +360,7 @@ u64 zpool_get_total_size(struct zpool *zpool) /** * zpool_evictable() - Test if zpool is potentially evictable - * @pool The zpool to test + * @zpool: The zpool to test * * Zpool is only potentially evictable when it's created with struct * zpool_ops.evict and its driver implements struct zpool_driver.shrink. |