Samuel Thibault
2008-Jul-25 08:43 UTC
[Xen-devel] [PATCH] fs-backend: fix FD allocation for file creation
fs-backend: fix FD allocation for file creation The creation operation also opens a file, we need to allocate a virtual fd for that too. Signed-off-by: Samuel Thibault <samuel.thibault@eu.citrix.com> diff -r 70a43a82aaf1 tools/fs-back/fs-ops.c --- a/tools/fs-back/fs-ops.c Tue Jul 22 16:31:03 2008 +0100 +++ b/tools/fs-back/fs-ops.c Fri Jul 25 09:43:05 2008 +0100 @@ -461,7 +461,17 @@ else { printf("Issuing create for file: %s\n", full_path); - ret = creat(full_path, mode); + ret = get_fd(mount); + if (ret >= 0) { + int real_fd = creat(full_path, mode); + if (real_fd < 0) + ret = -1; + else + { + mount->fds[ret] = real_fd; + printf("Got FD: %d for real %d\n", ret, real_fd); + } + } } printf("Got ret %d (errno=%d)\n", ret, errno); _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel