From owner-cvs-all@FreeBSD.ORG Mon Feb 28 16:19:18 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 4D89B16A534; Mon, 28 Feb 2005 16:19:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00D7043D4C; Mon, 28 Feb 2005 16:19: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 j1SGJH0N036666; Mon, 28 Feb 2005 16:19:17 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j1SGJHDP036665; Mon, 28 Feb 2005 16:19:17 GMT (envelope-from delphij) Message-Id: <200502281619.j1SGJHDP036665@repoman.freebsd.org> From: Xin LI Date: Mon, 28 Feb 2005 16:19:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5 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: Mon, 28 Feb 2005 16:19:18 -0000 delphij 2005-02-28 16:19:17 UTC FreeBSD src repository Modified files: (Branch: RELENG_5) sbin/newfs mkfs.c Log: MFC revision 1.88/1.89 [newfs safebelt for snapshot] date: 2005/02/20 11:32:49; author: delphij; state: Exp; lines: +0 -0 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 snapshot on large file systems with small block sizes. Add a warning about this, and gives some hints to correct the issue. Reviewed by: mckusick Revision Changes Path 1.85.2.2 +10 -0 src/sbin/newfs/mkfs.c