From owner-freebsd-hackers Fri Oct 1 10:11:16 1999 Delivered-To: freebsd-hackers@freebsd.org Received: from postal1.lbl.gov (postal1.lbl.gov [128.3.7.82]) by hub.freebsd.org (Postfix) with ESMTP id AD08215A9D for ; Fri, 1 Oct 1999 10:10:25 -0700 (PDT) (envelope-from jin@george.lbl.gov) Received: from SpamWall.lbl.gov (localhost [127.0.0.1]) by postal1.lbl.gov (8.9.3/8.9.3) with ESMTP id KAA09430 for ; Fri, 1 Oct 1999 10:10:24 -0700 (PDT) From: jin@george.lbl.gov Received: from george.lbl.gov (george.lbl.gov [131.243.2.12]) by SpamWall.lbl.gov (8.9.3/8.9.3) with ESMTP id KAA09416 for ; Fri, 1 Oct 1999 10:10:23 -0700 (PDT) Received: (from jin@localhost) by george.lbl.gov (8.9.1b+Sun/8.9.1) id KAA18313 for hackers@freebsd.org; Fri, 1 Oct 1999 10:10:23 -0700 (PDT) Date: Fri, 1 Oct 1999 10:10:23 -0700 (PDT) Message-Id: <199910011710.KAA18313@george.lbl.gov> To: hackers@freebsd.org Subject: SCSI disk naming problem Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Current FreeBSD SCSi disk naming mechanism is problem for using more than one disks in the chain during the disk failure. The problem is that the name is not fixed with is SCSI ID. e.g., if one disk is presented in the chain, regardless its SCSI ID, it is always named "da0"; if two disks are installed, the one with lower ID is named da0 and the other will be named as da1. When the lower ID one is crashed, then the other disk will be named as da0 (from da1) after reboot, and it is not mountable due to the name changing. If a system has a UW SCSI controller with 15 disks in the chain, when the first disk (ID = 0) crashed, all rest 14 disks will be useless until either fstab modified or another disk is added with SCSI ID = 0. Why not we use a fixed name corresponding the SCSI ID. That is, disk with ID 0 will be always named as da0, and disk with ID 1 will be always named da1, etc.? Is there problem with fixed disk naming mechanism? -Jin To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message