Lines Matching refs:argbuf
482 /* Allocate and copy args into req->argbuf */
497 req->argbuf = kmalloc(len, GFP_ATOMIC);
498 if (!req->argbuf)
502 memcpy(req->argbuf + offset,
511 /* Copy args out of and free req->argbuf */
534 memcpy(args->out_args[i].value, req->argbuf + offset, argsize);
545 kfree(req->argbuf);
546 req->argbuf = NULL;
1103 void *argbuf,
1112 sg_init_one(&sg[total_sgs++], argbuf, len);
1167 req->argbuf, &argbuf_used);
1176 req->argbuf + argbuf_used, NULL);
1218 if (ret < 0 && req->argbuf) {
1219 kfree(req->argbuf);
1220 req->argbuf = NULL;