From owner-cvs-src-old@FreeBSD.ORG Fri Feb 26 21:54:21 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 613BA106566C for ; Fri, 26 Feb 2010 21:54:21 +0000 (UTC) (envelope-from mckusick@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 4CDCE8FC12 for ; Fri, 26 Feb 2010 21:54:21 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o1QLsLhm032836 for ; Fri, 26 Feb 2010 21:54:21 GMT (envelope-from mckusick@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o1QLsLiM032835 for cvs-src-old@freebsd.org; Fri, 26 Feb 2010 21:54:21 GMT (envelope-from mckusick@repoman.freebsd.org) Message-Id: <201002262154.o1QLsLiM032835@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to mckusick@repoman.freebsd.org using -f From: Kirk McKusick Date: Fri, 26 Feb 2010 21:49:11 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/lib/libufs cgroup.c sblock.c src/sbin/growfs growfs.c src/sbin/newfs mkfs.c newfs.c newfs.h src/sbin/tunefs tunefs.c src/sys/ufs/ffs ffs_alloc.c fs.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Feb 2010 21:54:21 -0000 mckusick 2010-02-26 21:49:11 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) lib/libufs cgroup.c sblock.c sbin/growfs growfs.c sbin/newfs mkfs.c newfs.c newfs.h sbin/tunefs tunefs.c sys/ufs/ffs ffs_alloc.c fs.h Log: SVN rev 204375 on 2010-02-26 21:49:11Z by mckusick MFC of 203763, 203764, 203768, 203769, 203770, 203782, and 203784. These fixes correct a problem in the file system that treats large inode numbers as negative rather than unsigned. For a default (16K block) file system, this bug began to show up at a file system size above about 16Tb. These fixes also update newfs to ensure that it will never create a filesystem with more than 2^32 inodes. They also update libufs, tunefs, and growfs so that they properly handle inode numbers as unsigned. Reported by: Scott Burns, John Kilburg, and Bruce Evans Followup by: Jeff Roberson PR: 133980 Revision Changes Path 1.4.10.2 +1 -1 src/lib/libufs/cgroup.c 1.10.32.2 +1 -1 src/lib/libufs/sblock.c 1.26.2.3 +8 -8 src/sbin/growfs/growfs.c 1.97.2.2 +48 -11 src/sbin/newfs/mkfs.c 1.88.2.3 +0 -46 src/sbin/newfs/newfs.c 1.21.2.2 +32 -0 src/sbin/newfs/newfs.h 1.43.10.2 +2 -2 src/sbin/tunefs/tunefs.c 1.153.2.3 +38 -32 src/sys/ufs/ffs/ffs_alloc.c 1.50.2.2 +26 -26 src/sys/ufs/ffs/fs.h