From owner-cvs-all@FreeBSD.ORG Sun Sep 5 11:18:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB91F16A4CF; Sun, 5 Sep 2004 11:18:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACCB143D55; Sun, 5 Sep 2004 11:18:53 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i85BIrRo024472; Sun, 5 Sep 2004 11:18:53 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i85BIrIB024471; Sun, 5 Sep 2004 11:18:53 GMT (envelope-from tjr) Message-Id: <200409051118.i85BIrIB024471@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sun, 5 Sep 2004 11:18:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/isofs/cd9660 cd9660_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Sep 2004 11:18:54 -0000 tjr 2004-09-05 11:18:53 UTC FreeBSD src repository Modified files: sys/isofs/cd9660 cd9660_vnops.c Log: Temporarily back out revision 1.77. This changed cd9660_getattr() and cd9660_readdir() to return the address of the file's first data block as the inode number instead of the address of the directory entry, but neglected to update cd9660_vget_internal() for the new inode numbering scheme. Since the NFS server calls VFS_VGET (cd9660_vget()) with inode numbers returned through VOP_READDIR (cd9660_readdir()) when servicing a READDIRPLUS request, these two interfaces must agree on the numbering scheme; failure to do so caused panics and/or bogus information about the entries to be returned to clients using READDIRPLUS (Solaris, FreeBSD w/ mount -o rdirplus). PR: 63446 Revision Changes Path 1.99 +6 -14 src/sys/isofs/cd9660/cd9660_vnops.c