From owner-svn-src-head@FreeBSD.ORG Sat May 8 16:19:17 2010 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 84932106566C; Sat, 8 May 2010 16:19:17 +0000 (UTC) (envelope-from lulf@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [69.147.83.44]) by mx1.freebsd.org (Postfix) with ESMTP id 752FA8FC0C; Sat, 8 May 2010 16:19:17 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o48GJHnO065336; Sat, 8 May 2010 16:19:17 GMT (envelope-from lulf@svn.freebsd.org) Received: (from lulf@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o48GJHA2065334; Sat, 8 May 2010 16:19:17 GMT (envelope-from lulf@svn.freebsd.org) Message-Id: <201005081619.o48GJHA2065334@svn.freebsd.org> From: Ulf Lilleengen Date: Sat, 8 May 2010 16:19:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r207789 - head/sys/geom/vinum X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 May 2010 16:19:17 -0000 Author: lulf Date: Sat May 8 16:19:17 2010 New Revision: 207789 URL: http://svn.freebsd.org/changeset/base/207789 Log: - Remove obsolete flags. MFC after: 1 week Modified: head/sys/geom/vinum/geom_vinum_var.h Modified: head/sys/geom/vinum/geom_vinum_var.h ============================================================================== --- head/sys/geom/vinum/geom_vinum_var.h Sat May 8 16:10:54 2010 (r207788) +++ head/sys/geom/vinum/geom_vinum_var.h Sat May 8 16:19:17 2010 (r207789) @@ -335,9 +335,6 @@ struct gv_plex { int flags; #define GV_PLEX_ADDED 0x01 /* Added to an existing volume. */ #define GV_PLEX_SYNCING 0x02 /* Plex is syncing from another plex. */ -#define GV_PLEX_THREAD_ACTIVE 0x04 /* Plex has an active RAID5 thread. */ -#define GV_PLEX_THREAD_DIE 0x08 /* Signal the RAID5 thread to die. */ -#define GV_PLEX_THREAD_DEAD 0x10 /* The RAID5 thread has died. */ #define GV_PLEX_NEWBORN 0x20 /* The plex was just created. */ #define GV_PLEX_REBUILDING 0x40 /* The plex is rebuilding. */ #define GV_PLEX_GROWING 0x80 /* The plex is growing. */ @@ -371,9 +368,6 @@ struct gv_volume { #define GV_VOL_UP 1 int flags; -#define GV_VOL_THREAD_ACTIVE 0x01 /* Volume has an active thread. */ -#define GV_VOL_THREAD_DIE 0x02 /* Signal the thread to die. */ -#define GV_VOL_THREAD_DEAD 0x04 /* The thread has died. */ #define GV_VOL_NEWBORN 0x08 /* The volume was just created. */ LIST_HEAD(,gv_plex) plexes; /* List of attached plexes. */