Lines Matching refs:argbuf
490 /* Allocate and copy args into req->argbuf */
505 req->argbuf = kmalloc(len, GFP_ATOMIC);
506 if (!req->argbuf)
510 memcpy(req->argbuf + offset,
519 /* Copy args out of and free req->argbuf */
542 memcpy(args->out_args[i].value, req->argbuf + offset, argsize);
553 kfree(req->argbuf);
554 req->argbuf = NULL;
1097 void *argbuf,
1106 sg_init_one(&sg[total_sgs++], argbuf, len);
1161 req->argbuf, &argbuf_used);
1170 req->argbuf + argbuf_used, NULL);
1212 if (ret < 0 && req->argbuf) {
1213 kfree(req->argbuf);
1214 req->argbuf = NULL;