]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - net/9p/client.c
9p: Remove unneeded free of fcall for Flush
[linux-2.6-omap-h63xx.git] / net / 9p / client.c
index f4e6c05b3c68fa0a7d67cae35f31fb4b0a786b21..26ca8ab451966b1e11a6914e106815f0b844b7e2 100644 (file)
@@ -311,12 +311,6 @@ static void p9_free_req(struct p9_client *c, struct p9_req_t *r)
        r->status = REQ_STATUS_IDLE;
        if (tag != P9_NOTAG && p9_idpool_check(tag, c->tagpool))
                p9_idpool_put(tag, c->tagpool);
-
-       /* if this was a flush request we have to free response fcall */
-       if (r->rc->id == P9_RFLUSH) {
-               kfree(r->tc);
-               kfree(r->rc);
-       }
 }
 
 /**