coxattr.c (737e150e89c44c6b33691a627e24bac7fb58f349) | coxattr.c (1de7afc984b49af164e2619e6850b9732b173b34) |
---|---|
1 2/* 3 * Virtio 9p backend 4 * 5 * Copyright IBM, Corp. 2011 6 * 7 * Authors: 8 * Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> 9 * 10 * This work is licensed under the terms of the GNU GPL, version 2. See 11 * the COPYING file in the top-level directory. 12 * 13 */ 14 15#include "fsdev/qemu-fsdev.h" | 1 2/* 3 * Virtio 9p backend 4 * 5 * Copyright IBM, Corp. 2011 6 * 7 * Authors: 8 * Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> 9 * 10 * This work is licensed under the terms of the GNU GPL, version 2. See 11 * the COPYING file in the top-level directory. 12 * 13 */ 14 15#include "fsdev/qemu-fsdev.h" |
16#include "qemu-thread.h" | 16#include "qemu/thread.h" |
17#include "block/coroutine.h" 18#include "virtio-9p-coth.h" 19 20int v9fs_co_llistxattr(V9fsPDU *pdu, V9fsPath *path, void *value, size_t size) 21{ 22 int err; 23 V9fsState *s = pdu->s; 24 --- 83 unchanged lines hidden --- | 17#include "block/coroutine.h" 18#include "virtio-9p-coth.h" 19 20int v9fs_co_llistxattr(V9fsPDU *pdu, V9fsPath *path, void *value, size_t size) 21{ 22 int err; 23 V9fsState *s = pdu->s; 24 --- 83 unchanged lines hidden --- |