aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlen Barber <gjb@FreeBSD.org>2013-08-24 00:26:15 +0000
committerGlen Barber <gjb@FreeBSD.org>2013-08-24 00:26:15 +0000
commitb6b4f514e15e1caffa0008b920c4fc49f5400a37 (patch)
tree2c388bb997cb579ad4d571470e3759ce4ad7f3fd
parentbbd43032eef48d75caed5f272dbf2b1794613e4b (diff)
downloadsrc-b6b4f514e15e1caffa0008b920c4fc49f5400a37.tar.gz
src-b6b4f514e15e1caffa0008b920c4fc49f5400a37.zip
Revert r250907 from releng/9.2:
Reports of NFS deadlocks on -stable@ suggest that reverting this change resolves the problem. This is a direct reverse-merge to releng/9.2, pending further review and analysis on the stable/9 branch. Approved by: re (marius) Discussed on: stable
Notes
Notes: svn path=/releng/9.2/; revision=254754
-rw-r--r--sys/kern/uipc_syscalls.c76
1 files changed, 25 insertions, 51 deletions
diff --git a/sys/kern/uipc_syscalls.c b/sys/kern/uipc_syscalls.c
index b3abfe5a2a78..6ea7d3481530 100644
--- a/sys/kern/uipc_syscalls.c
+++ b/sys/kern/uipc_syscalls.c
@@ -1835,11 +1835,9 @@ kern_sendfile(struct thread *td, struct sendfile_args *uap,
struct mbuf *m = NULL;
struct sf_buf *sf;
struct vm_page *pg;
- struct vattr va;
off_t off, xfsize, fsbytes = 0, sbytes = 0, rem = 0;
int error, hdrlen = 0, mnw = 0;
int vfslocked;
- int bsize;
struct sendfile_sync *sfs = NULL;
/*
@@ -1854,18 +1852,6 @@ kern_sendfile(struct thread *td, struct sendfile_args *uap,
vfslocked = VFS_LOCK_GIANT(vp->v_mount);
vn_lock(vp, LK_SHARED | LK_RETRY);
if (vp->v_type == VREG) {
- bsize = vp->v_mount->mnt_stat.f_iosize;
- if (uap->nbytes == 0) {
- error = VOP_GETATTR(vp, &va, td->td_ucred);
- if (error != 0) {
- VOP_UNLOCK(vp, 0);
- VFS_UNLOCK_GIANT(vfslocked);
- obj = NULL;
- goto out;
- }
- rem = va.va_size;
- } else
- rem = uap->nbytes;
obj = vp->v_object;
if (obj != NULL) {
/*
@@ -1883,8 +1869,7 @@ kern_sendfile(struct thread *td, struct sendfile_args *uap,
obj = NULL;
}
}
- } else
- bsize = 0; /* silence gcc */
+ }
VOP_UNLOCK(vp, 0);
VFS_UNLOCK_GIANT(vfslocked);
if (obj == NULL) {
@@ -1977,20 +1962,11 @@ kern_sendfile(struct thread *td, struct sendfile_args *uap,
* The outer loop checks the state and available space of the socket
* and takes care of the overall progress.
*/
- for (off = uap->offset; ; ) {
- struct mbuf *mtail;
- int loopbytes;
- int space;
- int done;
-
- if ((uap->nbytes != 0 && uap->nbytes == fsbytes) ||
- (uap->nbytes == 0 && va.va_size == fsbytes))
- break;
-
- mtail = NULL;
- loopbytes = 0;
- space = 0;
- done = 0;
+ for (off = uap->offset, rem = uap->nbytes; ; ) {
+ struct mbuf *mtail = NULL;
+ int loopbytes = 0;
+ int space = 0;
+ int done = 0;
/*
* Check the socket state for ongoing connection,
@@ -2058,20 +2034,6 @@ retry_space:
*/
space -= hdrlen;
- vfslocked = VFS_LOCK_GIANT(vp->v_mount);
- error = vn_lock(vp, LK_SHARED);
- if (error != 0) {
- VFS_UNLOCK_GIANT(vfslocked);
- goto done;
- }
- error = VOP_GETATTR(vp, &va, td->td_ucred);
- if (error != 0 || off >= va.va_size) {
- VOP_UNLOCK(vp, 0);
- VFS_UNLOCK_GIANT(vfslocked);
- goto done;
- }
- VFS_UNLOCK_GIANT(vfslocked);
-
/*
* Loop and construct maximum sized mbuf chain to be bulk
* dumped into socket buffer.
@@ -2081,20 +2043,25 @@ retry_space:
vm_offset_t pgoff;
struct mbuf *m0;
+ VM_OBJECT_LOCK(obj);
/*
* Calculate the amount to transfer.
* Not to exceed a page, the EOF,
* or the passed in nbytes.
*/
pgoff = (vm_offset_t)(off & PAGE_MASK);
+ xfsize = omin(PAGE_SIZE - pgoff,
+ obj->un_pager.vnp.vnp_size - uap->offset -
+ fsbytes - loopbytes);
if (uap->nbytes)
rem = (uap->nbytes - fsbytes - loopbytes);
else
- rem = va.va_size -
+ rem = obj->un_pager.vnp.vnp_size -
uap->offset - fsbytes - loopbytes;
- xfsize = omin(PAGE_SIZE - pgoff, rem);
+ xfsize = omin(rem, xfsize);
xfsize = omin(space - loopbytes, xfsize);
if (xfsize <= 0) {
+ VM_OBJECT_UNLOCK(obj);
done = 1; /* all data sent */
break;
}
@@ -2104,7 +2071,6 @@ retry_space:
* if not found or wait and loop if busy.
*/
pindex = OFF_TO_IDX(off);
- VM_OBJECT_LOCK(obj);
pg = vm_page_grab(obj, pindex, VM_ALLOC_NOBUSY |
VM_ALLOC_NORMAL | VM_ALLOC_WIRED | VM_ALLOC_RETRY);
@@ -2122,6 +2088,7 @@ retry_space:
else if (uap->flags & SF_NODISKIO)
error = EBUSY;
else {
+ int bsize;
ssize_t resid;
/*
@@ -2133,16 +2100,25 @@ retry_space:
/*
* Get the page from backing store.
+ */
+ vfslocked = VFS_LOCK_GIANT(vp->v_mount);
+ error = vn_lock(vp, LK_SHARED);
+ if (error != 0)
+ goto after_read;
+ bsize = vp->v_mount->mnt_stat.f_iosize;
+
+ /*
* XXXMAC: Because we don't have fp->f_cred
* here, we pass in NOCRED. This is probably
* wrong, but is consistent with our original
* implementation.
*/
- vfslocked = VFS_LOCK_GIANT(vp->v_mount);
error = vn_rdwr(UIO_READ, vp, NULL, MAXBSIZE,
trunc_page(off), UIO_NOCOPY, IO_NODELOCKED |
IO_VMIO | ((MAXBSIZE / bsize) << IO_SEQSHIFT),
td->td_ucred, NOCRED, &resid, td);
+ VOP_UNLOCK(vp, 0);
+ after_read:
VFS_UNLOCK_GIANT(vfslocked);
VM_OBJECT_LOCK(obj);
vm_page_io_finish(pg);
@@ -2198,7 +2174,7 @@ retry_space:
m0 = m_get((mnw ? M_NOWAIT : M_WAITOK), MT_DATA);
if (m0 == NULL) {
error = (mnw ? EAGAIN : ENOBUFS);
- sf_buf_mext(NULL, sf);
+ sf_buf_mext((void *)sf_buf_kva(sf), sf);
break;
}
MEXTADD(m0, sf_buf_kva(sf), PAGE_SIZE, sf_buf_mext,
@@ -2226,8 +2202,6 @@ retry_space:
}
}
- VOP_UNLOCK(vp, 0);
-
/* Add the buffer chain to the socket buffer. */
if (m != NULL) {
int mlen, err;