From owner-freebsd-fs@freebsd.org Sat Aug 18 02:15:19 2018 Return-Path: Delivered-To: freebsd-fs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 005401083047 for ; Sat, 18 Aug 2018 02:15:18 +0000 (UTC) (envelope-from ish@amail.plala.or.jp) Received: from msc11.plala.or.jp (msc11.plala.or.jp [60.36.166.21]) by mx1.freebsd.org (Postfix) with ESMTP id 181807D1DA for ; Sat, 18 Aug 2018 02:15:17 +0000 (UTC) (envelope-from ish@amail.plala.or.jp) Received: from localhost ([2400:4050:9320:7a00::8]) by msc11.plala.or.jp with ESMTP id <20180818021515.XHX21585.msc11.plala.or.jp@localhost> for ; Sat, 18 Aug 2018 11:15:15 +0900 Date: Sat, 18 Aug 2018 11:15:05 +0900 (JST) Message-Id: <20180818.111505.1381165776765613085.ish@amail.plala.or.jp> To: freebsd-fs@freebsd.org Subject: Re: How to mount ISO-9660 multi-extents blu-ray disc From: Masachika ISHIZUKA In-Reply-To: References: <20180817.172713.1462611697013497228.ish@amail.plala.or.jp> X-Mailer: Mew version 6.8 on Emacs 26.1 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-VirusScan: Outbound; mvir-ac11; Sat, 18 Aug 2018 11:15:15 +0900 X-BeenThere: freebsd-fs@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: Filesystems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 18 Aug 2018 02:15:19 -0000 > In particular it appears that our vget routine needs to check the > directory entry flags for the 7th bit (0x80)[1], which "if set, this > is not the final directory record for this file" and the remaining > records describe the additional extents. We likely need to modify the > read path to support such multi-extent files as well. > > I guess we also already have an open PR for it, 95222, if you are > interested in CC'ing there. Thank you for reply. I found that it can be mounted correctly by mount_udf as follow. freebsd# mount_udf -C UTF-8 /dev/cd0 /cdrom freebsd# ls -l /cdrom/test total 5242880 -r--r--r-- 1 root wheel 5368709120 Aug 17 16:58 test5g I'm verified that 33gb movie file on BD-R DL is accessable correctly. -- Masachika ISHIZUKA