Date: Fri, 3 Aug 2007 18:30:35 GMT From: Ulf Lilleengen <lulf@FreeBSD.org> To: Perforce Change Reviews <perforce@FreeBSD.org> Subject: PERFORCE change 124606 for review Message-ID: <200708031830.l73IUZ1i055914@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=124606 Change 124606 by lulf@lulf_carrot on 2007/08/03 18:29:59 - Remove unused header includes. Affected files ... .. //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum.c#32 edit .. //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_create.c#6 edit .. //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_drive.c#3 edit .. //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_events.c#10 edit .. //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_init.c#20 edit .. //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_list.c#3 edit .. //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_move.c#5 edit .. //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_plex.c#23 edit .. //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_raid5.c#13 edit .. //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_rename.c#4 edit .. //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_rm.c#12 edit .. //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_share.c#5 edit .. //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_state.c#20 edit .. //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_subr.c#25 edit .. //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_volume.c#15 edit Differences ... ==== //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum.c#32 (text+ko) ==== @@ -42,7 +42,6 @@ #include <geom/geom.h> #include <geom/vinum/geom_vinum_var.h> #include <geom/vinum/geom_vinum.h> -#include <geom/vinum/geom_vinum_share.h> #if 0 SYSCTL_DECL(_kern_geom); ==== //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_create.c#6 (text+ko) ==== @@ -30,15 +30,12 @@ #include <sys/bio.h> #include <sys/conf.h> #include <sys/kernel.h> -#include <sys/libkern.h> #include <sys/malloc.h> #include <sys/systm.h> #include <geom/geom.h> -#include <geom/geom_int.h> #include <geom/vinum/geom_vinum_var.h> #include <geom/vinum/geom_vinum.h> -#include <geom/vinum/geom_vinum_share.h> /* * Create a new drive object, either by user request, during taste of the drive ==== //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_drive.c#3 (text+ko) ==== @@ -28,22 +28,13 @@ __FBSDID("$FreeBSD: src/sys/geom/vinum/geom_vinum_drive.c,v 1.25 2006/01/06 18:03:17 le Exp $"); #include <sys/param.h> -#include <sys/bio.h> -#include <sys/errno.h> -#include <sys/conf.h> -#include <sys/kernel.h> -#include <sys/libkern.h> #include <sys/lock.h> #include <sys/malloc.h> -#include <sys/mutex.h> -#include <sys/sbuf.h> #include <sys/systm.h> -#include <sys/time.h> #include <geom/geom.h> #include <geom/vinum/geom_vinum_var.h> #include <geom/vinum/geom_vinum.h> -#include <geom/vinum/geom_vinum_share.h> /* Save the vinum configuration back to each involved disk. */ void ==== //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_events.c#10 (text+ko) ==== @@ -29,17 +29,13 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> -#include <sys/bio.h> -#include <sys/kernel.h> #include <sys/lock.h> #include <sys/malloc.h> -#include <sys/mutex.h> #include <sys/systm.h> #include <geom/geom.h> #include <geom/vinum/geom_vinum_var.h> #include <geom/vinum/geom_vinum.h> -#include <geom/vinum/geom_vinum_share.h> void gv_post_event(struct gv_softc *sc, int event, void *arg1, void *arg2, ==== //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_init.c#20 (text+ko) ==== @@ -29,16 +29,12 @@ __FBSDID("$FreeBSD: src/sys/geom/vinum/geom_vinum_init.c,v 1.11 2005/08/28 18:16:31 le Exp $"); #include <sys/param.h> #include <sys/bio.h> -#include <sys/kernel.h> -#include <sys/kthread.h> #include <sys/libkern.h> #include <sys/malloc.h> -#include <sys/queue.h> #include <geom/geom.h> #include <geom/vinum/geom_vinum_var.h> #include <geom/vinum/geom_vinum.h> -#include <geom/vinum/geom_vinum_share.h> static int gv_sync(struct gv_volume *); static int gv_rebuild_plex(struct gv_plex *); ==== //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_list.c#3 (text+ko) ==== @@ -28,7 +28,6 @@ #include <sys/cdefs.h> __FBSDID("$FreeBSD: src/sys/geom/vinum/geom_vinum_list.c,v 1.3 2005/01/06 18:27:30 imp Exp $"); -#include <sys/param.h> #include <sys/libkern.h> #include <sys/malloc.h> ==== //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_move.c#5 (text+ko) ==== @@ -32,16 +32,12 @@ #include <sys/cdefs.h> __FBSDID("$FreeBSD: src/sys/geom/vinum/geom_vinum_move.c,v 1.3 2006/02/08 21:32:45 le Exp $"); -#include <sys/param.h> #include <sys/libkern.h> -#include <sys/kernel.h> #include <sys/malloc.h> #include <geom/geom.h> #include <geom/vinum/geom_vinum_var.h> #include <geom/vinum/geom_vinum.h> -#include <geom/vinum/geom_vinum_share.h> - void gv_move(struct g_geom *gp, struct gctl_req *req) ==== //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_plex.c#23 (text+ko) ==== @@ -30,11 +30,8 @@ #include <sys/param.h> #include <sys/bio.h> -#include <sys/kernel.h> -#include <sys/libkern.h> #include <sys/lock.h> #include <sys/malloc.h> -#include <sys/mutex.h> #include <sys/systm.h> #include <geom/geom.h> ==== //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_raid5.c#13 (text+ko) ==== @@ -29,13 +29,8 @@ #include <sys/param.h> #include <sys/bio.h> -#include <sys/conf.h> -#include <sys/errno.h> -#include <sys/kernel.h> -#include <sys/libkern.h> #include <sys/lock.h> #include <sys/malloc.h> -#include <sys/mutex.h> #include <sys/systm.h> #include <geom/geom.h> ==== //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_rename.c#4 (text+ko) ==== @@ -34,13 +34,11 @@ #include <sys/param.h> #include <sys/libkern.h> -#include <sys/kernel.h> #include <sys/malloc.h> #include <geom/geom.h> #include <geom/vinum/geom_vinum_var.h> #include <geom/vinum/geom_vinum.h> -#include <geom/vinum/geom_vinum_share.h> void gv_rename(struct g_geom *gp, struct gctl_req *req) ==== //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_rm.c#12 (text+ko) ==== @@ -30,13 +30,11 @@ #include <sys/param.h> #include <sys/libkern.h> -#include <sys/kernel.h> #include <sys/malloc.h> #include <geom/geom.h> #include <geom/vinum/geom_vinum_var.h> #include <geom/vinum/geom_vinum.h> -#include <geom/vinum/geom_vinum_share.h> /* General 'remove' routine. */ void ==== //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_share.c#5 (text+ko) ==== @@ -45,9 +45,6 @@ #include <sys/param.h> #ifdef _KERNEL -#include <sys/bio.h> -#include <sys/conf.h> -#include <sys/kernel.h> #include <sys/malloc.h> #include <sys/systm.h> @@ -62,7 +59,6 @@ #define g_free free #endif /* _KERNEL */ -#include <sys/lock.h> #include <sys/mutex.h> #include <sys/queue.h> ==== //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_state.c#20 (text+ko) ==== @@ -27,8 +27,6 @@ #include <sys/cdefs.h> __FBSDID("$FreeBSD: src/sys/geom/vinum/geom_vinum_state.c,v 1.8 2006/03/30 14:01:25 le Exp $"); -#include <sys/param.h> -#include <sys/kernel.h> #include <sys/libkern.h> #include <sys/malloc.h> ==== //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_subr.c#25 (text+ko) ==== @@ -43,15 +43,10 @@ __FBSDID("$FreeBSD: src/sys/geom/vinum/geom_vinum_subr.c,v 1.16 2007/04/12 17:54:35 le Exp $"); #include <sys/param.h> -#include <sys/bio.h> -#include <sys/conf.h> -#include <sys/kernel.h> -#include <sys/libkern.h> #include <sys/malloc.h> #include <sys/systm.h> #include <geom/geom.h> -#include <geom/geom_int.h> #include <geom/vinum/geom_vinum_var.h> #include <geom/vinum/geom_vinum.h> #include <geom/vinum/geom_vinum_share.h> ==== //depot/projects/soc2007/lulf/gvinum_fixup/sys/geom/vinum/geom_vinum_volume.c#15 (text+ko) ==== @@ -29,12 +29,8 @@ #include <sys/param.h> #include <sys/bio.h> -#include <sys/conf.h> -#include <sys/kernel.h> -#include <sys/libkern.h> #include <sys/lock.h> #include <sys/malloc.h> -#include <sys/mutex.h> #include <sys/systm.h> #include <geom/geom.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200708031830.l73IUZ1i055914>