2011-05-19 01:05:34 +02:00
|
|
|
/*
|
2016-06-06 11:52:34 +02:00
|
|
|
* 9p backend
|
2011-05-19 01:05:34 +02:00
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2011
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2021-05-06 15:12:23 +02:00
|
|
|
/*
|
|
|
|
* Not so fast! You might want to read the 9p developer docs first:
|
|
|
|
* https://wiki.qemu.org/Documentation/9p
|
|
|
|
*/
|
|
|
|
|
2016-01-26 19:17:10 +01:00
|
|
|
#include "qemu/osdep.h"
|
2011-05-19 01:05:34 +02:00
|
|
|
#include "fsdev/qemu-fsdev.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/thread.h"
|
Include qemu/main-loop.h less
In my "build everything" tree, changing qemu/main-loop.h triggers a
recompile of some 5600 out of 6600 objects (not counting tests and
objects that don't depend on qemu/osdep.h). It includes block/aio.h,
which in turn includes qemu/event_notifier.h, qemu/notify.h,
qemu/processor.h, qemu/qsp.h, qemu/queue.h, qemu/thread-posix.h,
qemu/thread.h, qemu/timer.h, and a few more.
Include qemu/main-loop.h only where it's needed. Touching it now
recompiles only some 1700 objects. For block/aio.h and
qemu/event_notifier.h, these numbers drop from 5600 to 2800. For the
others, they shrink only slightly.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190812052359.30071-21-armbru@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
2019-08-12 07:23:50 +02:00
|
|
|
#include "qemu/main-loop.h"
|
2015-11-18 18:57:30 +01:00
|
|
|
#include "coth.h"
|
2011-05-19 01:05:34 +02:00
|
|
|
|
2016-10-17 14:13:58 +02:00
|
|
|
int coroutine_fn v9fs_co_llistxattr(V9fsPDU *pdu, V9fsPath *path, void *value,
|
|
|
|
size_t size)
|
2011-05-19 01:05:34 +02:00
|
|
|
{
|
|
|
|
int err;
|
2011-08-02 08:06:17 +02:00
|
|
|
V9fsState *s = pdu->s;
|
2011-05-19 01:05:34 +02:00
|
|
|
|
2011-08-02 08:06:17 +02:00
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
|
|
|
return -EINTR;
|
|
|
|
}
|
2011-08-02 08:05:54 +02:00
|
|
|
v9fs_path_read_lock(s);
|
2011-05-19 01:05:34 +02:00
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
2011-09-09 11:44:18 +02:00
|
|
|
err = s->ops->llistxattr(&s->ctx, path, value, size);
|
2011-05-19 01:05:34 +02:00
|
|
|
if (err < 0) {
|
|
|
|
err = -errno;
|
|
|
|
}
|
|
|
|
});
|
2011-08-02 08:05:54 +02:00
|
|
|
v9fs_path_unlock(s);
|
2011-05-19 01:05:34 +02:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2016-10-17 14:13:58 +02:00
|
|
|
int coroutine_fn v9fs_co_lgetxattr(V9fsPDU *pdu, V9fsPath *path,
|
|
|
|
V9fsString *xattr_name, void *value,
|
|
|
|
size_t size)
|
2011-05-19 01:05:34 +02:00
|
|
|
{
|
|
|
|
int err;
|
2011-08-02 08:06:17 +02:00
|
|
|
V9fsState *s = pdu->s;
|
2011-05-19 01:05:34 +02:00
|
|
|
|
2011-08-02 08:06:17 +02:00
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
|
|
|
return -EINTR;
|
|
|
|
}
|
2011-08-02 08:05:54 +02:00
|
|
|
v9fs_path_read_lock(s);
|
2011-05-19 01:05:34 +02:00
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
2011-09-09 11:44:18 +02:00
|
|
|
err = s->ops->lgetxattr(&s->ctx, path,
|
2011-05-19 01:05:34 +02:00
|
|
|
xattr_name->data,
|
|
|
|
value, size);
|
|
|
|
if (err < 0) {
|
|
|
|
err = -errno;
|
|
|
|
}
|
|
|
|
});
|
2011-08-02 08:05:54 +02:00
|
|
|
v9fs_path_unlock(s);
|
2011-05-19 01:05:34 +02:00
|
|
|
return err;
|
|
|
|
}
|
2011-05-07 17:39:24 +02:00
|
|
|
|
2016-10-17 14:13:58 +02:00
|
|
|
int coroutine_fn v9fs_co_lsetxattr(V9fsPDU *pdu, V9fsPath *path,
|
|
|
|
V9fsString *xattr_name, void *value,
|
|
|
|
size_t size, int flags)
|
2011-05-07 17:39:24 +02:00
|
|
|
{
|
|
|
|
int err;
|
2011-08-02 08:06:17 +02:00
|
|
|
V9fsState *s = pdu->s;
|
2011-05-07 17:39:24 +02:00
|
|
|
|
2011-08-02 08:06:17 +02:00
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
|
|
|
return -EINTR;
|
|
|
|
}
|
2011-08-02 08:05:54 +02:00
|
|
|
v9fs_path_read_lock(s);
|
2011-05-07 17:39:24 +02:00
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
2011-09-09 11:44:18 +02:00
|
|
|
err = s->ops->lsetxattr(&s->ctx, path,
|
2011-05-07 17:39:24 +02:00
|
|
|
xattr_name->data, value,
|
|
|
|
size, flags);
|
|
|
|
if (err < 0) {
|
|
|
|
err = -errno;
|
|
|
|
}
|
|
|
|
});
|
2011-08-02 08:05:54 +02:00
|
|
|
v9fs_path_unlock(s);
|
2011-05-07 17:39:24 +02:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2016-10-17 14:13:58 +02:00
|
|
|
int coroutine_fn v9fs_co_lremovexattr(V9fsPDU *pdu, V9fsPath *path,
|
|
|
|
V9fsString *xattr_name)
|
2011-05-07 17:39:24 +02:00
|
|
|
{
|
|
|
|
int err;
|
2011-08-02 08:06:17 +02:00
|
|
|
V9fsState *s = pdu->s;
|
2011-05-07 17:39:24 +02:00
|
|
|
|
2011-08-02 08:06:17 +02:00
|
|
|
if (v9fs_request_cancelled(pdu)) {
|
|
|
|
return -EINTR;
|
|
|
|
}
|
2011-08-02 08:05:54 +02:00
|
|
|
v9fs_path_read_lock(s);
|
2011-05-07 17:39:24 +02:00
|
|
|
v9fs_co_run_in_worker(
|
|
|
|
{
|
2011-09-09 11:44:18 +02:00
|
|
|
err = s->ops->lremovexattr(&s->ctx, path, xattr_name->data);
|
2011-05-07 17:39:24 +02:00
|
|
|
if (err < 0) {
|
|
|
|
err = -errno;
|
|
|
|
}
|
|
|
|
});
|
2011-08-02 08:05:54 +02:00
|
|
|
v9fs_path_unlock(s);
|
2011-05-07 17:39:24 +02:00
|
|
|
return err;
|
|
|
|
}
|