From owner-cvs-all Tue Mar 14 6:19:54 2000 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 27F6837B797; Tue, 14 Mar 2000 06:19:52 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: (from bde@localhost) by freefall.freebsd.org (8.9.3/8.9.2) id GAA94617; Tue, 14 Mar 2000 06:19:51 -0800 (PST) (envelope-from bde@FreeBSD.org) Message-Id: <200003141419.GAA94617@freefall.freebsd.org> From: Bruce Evans Date: Tue, 14 Mar 2000 06:19:51 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_subr.c Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG bde 2000/03/14 06:19:51 PST Modified files: sys/kern vfs_subr.c Log: Don't try so hard to make the lower 16 bits of fsids unique. It tended to recycle full fsids after only 16 mount/unmount's. This is probably too often for exported fsids. Now we recycle the full fsids only after 2^16 mount/ umount's and only ensure uniqueness in the lower 16 bits if there have been <= 256 calls to vfs_getnewfsid() since the system started. Revision Changes Path 1.250 +14 -23 src/sys/kern/vfs_subr.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message