From owner-freebsd-current@FreeBSD.ORG Mon Feb 20 13:27:19 2012 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0CAD0106566B; Mon, 20 Feb 2012 13:27:19 +0000 (UTC) (envelope-from vermaden@interia.pl) Received: from smtpo.poczta.interia.pl (smtpo.poczta.interia.pl [217.74.65.207]) by mx1.freebsd.org (Postfix) with ESMTP id B8B308FC17; Mon, 20 Feb 2012 13:27:18 +0000 (UTC) Date: Mon, 20 Feb 2012 14:27:17 +0100 From: vermaden To: freebsd-hackers@freebsd.org X-Mailer: interia.pl/pf09 In-Reply-To: References: <4F3EE186.4020801@gmail.com> <201202181409.08859.hselasky@c2i.net> X-Originating-IP: 194.0.181.128 Message-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=interia.pl; s=biztos; t=1329744437; bh=eGPVCiTg2TrYYocs0g18zqWUvpG1TOTXPQw7BC0c598=; h=Date:From:Subject:To:Cc:X-Mailer:In-Reply-To:References: X-Originating-IP:Message-Id:MIME-Version:Content-Type: Content-Transfer-Encoding; b=k+vRDkwAFtNmVAwhkRuKIUi1g1yI6Zf4we4zLt71I+NvqFBjXUMiaZXyW73QxyqeY oFLj8mv30VMQIJtkD45DADDpCUXzOEaZQ1IwtAQ2S4Iivp8WdTYv29BI5hHj3qjhvN OwHOwDk2VUSMpC705elVU8Xkgit8gi6kJkXn023Q= X-Mailman-Approved-At: Mon, 20 Feb 2012 13:39:25 +0000 Cc: freebsd-current@freebsd.org, freebsd-stable@freebsd.org Subject: Re: devd based AUTOMOUNTER X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Feb 2012 13:27:19 -0000 written by ${ME} ... > First BUG: (not fixed yet, but workaround already is working) >=20 > TEST/BUG/CASE: > Plug in FAT32 and NTFS drives at the same time, when FAT32 device > will be detected first, it will get mounted and the NTFS drive will be > mounted TWICE, so I added > __check_already_mounted function > to check if it is not already mounted. This BUG is fixed, I was in wrong assumption, that the script would be only executed for /dev/da0 but it was executed for every device/partition node that appeared separately, like /dev/da0, /dev/da0s1, /dev/da0s2 etc. Currently there is no knows bugs, but the prepared earlier 'workaround functions' remain just in case. As I written before its now available here: https://github.com/vermaden/automount Regards, vermaden ---