svn commit: r258812 - head/sys/kern

Gleb Smirnoff glebius at FreeBSD.org
Sun Dec 1 20:03:01 UTC 2013


Author: glebius
Date: Sun Dec  1 20:03:00 2013
New Revision: 258812
URL: http://svnweb.freebsd.org/changeset/base/258812

Log:
  Remove unused variable.

Modified:
  head/sys/kern/uipc_syscalls.c

Modified: head/sys/kern/uipc_syscalls.c
==============================================================================
--- head/sys/kern/uipc_syscalls.c	Sun Dec  1 19:59:36 2013	(r258811)
+++ head/sys/kern/uipc_syscalls.c	Sun Dec  1 20:03:00 2013	(r258812)
@@ -2288,7 +2288,6 @@ vn_sendfile(struct file *fp, int sockfd,
 	struct vattr va;
 	off_t off, xfsize, fsbytes, sbytes, rem, obj_size;
 	int error, bsize, nd, hdrlen, mnw;
-	bool inflight_called;
 
 	pg = NULL;
 	obj = NULL;
@@ -2298,7 +2297,6 @@ vn_sendfile(struct file *fp, int sockfd,
 	hdrlen = mnw = 0;
 	rem = nbytes;
 	obj_size = 0;
-	inflight_called = false;
 
 	error = sendfile_getobj(td, fp, &obj, &vp, &shmfd, &obj_size, &bsize);
 	if (error != 0)


More information about the svn-src-head mailing list