From adb696f3d8535119fe0f5363de79a29e6bda83ed Mon Sep 17 00:00:00 2001 From: Corey Bryant Date: Tue, 14 Aug 2012 16:43:47 -0400 Subject: block: Enable qemu_open/close to work with fd sets When qemu_open is passed a filename of the "/dev/fdset/nnn" format (where nnn is the fdset ID), an fd with matching access mode flags will be searched for within the specified monitor fd set. If the fd is found, a dup of the fd will be returned from qemu_open. Signed-off-by: Corey Bryant Signed-off-by: Kevin Wolf --- cutils.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'cutils.c') diff --git a/cutils.c b/cutils.c index ee4614d..8ef648f 100644 --- a/cutils.c +++ b/cutils.c @@ -383,6 +383,11 @@ int qemu_parse_fd(const char *param) return fd; } +int qemu_parse_fdset(const char *param) +{ + return qemu_parse_fd(param); +} + /* round down to the nearest power of 2*/ int64_t pow2floor(int64_t value) { -- cgit v1.1