From owner-svn-src-all@FreeBSD.ORG Thu Oct 25 18:46:02 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A6D17372; Thu, 25 Oct 2012 18:46:02 +0000 (UTC) (envelope-from peter@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 8C0EA8FC08; Thu, 25 Oct 2012 18:46:02 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9PIk2Jo022399; Thu, 25 Oct 2012 18:46:02 GMT (envelope-from peter@svn.freebsd.org) Received: (from peter@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9PIk2Mp022397; Thu, 25 Oct 2012 18:46:02 GMT (envelope-from peter@svn.freebsd.org) Message-Id: <201210251846.q9PIk2Mp022397@svn.freebsd.org> From: Peter Wemm Date: Thu, 25 Oct 2012 18:46:02 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r242089 - head/sys/dev/ciss X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 Oct 2012 18:46:02 -0000 Author: peter Date: Thu Oct 25 18:46:02 2012 New Revision: 242089 URL: http://svn.freebsd.org/changeset/base/242089 Log: Increase the driver-side limit on the number of logical volumes that the driver will recognize. I've tested this as far as 25 volumes. Modified: head/sys/dev/ciss/cissvar.h Modified: head/sys/dev/ciss/cissvar.h ============================================================================== --- head/sys/dev/ciss/cissvar.h Thu Oct 25 18:39:09 2012 (r242088) +++ head/sys/dev/ciss/cissvar.h Thu Oct 25 18:46:02 2012 (r242089) @@ -46,7 +46,7 @@ typedef STAILQ_HEAD(, ciss_request) cr_q /* * Maximum number of logical drives we support. */ -#define CISS_MAX_LOGICAL 15 +#define CISS_MAX_LOGICAL 63 /* * Maximum number of physical devices we support.