aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKent Overstreet <[email protected]>2022-07-03 21:08:18 -0400
committerDominique Martinet <[email protected]>2022-07-09 14:38:35 +0900
commit8b11ff098af42b1fa57fc817daadd53c8b244a0c (patch)
tree79485ace4a23b98a19b803b8d4f766e7450135ad /include
parent6cda12864cb0f99810a5809e11e3ee5b102c9a47 (diff)
9p: Add client parameter to p9_req_put()
This is to aid in adding mempools, in the next patch. Link: https://lkml.kernel.org/r/[email protected] Signed-off-by: Kent Overstreet <[email protected]> Cc: Eric Van Hensbergen <[email protected]> Cc: Latchesar Ionkov <[email protected]> Signed-off-by: Dominique Martinet <[email protected]>
Diffstat (limited to 'include')
-rw-r--r--include/net/9p/client.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/9p/client.h b/include/net/9p/client.h
index ad38325aaef0..78ebcf782ce5 100644
--- a/include/net/9p/client.h
+++ b/include/net/9p/client.h
@@ -236,7 +236,7 @@ static inline int p9_req_try_get(struct p9_req_t *r)
return refcount_inc_not_zero(&r->refcount);
}
-int p9_req_put(struct p9_req_t *r);
+int p9_req_put(struct p9_client *c, struct p9_req_t *r);
/* We cannot have the real tracepoints in header files,
* use a wrapper function */