From owner-cvs-all@FreeBSD.ORG Sun Feb 20 06:33:19 2005 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2593C16A4CE; Sun, 20 Feb 2005 06:33:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9EE043D54; Sun, 20 Feb 2005 06:33:18 +0000 (GMT) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j1K6XI9L099646; Sun, 20 Feb 2005 06:33:18 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j1K6XIQW099645; Sun, 20 Feb 2005 06:33:18 GMT (envelope-from delphij) Message-Id: <200502200633.j1K6XIQW099645@repoman.freebsd.org> From: Xin LI Date: Sun, 20 Feb 2005 06:33:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/newfs mkfs.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Feb 2005 06:33:19 -0000 delphij 2005-02-20 06:33:18 UTC FreeBSD src repository Modified files: sbin/newfs mkfs.c Log: When creating a new FFS file system, the block size will indirectly affect the largest file size that is allowed by the file system. On the other hand, when creating a snapshot, the snapshot file will appear as it is as big as the file system itself. Hence we will not be able to create a file system on large file systems with small block sizes. Add a warning about this, and gives some hints to correct the issue. Reviewed by: mckusick MFC After: 1 week Revision Changes Path 1.88 +10 -0 src/sbin/newfs/mkfs.c