Lines Matching refs:fake_pdu
547 struct p9_fcall fake_pdu; in p9stat_read() local
550 fake_pdu.size = len; in p9stat_read()
551 fake_pdu.capacity = len; in p9stat_read()
552 fake_pdu.sdata = buf; in p9stat_read()
553 fake_pdu.offset = 0; in p9stat_read()
555 ret = p9pdu_readf(&fake_pdu, clnt->proto_version, "S", st); in p9stat_read()
558 trace_9p_protocol_dump(clnt, &fake_pdu); in p9stat_read()
562 return fake_pdu.offset; in p9stat_read()
597 struct p9_fcall fake_pdu; in p9dirent_read() local
601 fake_pdu.size = len; in p9dirent_read()
602 fake_pdu.capacity = len; in p9dirent_read()
603 fake_pdu.sdata = buf; in p9dirent_read()
604 fake_pdu.offset = 0; in p9dirent_read()
606 ret = p9pdu_readf(&fake_pdu, clnt->proto_version, "Qqbs", &dirent->qid, in p9dirent_read()
610 trace_9p_protocol_dump(clnt, &fake_pdu); in p9dirent_read()
624 return fake_pdu.offset; in p9dirent_read()