diff options
author | Matthew Wilcox | 2018-07-11 14:02:25 -0700 |
---|---|---|
committer | Dominique Martinet | 2018-08-29 13:39:57 +0900 |
commit | 6348b903d79119a8157aace08ab99521f5dba139 (patch) | |
tree | 08f038b40e025f0a842b0db31330d1b7080e093c /include | |
parent | 996d5b4db4b191f2676cf8775565cab8a5e2753b (diff) |
9p: Remove p9_idpool
There are no more users left of the p9_idpool; delete it.
Link: http://lkml.kernel.org/r/20180711210225.19730-7-willy@infradead.org
Signed-off-by: Matthew Wilcox <willy@infradead.org>
Cc: Eric Van Hensbergen <ericvh@gmail.com>
Cc: Ron Minnich <rminnich@sandia.gov>
Cc: Latchesar Ionkov <lucho@ionkov.net>
Signed-off-by: Dominique Martinet <dominique.martinet@cea.fr>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/9p/9p.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/net/9p/9p.h b/include/net/9p/9p.h index b8eb51a661e5..e23896116d9a 100644 --- a/include/net/9p/9p.h +++ b/include/net/9p/9p.h @@ -561,16 +561,8 @@ struct p9_fcall { u8 *sdata; }; -struct p9_idpool; - int p9_errstr2errno(char *errstr, int len); -struct p9_idpool *p9_idpool_create(void); -void p9_idpool_destroy(struct p9_idpool *); -int p9_idpool_get(struct p9_idpool *p); -void p9_idpool_put(int id, struct p9_idpool *p); -int p9_idpool_check(int id, struct p9_idpool *p); - int p9_error_init(void); int p9_trans_fd_init(void); void p9_trans_fd_exit(void); |