Lines Matching refs:fake_pdu
713 struct p9_fcall fake_pdu; in p9stat_read() local
716 fake_pdu.size = len; in p9stat_read()
717 fake_pdu.capacity = len; in p9stat_read()
718 fake_pdu.sdata = buf; in p9stat_read()
719 fake_pdu.offset = 0; in p9stat_read()
721 ret = p9pdu_readf(&fake_pdu, clnt->proto_version, "S", st); in p9stat_read()
724 trace_9p_protocol_dump(clnt, &fake_pdu); in p9stat_read()
728 return fake_pdu.offset; in p9stat_read()
763 struct p9_fcall fake_pdu; in p9dirent_read() local
767 fake_pdu.size = len; in p9dirent_read()
768 fake_pdu.capacity = len; in p9dirent_read()
769 fake_pdu.sdata = buf; in p9dirent_read()
770 fake_pdu.offset = 0; in p9dirent_read()
772 ret = p9pdu_readf(&fake_pdu, clnt->proto_version, "Qqbs", &dirent->qid, in p9dirent_read()
776 trace_9p_protocol_dump(clnt, &fake_pdu); in p9dirent_read()
790 return fake_pdu.offset; in p9dirent_read()