Merge commit 'refs/top-bases/linux-user-disk' into linux-user-disk

This commit is contained in:
Brian Behlendorf 2010-03-10 09:59:14 -08:00
commit 1186ea3781
1 changed files with 17 additions and 9 deletions

View File

@ -515,6 +515,7 @@ vn_open(char *path, int x1, int flags, int mode, vnode_t **vpp, int x2, int x3)
int old_umask; int old_umask;
char real_path[MAXPATHLEN]; char real_path[MAXPATHLEN];
struct stat64 st; struct stat64 st;
int err;
/* /*
* If we're accessing a real disk from userland, we need to use * If we're accessing a real disk from userland, we need to use
@ -575,8 +576,9 @@ vn_open(char *path, int x1, int flags, int mode, vnode_t **vpp, int x2, int x3)
return (errno); return (errno);
if (fstat64(fd, &st) == -1) { if (fstat64(fd, &st) == -1) {
err = errno;
close(fd); close(fd);
return (errno); return (err);
} }
(void) fcntl(fd, F_SETFD, FD_CLOEXEC); (void) fcntl(fd, F_SETFD, FD_CLOEXEC);
@ -614,26 +616,32 @@ int
vn_rdwr(int uio, vnode_t *vp, void *addr, ssize_t len, offset_t offset, vn_rdwr(int uio, vnode_t *vp, void *addr, ssize_t len, offset_t offset,
int x1, int x2, rlim64_t x3, void *x4, ssize_t *residp) int x1, int x2, rlim64_t x3, void *x4, ssize_t *residp)
{ {
ssize_t iolen, split; ssize_t rc, done = 0, split;
if (uio == UIO_READ) { if (uio == UIO_READ) {
iolen = pread64(vp->v_fd, addr, len, offset); rc = pread64(vp->v_fd, addr, len, offset);
} else { } else {
/* /*
* To simulate partial disk writes, we split writes into two * To simulate partial disk writes, we split writes into two
* system calls so that the process can be killed in between. * system calls so that the process can be killed in between.
*/ */
split = (len > 0 ? rand() % len : 0); split = (len > 0 ? rand() % len : 0);
iolen = pwrite64(vp->v_fd, addr, split, offset); rc = pwrite64(vp->v_fd, addr, split, offset);
iolen += pwrite64(vp->v_fd, (char *)addr + split, if (rc != -1) {
len - split, offset + split); done = rc;
rc = pwrite64(vp->v_fd, (char *)addr + split,
len - split, offset + split);
}
} }
if (iolen == -1) if (rc == -1)
return (errno); return (errno);
done += rc;
if (residp) if (residp)
*residp = len - iolen; *residp = len - done;
else if (iolen != len) else if (done != len)
return (EIO); return (EIO);
return (0); return (0);
} }