From owner-freebsd-current@FreeBSD.ORG Wed Dec 9 00:05:48 2009 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 90E431065672 for ; Wed, 9 Dec 2009 00:05:48 +0000 (UTC) (envelope-from wollman@hergotha.csail.mit.edu) Received: from hergotha.csail.mit.edu (hergotha.csail.mit.edu [66.92.79.170]) by mx1.freebsd.org (Postfix) with ESMTP id 434C38FC08 for ; Wed, 9 Dec 2009 00:05:47 +0000 (UTC) Received: from hergotha.csail.mit.edu (localhost [127.0.0.1]) by hergotha.csail.mit.edu (8.14.3/8.14.3) with ESMTP id nB905kQ0090954; Tue, 8 Dec 2009 19:05:46 -0500 (EST) (envelope-from wollman@hergotha.csail.mit.edu) Received: (from wollman@localhost) by hergotha.csail.mit.edu (8.14.3/8.14.3/Submit) id nB905kLg090953; Tue, 8 Dec 2009 19:05:46 -0500 (EST) (envelope-from wollman) Date: Tue, 8 Dec 2009 19:05:46 -0500 (EST) From: Garrett Wollman Message-Id: <200912090005.nB905kLg090953@hergotha.csail.mit.edu> To: alexbestms@wwu.de In-Reply-To: Organization: None X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (hergotha.csail.mit.edu [127.0.0.1]); Tue, 08 Dec 2009 19:05:46 -0500 (EST) X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=disabled version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on hergotha.csail.mit.edu X-Mailman-Approved-At: Wed, 09 Dec 2009 00:20:56 +0000 Cc: current@freebsd.org Subject: glabel and ISO 9660 (was: Re: Testing CAM wrapper for ata(4) controller drivers) 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: Wed, 09 Dec 2009 00:05:48 -0000 In article , alexbestms@wwu.de writes: >removing a cd/dvd and inserting a new one doesn't update the label in >/dev/iso9660. > >`file -s /dev/iso9660/CD1` says: >/dev/iso9660/CD1: ISO 9660 CD-ROM filesystem data 'CD2 >' That's always been true. glabel only notices a changed label on taste events, and those only happen when the underlying provider is either initialized for the first time, or closed after being open for write. As root, you can force a retaste with : 3>/dev/acd0 (That's the ':' command, not punctuation. Any command would do.) -GAWollman