Date: Mon, 11 Jul 2011 05:22:31 +0000 (UTC) From: "Andrey V. Elsukov" <ae@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r223921 - in head/sys/geom: . cache concat eli gate label mirror mountver multipath nop raid raid3 sched shsec stripe vinum virstor Message-ID: <201107110522.p6B5MVBR076978@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ae Date: Mon Jul 11 05:22:31 2011 New Revision: 223921 URL: http://svn.freebsd.org/changeset/base/223921 Log: Include sys/sbuf.h directly. Reviewed by: pjd Modified: head/sys/geom/cache/g_cache.c head/sys/geom/concat/g_concat.c head/sys/geom/eli/g_eli.c head/sys/geom/gate/g_gate.c head/sys/geom/geom_bsd.c head/sys/geom/geom_ccd.c head/sys/geom/geom_disk.c head/sys/geom/geom_pc98.c head/sys/geom/geom_sunlabel.c head/sys/geom/label/g_label_gpt.c head/sys/geom/mirror/g_mirror.c head/sys/geom/mountver/g_mountver.c head/sys/geom/multipath/g_multipath.c head/sys/geom/nop/g_nop.c head/sys/geom/raid/g_raid.c head/sys/geom/raid3/g_raid3.c head/sys/geom/sched/g_sched.c head/sys/geom/sched/gs_rr.c head/sys/geom/shsec/g_shsec.c head/sys/geom/stripe/g_stripe.c head/sys/geom/vinum/geom_vinum.c head/sys/geom/vinum/geom_vinum_drive.c head/sys/geom/vinum/geom_vinum_list.c head/sys/geom/vinum/geom_vinum_subr.c head/sys/geom/virstor/g_virstor.c Modified: head/sys/geom/cache/g_cache.c ============================================================================== --- head/sys/geom/cache/g_cache.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/cache/g_cache.c Mon Jul 11 05:22:31 2011 (r223921) @@ -37,6 +37,7 @@ __FBSDID("$FreeBSD$"); #include <sys/sysctl.h> #include <sys/malloc.h> #include <sys/queue.h> +#include <sys/sbuf.h> #include <sys/time.h> #include <vm/uma.h> #include <geom/geom.h> Modified: head/sys/geom/concat/g_concat.c ============================================================================== --- head/sys/geom/concat/g_concat.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/concat/g_concat.c Mon Jul 11 05:22:31 2011 (r223921) @@ -34,6 +34,7 @@ __FBSDID("$FreeBSD$"); #include <sys/lock.h> #include <sys/mutex.h> #include <sys/bio.h> +#include <sys/sbuf.h> #include <sys/sysctl.h> #include <sys/malloc.h> #include <geom/geom.h> Modified: head/sys/geom/eli/g_eli.c ============================================================================== --- head/sys/geom/eli/g_eli.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/eli/g_eli.c Mon Jul 11 05:22:31 2011 (r223921) @@ -35,6 +35,7 @@ __FBSDID("$FreeBSD$"); #include <sys/lock.h> #include <sys/mutex.h> #include <sys/bio.h> +#include <sys/sbuf.h> #include <sys/sysctl.h> #include <sys/malloc.h> #include <sys/eventhandler.h> Modified: head/sys/geom/gate/g_gate.c ============================================================================== --- head/sys/geom/gate/g_gate.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/gate/g_gate.c Mon Jul 11 05:22:31 2011 (r223921) @@ -45,6 +45,7 @@ __FBSDID("$FreeBSD$"); #include <sys/proc.h> #include <sys/limits.h> #include <sys/queue.h> +#include <sys/sbuf.h> #include <sys/sysctl.h> #include <sys/signalvar.h> #include <sys/time.h> Modified: head/sys/geom/geom_bsd.c ============================================================================== --- head/sys/geom/geom_bsd.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/geom_bsd.c Mon Jul 11 05:22:31 2011 (r223921) @@ -57,6 +57,7 @@ __FBSDID("$FreeBSD$"); #include <sys/errno.h> #include <sys/disklabel.h> #include <sys/gpt.h> +#include <sys/sbuf.h> #include <sys/uuid.h> #include <geom/geom.h> #include <geom/geom_slice.h> Modified: head/sys/geom/geom_ccd.c ============================================================================== --- head/sys/geom/geom_ccd.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/geom_ccd.c Mon Jul 11 05:22:31 2011 (r223921) @@ -58,6 +58,7 @@ __FBSDID("$FreeBSD$"); #include <sys/module.h> #include <sys/bio.h> #include <sys/malloc.h> +#include <sys/sbuf.h> #include <geom/geom.h> /* Modified: head/sys/geom/geom_disk.c ============================================================================== --- head/sys/geom/geom_disk.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/geom_disk.c Mon Jul 11 05:22:31 2011 (r223921) @@ -46,6 +46,7 @@ __FBSDID("$FreeBSD$"); #include <sys/ctype.h> #include <sys/fcntl.h> #include <sys/malloc.h> +#include <sys/sbuf.h> #include <sys/sysctl.h> #include <sys/devicestat.h> #include <machine/md_var.h> Modified: head/sys/geom/geom_pc98.c ============================================================================== --- head/sys/geom/geom_pc98.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/geom_pc98.c Mon Jul 11 05:22:31 2011 (r223921) @@ -43,6 +43,7 @@ __FBSDID("$FreeBSD$"); #include <sys/bio.h> #include <sys/lock.h> #include <sys/mutex.h> +#include <sys/sbuf.h> #include <sys/diskpc98.h> #include <geom/geom.h> Modified: head/sys/geom/geom_sunlabel.c ============================================================================== --- head/sys/geom/geom_sunlabel.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/geom_sunlabel.c Mon Jul 11 05:22:31 2011 (r223921) @@ -47,6 +47,7 @@ __FBSDID("$FreeBSD$"); #include <sys/lock.h> #include <sys/mutex.h> #include <sys/md5.h> +#include <sys/sbuf.h> #include <sys/sun_disklabel.h> #include <geom/geom.h> #include <geom/geom_slice.h> Modified: head/sys/geom/label/g_label_gpt.c ============================================================================== --- head/sys/geom/label/g_label_gpt.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/label/g_label_gpt.c Mon Jul 11 05:22:31 2011 (r223921) @@ -33,6 +33,7 @@ __FBSDID("$FreeBSD$"); #include <sys/malloc.h> #include <sys/kobj.h> #include <sys/gpt.h> +#include <sys/sbuf.h> #include <geom/geom.h> #include <geom/label/g_label.h> Modified: head/sys/geom/mirror/g_mirror.c ============================================================================== --- head/sys/geom/mirror/g_mirror.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/mirror/g_mirror.c Mon Jul 11 05:22:31 2011 (r223921) @@ -35,6 +35,7 @@ __FBSDID("$FreeBSD$"); #include <sys/lock.h> #include <sys/mutex.h> #include <sys/bio.h> +#include <sys/sbuf.h> #include <sys/sysctl.h> #include <sys/malloc.h> #include <sys/eventhandler.h> Modified: head/sys/geom/mountver/g_mountver.c ============================================================================== --- head/sys/geom/mountver/g_mountver.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/mountver/g_mountver.c Mon Jul 11 05:22:31 2011 (r223921) @@ -36,6 +36,7 @@ __FBSDID("$FreeBSD$"); #include <sys/mutex.h> #include <sys/bio.h> #include <sys/disk.h> +#include <sys/sbuf.h> #include <sys/sysctl.h> #include <sys/malloc.h> #include <sys/eventhandler.h> Modified: head/sys/geom/multipath/g_multipath.c ============================================================================== --- head/sys/geom/multipath/g_multipath.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/multipath/g_multipath.c Mon Jul 11 05:22:31 2011 (r223921) @@ -38,6 +38,7 @@ __FBSDID("$FreeBSD$"); #include <sys/lock.h> #include <sys/mutex.h> #include <sys/bio.h> +#include <sys/sbuf.h> #include <sys/sysctl.h> #include <sys/kthread.h> #include <sys/malloc.h> Modified: head/sys/geom/nop/g_nop.c ============================================================================== --- head/sys/geom/nop/g_nop.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/nop/g_nop.c Mon Jul 11 05:22:31 2011 (r223921) @@ -34,6 +34,7 @@ __FBSDID("$FreeBSD$"); #include <sys/lock.h> #include <sys/mutex.h> #include <sys/bio.h> +#include <sys/sbuf.h> #include <sys/sysctl.h> #include <sys/malloc.h> #include <geom/geom.h> Modified: head/sys/geom/raid/g_raid.c ============================================================================== --- head/sys/geom/raid/g_raid.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/raid/g_raid.c Mon Jul 11 05:22:31 2011 (r223921) @@ -35,6 +35,7 @@ __FBSDID("$FreeBSD$"); #include <sys/lock.h> #include <sys/mutex.h> #include <sys/bio.h> +#include <sys/sbuf.h> #include <sys/sysctl.h> #include <sys/malloc.h> #include <sys/eventhandler.h> Modified: head/sys/geom/raid3/g_raid3.c ============================================================================== --- head/sys/geom/raid3/g_raid3.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/raid3/g_raid3.c Mon Jul 11 05:22:31 2011 (r223921) @@ -35,6 +35,7 @@ __FBSDID("$FreeBSD$"); #include <sys/lock.h> #include <sys/mutex.h> #include <sys/bio.h> +#include <sys/sbuf.h> #include <sys/sysctl.h> #include <sys/malloc.h> #include <sys/eventhandler.h> Modified: head/sys/geom/sched/g_sched.c ============================================================================== --- head/sys/geom/sched/g_sched.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/sched/g_sched.c Mon Jul 11 05:22:31 2011 (r223921) @@ -111,6 +111,7 @@ #include <sys/bio.h> #include <sys/limits.h> #include <sys/hash.h> +#include <sys/sbuf.h> #include <sys/sysctl.h> #include <sys/malloc.h> #include <sys/proc.h> /* we access curthread */ Modified: head/sys/geom/sched/gs_rr.c ============================================================================== --- head/sys/geom/sched/gs_rr.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/sched/gs_rr.c Mon Jul 11 05:22:31 2011 (r223921) @@ -59,6 +59,7 @@ #include <sys/module.h> #include <sys/proc.h> #include <sys/queue.h> +#include <sys/sbuf.h> #include <sys/sysctl.h> #include "gs_scheduler.h" Modified: head/sys/geom/shsec/g_shsec.c ============================================================================== --- head/sys/geom/shsec/g_shsec.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/shsec/g_shsec.c Mon Jul 11 05:22:31 2011 (r223921) @@ -34,6 +34,7 @@ __FBSDID("$FreeBSD$"); #include <sys/lock.h> #include <sys/mutex.h> #include <sys/bio.h> +#include <sys/sbuf.h> #include <sys/sysctl.h> #include <sys/malloc.h> #include <vm/uma.h> Modified: head/sys/geom/stripe/g_stripe.c ============================================================================== --- head/sys/geom/stripe/g_stripe.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/stripe/g_stripe.c Mon Jul 11 05:22:31 2011 (r223921) @@ -34,6 +34,7 @@ __FBSDID("$FreeBSD$"); #include <sys/lock.h> #include <sys/mutex.h> #include <sys/bio.h> +#include <sys/sbuf.h> #include <sys/sysctl.h> #include <sys/malloc.h> #include <vm/uma.h> Modified: head/sys/geom/vinum/geom_vinum.c ============================================================================== --- head/sys/geom/vinum/geom_vinum.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/vinum/geom_vinum.c Mon Jul 11 05:22:31 2011 (r223921) @@ -37,6 +37,7 @@ __FBSDID("$FreeBSD$"); #include <sys/malloc.h> #include <sys/module.h> #include <sys/mutex.h> +#include <sys/sbuf.h> #include <sys/sysctl.h> #include <sys/systm.h> Modified: head/sys/geom/vinum/geom_vinum_drive.c ============================================================================== --- head/sys/geom/vinum/geom_vinum_drive.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/vinum/geom_vinum_drive.c Mon Jul 11 05:22:31 2011 (r223921) @@ -27,8 +27,10 @@ #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); +#include <sys/types.h> #include <sys/endian.h> #include <sys/malloc.h> +#include <sys/sbuf.h> #include <sys/systm.h> #include <geom/geom.h> Modified: head/sys/geom/vinum/geom_vinum_list.c ============================================================================== --- head/sys/geom/vinum/geom_vinum_list.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/vinum/geom_vinum_list.c Mon Jul 11 05:22:31 2011 (r223921) @@ -28,8 +28,10 @@ #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); +#include <sys/types.h> #include <sys/libkern.h> #include <sys/malloc.h> +#include <sys/sbuf.h> #include <geom/geom.h> #include <geom/vinum/geom_vinum_var.h> Modified: head/sys/geom/vinum/geom_vinum_subr.c ============================================================================== --- head/sys/geom/vinum/geom_vinum_subr.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/vinum/geom_vinum_subr.c Mon Jul 11 05:22:31 2011 (r223921) @@ -44,6 +44,7 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/malloc.h> +#include <sys/sbuf.h> #include <sys/systm.h> #include <geom/geom.h> Modified: head/sys/geom/virstor/g_virstor.c ============================================================================== --- head/sys/geom/virstor/g_virstor.c Mon Jul 11 05:19:28 2011 (r223920) +++ head/sys/geom/virstor/g_virstor.c Mon Jul 11 05:22:31 2011 (r223921) @@ -40,6 +40,7 @@ __FBSDID("$FreeBSD$"); #include <sys/mutex.h> #include <sys/sx.h> #include <sys/bio.h> +#include <sys/sbuf.h> #include <sys/sysctl.h> #include <sys/malloc.h> #include <sys/time.h>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201107110522.p6B5MVBR076978>