diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2016-02-11 21:34:52 -0500 |
---|---|---|
committer | Mike Marshall <hubcap@omnibond.com> | 2016-02-12 15:05:33 -0500 |
commit | 1357d06d49d1f87af48ab768d34af55bff18b0c3 (patch) | |
tree | 18b208b4117819d48d4a16f7b05bd10b94cfd407 /fs/orangefs/orangefs-bufmap.h | |
parent | c0eae8cd77bc34b7e4c52037eeb53712f46fa05c (diff) |
get rid of bufmap argument of orangefs_bufmap_put()
it's always equal to __orangefs_bufmap and the latter can't change
until we are done
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
Diffstat (limited to 'fs/orangefs/orangefs-bufmap.h')
-rw-r--r-- | fs/orangefs/orangefs-bufmap.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/orangefs/orangefs-bufmap.h b/fs/orangefs/orangefs-bufmap.h index dff55e2857c5..2a2d4269d03e 100644 --- a/fs/orangefs/orangefs-bufmap.h +++ b/fs/orangefs/orangefs-bufmap.h @@ -21,7 +21,7 @@ void orangefs_bufmap_finalize(void); int orangefs_bufmap_get(struct orangefs_bufmap **mapp, int *buffer_index); -void orangefs_bufmap_put(struct orangefs_bufmap *bufmap, int buffer_index); +void orangefs_bufmap_put(int buffer_index); int orangefs_readdir_index_get(struct orangefs_bufmap **mapp, int *buffer_index); |