Home
last modified time | relevance | path

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

/linux-4.4.14/net/9p/
Dclient.c340 c->tagpool = p9_idpool_create(); in p9_tag_init()
341 if (IS_ERR(c->tagpool)) { in p9_tag_init()
342 err = PTR_ERR(c->tagpool); in p9_tag_init()
345 err = p9_idpool_get(c->tagpool); /* reserve tag 0 */ in p9_tag_init()
347 p9_idpool_destroy(c->tagpool); in p9_tag_init()
379 if (c->tagpool) { in p9_tag_cleanup()
380 p9_idpool_put(0, c->tagpool); /* free reserved tag 0 */ in p9_tag_cleanup()
381 p9_idpool_destroy(c->tagpool); in p9_tag_cleanup()
409 if (tag != P9_NOTAG && p9_idpool_check(tag, c->tagpool)) in p9_free_req()
410 p9_idpool_put(tag, c->tagpool); in p9_free_req()
[all …]
/linux-4.4.14/include/net/9p/
Dclient.h163 struct p9_idpool *tagpool; member