g_stripe.h (b09121f9e159d9f63292ee31fc9cc28d37d1f181) | g_stripe.h (a2e31b8b539b6c39297e2dcdc6fd1d8c5177982e) |
---|---|
1/*- 2 * Copyright (c) 2003 Pawel Jakub Dawidek <pjd@FreeBSD.org> 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 20 unchanged lines hidden (view full) --- 29#ifndef _G_STRIPE_H_ 30#define _G_STRIPE_H_ 31 32#include <sys/endian.h> 33 34#define G_STRIPE_CLASS_NAME "STRIPE" 35 36#define G_STRIPE_MAGIC "GEOM::STRIPE" | 1/*- 2 * Copyright (c) 2003 Pawel Jakub Dawidek <pjd@FreeBSD.org> 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 20 unchanged lines hidden (view full) --- 29#ifndef _G_STRIPE_H_ 30#define _G_STRIPE_H_ 31 32#include <sys/endian.h> 33 34#define G_STRIPE_CLASS_NAME "STRIPE" 35 36#define G_STRIPE_MAGIC "GEOM::STRIPE" |
37#define G_STRIPE_VERSION 0 | 37#define G_STRIPE_VERSION 1 |
38 39#ifdef _KERNEL 40#define G_STRIPE_TYPE_MANUAL 0 41#define G_STRIPE_TYPE_AUTOMATIC 1 42 43#define G_STRIPE_DEBUG(lvl, ...) do { \ 44 if (g_stripe_debug >= (lvl)) { \ 45 printf("GEOM_STRIPE"); \ --- 71 unchanged lines hidden --- | 38 39#ifdef _KERNEL 40#define G_STRIPE_TYPE_MANUAL 0 41#define G_STRIPE_TYPE_AUTOMATIC 1 42 43#define G_STRIPE_DEBUG(lvl, ...) do { \ 44 if (g_stripe_debug >= (lvl)) { \ 45 printf("GEOM_STRIPE"); \ --- 71 unchanged lines hidden --- |