Home
last modified time | relevance | path

Searched refs:tagpool (Results 1 – 2 of 2) sorted by relevance

/Linux-v4.19/net/9p/
Dclient.c358 c->tagpool = p9_idpool_create(); in p9_tag_init()
359 if (IS_ERR(c->tagpool)) { in p9_tag_init()
360 err = PTR_ERR(c->tagpool); in p9_tag_init()
363 err = p9_idpool_get(c->tagpool); /* reserve tag 0 */ in p9_tag_init()
365 p9_idpool_destroy(c->tagpool); in p9_tag_init()
397 if (c->tagpool) { in p9_tag_cleanup()
398 p9_idpool_put(0, c->tagpool); /* free reserved tag 0 */ in p9_tag_cleanup()
399 p9_idpool_destroy(c->tagpool); in p9_tag_cleanup()
426 if (tag != P9_NOTAG && p9_idpool_check(tag, c->tagpool)) in p9_free_req()
427 p9_idpool_put(tag, c->tagpool); in p9_free_req()
[all …]
/Linux-v4.19/include/net/9p/
Dclient.h174 struct p9_idpool *tagpool; member