9pfs: export pdu_{submit,alloc,free}
They will be used in later patches. Signed-off-by: Wei Liu <wei.liu2@citrix.com> Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
This commit is contained in:
parent
0d3716b4e6
commit
4b311c5f0b
@ -321,5 +321,8 @@ extern int v9fs_name_to_path(V9fsState *s, V9fsPath *dirpath,
|
|||||||
|
|
||||||
ssize_t pdu_marshal(V9fsPDU *pdu, size_t offset, const char *fmt, ...);
|
ssize_t pdu_marshal(V9fsPDU *pdu, size_t offset, const char *fmt, ...);
|
||||||
ssize_t pdu_unmarshal(V9fsPDU *pdu, size_t offset, const char *fmt, ...);
|
ssize_t pdu_unmarshal(V9fsPDU *pdu, size_t offset, const char *fmt, ...);
|
||||||
|
V9fsPDU *pdu_alloc(V9fsState *s);
|
||||||
|
void pdu_free(V9fsPDU *pdu);
|
||||||
|
void pdu_submit(V9fsPDU *pdu);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -592,7 +592,7 @@ static int fid_to_qid(V9fsPDU *pdu, V9fsFidState *fidp, V9fsQID *qidp)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static V9fsPDU *pdu_alloc(V9fsState *s)
|
V9fsPDU *pdu_alloc(V9fsState *s)
|
||||||
{
|
{
|
||||||
V9fsPDU *pdu = NULL;
|
V9fsPDU *pdu = NULL;
|
||||||
|
|
||||||
@ -604,7 +604,7 @@ static V9fsPDU *pdu_alloc(V9fsState *s)
|
|||||||
return pdu;
|
return pdu;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void pdu_free(V9fsPDU *pdu)
|
void pdu_free(V9fsPDU *pdu)
|
||||||
{
|
{
|
||||||
if (pdu) {
|
if (pdu) {
|
||||||
V9fsState *s = pdu->s;
|
V9fsState *s = pdu->s;
|
||||||
@ -3246,7 +3246,7 @@ static inline bool is_read_only_op(V9fsPDU *pdu)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void pdu_submit(V9fsPDU *pdu)
|
void pdu_submit(V9fsPDU *pdu)
|
||||||
{
|
{
|
||||||
Coroutine *co;
|
Coroutine *co;
|
||||||
CoroutineEntry *handler;
|
CoroutineEntry *handler;
|
||||||
|
Loading…
Reference in New Issue
Block a user