From owner-cvs-src-old@FreeBSD.ORG Wed Mar 9 15:29:34 2011 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 D7FC21065675 for ; Wed, 9 Mar 2011 15:29:34 +0000 (UTC) (envelope-from jh@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id C5BEC8FC1C for ; Wed, 9 Mar 2011 15:29:34 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id p29FTYje095587 for ; Wed, 9 Mar 2011 15:29:34 GMT (envelope-from jh@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id p29FTYlT095586 for cvs-src-old@freebsd.org; Wed, 9 Mar 2011 15:29:34 GMT (envelope-from jh@repoman.freebsd.org) Message-Id: <201103091529.p29FTYlT095586@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to jh@repoman.freebsd.org using -f From: Jaakko Heinonen Date: Wed, 9 Mar 2011 15:27:11 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_8 Subject: cvs commit: src/share/man/man5 tmpfs.5 src/sys/fs/tmpfs tmpfs_vfsops.c 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: Wed, 09 Mar 2011 15:29:34 -0000 jh 2011-03-09 15:27:11 UTC FreeBSD src repository Modified files: (Branch: RELENG_8) share/man/man5 tmpfs.5 sys/fs/tmpfs tmpfs_vfsops.c Log: SVN rev 219429 on 2011-03-09 15:27:11Z by jh MFC r203164: Add "maxfilesize" mount option for tmpfs to allow specifying the maximum file size limit. Default is UINT64_MAX when the option is not specified. It was useless to set the limit to the total amount of memory and swap in the system. Use tmpfs_mem_info() rather than get_swpgtotal() in tmpfs_mount() to check if there is enough memory available. Remove now unused get_swpgtotal(). MFC r203169: Bump .Dd for r203164. Revision Changes Path 1.4.2.3 +3 -1 src/share/man/man5/tmpfs.5 1.21.2.3 +8 -57 src/sys/fs/tmpfs/tmpfs_vfsops.c