mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
more tweaking to get things to compile - dmlib.h for log fns, list.h
This commit is contained in:
parent
965566dcf0
commit
3e5b6ed214
@ -1,5 +1,6 @@
|
|||||||
Version 2.02.43 -
|
Version 2.02.43 -
|
||||||
===================================
|
===================================
|
||||||
|
Move list.c into libdevmapper and rename functions.
|
||||||
Rename a couple of variables that matched function names.
|
Rename a couple of variables that matched function names.
|
||||||
Use simplified x.y.z version number in libdevmapper.pc.
|
Use simplified x.y.z version number in libdevmapper.pc.
|
||||||
Merge device-mapper into the lvm2 tree.
|
Merge device-mapper into the lvm2 tree.
|
||||||
|
@ -8,7 +8,6 @@
|
|||||||
../lib/config/config.h
|
../lib/config/config.h
|
||||||
../lib/config/defaults.h
|
../lib/config/defaults.h
|
||||||
../lib/datastruct/btree.h
|
../lib/datastruct/btree.h
|
||||||
../lib/datastruct/list.h
|
|
||||||
../lib/datastruct/lvm-types.h
|
../lib/datastruct/lvm-types.h
|
||||||
../lib/datastruct/str_list.h
|
../lib/datastruct/str_list.h
|
||||||
../lib/device/dev-cache.h
|
../lib/device/dev-cache.h
|
||||||
@ -52,8 +51,10 @@
|
|||||||
../lib/report/report.h
|
../lib/report/report.h
|
||||||
../lib/uuid/uuid.h
|
../lib/uuid/uuid.h
|
||||||
../libdm/libdevmapper.h
|
../libdm/libdevmapper.h
|
||||||
|
../libdm/datastruct/list.h
|
||||||
../libdm/misc/dm-ioctl.h
|
../libdm/misc/dm-ioctl.h
|
||||||
../libdm/misc/dm-logging.h
|
../libdm/misc/dm-logging.h
|
||||||
|
../libdm/misc/dmlib.h
|
||||||
../libdm/misc/kdev_t.h
|
../libdm/misc/kdev_t.h
|
||||||
../po/pogen.h
|
../po/pogen.h
|
||||||
../tools/version.h
|
../tools/version.h
|
||||||
|
@ -38,7 +38,6 @@ SOURCES =\
|
|||||||
commands/toolcontext.c \
|
commands/toolcontext.c \
|
||||||
config/config.c \
|
config/config.c \
|
||||||
datastruct/btree.c \
|
datastruct/btree.c \
|
||||||
datastruct/list.c \
|
|
||||||
datastruct/str_list.c \
|
datastruct/str_list.c \
|
||||||
device/dev-cache.c \
|
device/dev-cache.c \
|
||||||
device/dev-io.c \
|
device/dev-io.c \
|
||||||
|
@ -572,7 +572,7 @@ void vgdisplay_extents(const struct volume_group *vg __attribute((unused)))
|
|||||||
|
|
||||||
void vgdisplay_full(const struct volume_group *vg)
|
void vgdisplay_full(const struct volume_group *vg)
|
||||||
{
|
{
|
||||||
uint32_t access;
|
uint32_t access_str;
|
||||||
uint32_t active_pvs;
|
uint32_t active_pvs;
|
||||||
uint32_t lv_count = 0;
|
uint32_t lv_count = 0;
|
||||||
struct lv_list *lvl;
|
struct lv_list *lvl;
|
||||||
@ -589,12 +589,12 @@ void vgdisplay_full(const struct volume_group *vg)
|
|||||||
list_size(&vg->fid->metadata_areas));
|
list_size(&vg->fid->metadata_areas));
|
||||||
log_print("Metadata Sequence No %d", vg->seqno);
|
log_print("Metadata Sequence No %d", vg->seqno);
|
||||||
}
|
}
|
||||||
access = vg->status & (LVM_READ | LVM_WRITE);
|
access_str = vg->status & (LVM_READ | LVM_WRITE);
|
||||||
log_print("VG Access %s%s%s%s",
|
log_print("VG Access %s%s%s%s",
|
||||||
access == (LVM_READ | LVM_WRITE) ? "read/write" : "",
|
access_str == (LVM_READ | LVM_WRITE) ? "read/write" : "",
|
||||||
access == LVM_READ ? "read" : "",
|
access_str == LVM_READ ? "read" : "",
|
||||||
access == LVM_WRITE ? "write" : "",
|
access_str == LVM_WRITE ? "write" : "",
|
||||||
access == 0 ? "error" : "");
|
access_str == 0 ? "error" : "");
|
||||||
log_print("VG Status %s%sresizable",
|
log_print("VG Status %s%sresizable",
|
||||||
vg->status & EXPORTED_VG ? "exported/" : "",
|
vg->status & EXPORTED_VG ? "exported/" : "",
|
||||||
vg->status & RESIZEABLE_VG ? "" : "NOT ");
|
vg->status & RESIZEABLE_VG ? "" : "NOT ");
|
||||||
@ -658,7 +658,7 @@ void vgdisplay_colons(const struct volume_group *vg)
|
|||||||
uint32_t active_pvs;
|
uint32_t active_pvs;
|
||||||
uint32_t lv_count;
|
uint32_t lv_count;
|
||||||
struct lv_list *lvl;
|
struct lv_list *lvl;
|
||||||
const char *access;
|
const char *access_str;
|
||||||
char uuid[64] __attribute((aligned(8)));
|
char uuid[64] __attribute((aligned(8)));
|
||||||
|
|
||||||
active_pvs = vg->pv_count - vg_missing_pv_count(vg);
|
active_pvs = vg->pv_count - vg_missing_pv_count(vg);
|
||||||
@ -669,16 +669,16 @@ void vgdisplay_colons(const struct volume_group *vg)
|
|||||||
|
|
||||||
switch (vg->status & (LVM_READ | LVM_WRITE)) {
|
switch (vg->status & (LVM_READ | LVM_WRITE)) {
|
||||||
case LVM_READ | LVM_WRITE:
|
case LVM_READ | LVM_WRITE:
|
||||||
access = "r/w";
|
access_str = "r/w";
|
||||||
break;
|
break;
|
||||||
case LVM_READ:
|
case LVM_READ:
|
||||||
access = "r";
|
access_str = "r";
|
||||||
break;
|
break;
|
||||||
case LVM_WRITE:
|
case LVM_WRITE:
|
||||||
access = "w";
|
access_str = "w";
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
access = "";
|
access_str = "";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!id_write_format(&vg->id, uuid, sizeof(uuid))) {
|
if (!id_write_format(&vg->id, uuid, sizeof(uuid))) {
|
||||||
@ -689,7 +689,7 @@ void vgdisplay_colons(const struct volume_group *vg)
|
|||||||
log_print("%s:%s:%d:-1:%u:%u:%u:-1:%u:%u:%u:%" PRIu64 ":%" PRIu32
|
log_print("%s:%s:%d:-1:%u:%u:%u:-1:%u:%u:%u:%" PRIu64 ":%" PRIu32
|
||||||
":%u:%u:%u:%s",
|
":%u:%u:%u:%s",
|
||||||
vg->name,
|
vg->name,
|
||||||
access,
|
access_str,
|
||||||
vg->status,
|
vg->status,
|
||||||
/* internal volume group number; obsolete */
|
/* internal volume group number; obsolete */
|
||||||
vg->max_lv,
|
vg->max_lv,
|
||||||
|
@ -16,8 +16,6 @@
|
|||||||
#ifndef _LVM_LOGGING_H
|
#ifndef _LVM_LOGGING_H
|
||||||
#define _LVM_LOGGING_H
|
#define _LVM_LOGGING_H
|
||||||
|
|
||||||
#include "lvm-globals.h"
|
|
||||||
|
|
||||||
void print_log(int level, const char *file, int line, const char *format, ...)
|
void print_log(int level, const char *file, int line, const char *format, ...)
|
||||||
__attribute__ ((format(printf, 4, 5)));
|
__attribute__ ((format(printf, 4, 5)));
|
||||||
|
|
||||||
|
@ -27,11 +27,17 @@
|
|||||||
|
|
||||||
#include "intl.h"
|
#include "intl.h"
|
||||||
#include "libdevmapper.h"
|
#include "libdevmapper.h"
|
||||||
#include "lvm-logging.h"
|
#include "lvm-globals.h"
|
||||||
#include "lvm-types.h"
|
|
||||||
#include "lvm-wrappers.h"
|
#include "lvm-wrappers.h"
|
||||||
|
#include "lvm-types.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
||||||
|
#ifdef DM
|
||||||
|
# include "dm-logging.h"
|
||||||
|
#else
|
||||||
|
# include "lvm-logging.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
@ -35,7 +35,7 @@ void init_security_level(int level);
|
|||||||
void init_mirror_in_sync(int in_sync);
|
void init_mirror_in_sync(int in_sync);
|
||||||
void init_dmeventd_monitor(int reg);
|
void init_dmeventd_monitor(int reg);
|
||||||
void init_ignore_suspended_devices(int ignore);
|
void init_ignore_suspended_devices(int ignore);
|
||||||
void init_error_message_produced(int error_message_produced);
|
void init_error_message_produced(int produced);
|
||||||
|
|
||||||
void set_cmd_name(const char *cmd_name);
|
void set_cmd_name(const char *cmd_name);
|
||||||
|
|
||||||
|
@ -20,6 +20,7 @@ interface = @interface@
|
|||||||
SOURCES =\
|
SOURCES =\
|
||||||
datastruct/bitset.c \
|
datastruct/bitset.c \
|
||||||
datastruct/hash.c \
|
datastruct/hash.c \
|
||||||
|
datastruct/list.c \
|
||||||
libdm-common.c \
|
libdm-common.c \
|
||||||
libdm-file.c \
|
libdm-file.c \
|
||||||
libdm-deptree.c \
|
libdm-deptree.c \
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "lib.h"
|
#include "dmlib.h"
|
||||||
|
|
||||||
/* FIXME: calculate this. */
|
/* FIXME: calculate this. */
|
||||||
#define INT_SHIFT 5
|
#define INT_SHIFT 5
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "lib.h"
|
#include "dmlib.h"
|
||||||
|
|
||||||
struct dm_hash_node {
|
struct dm_hash_node {
|
||||||
struct dm_hash_node *next;
|
struct dm_hash_node *next;
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "lib.h"
|
#include "dmlib.h"
|
||||||
#include "libdm-targets.h"
|
#include "libdm-targets.h"
|
||||||
#include "libdm-common.h"
|
#include "libdm-common.h"
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "lib.h"
|
#include "dmlib.h"
|
||||||
#include "libdm-targets.h"
|
#include "libdm-targets.h"
|
||||||
#include "libdm-common.h"
|
#include "libdm-common.h"
|
||||||
#include "list.h"
|
#include "list.h"
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "lib.h"
|
#include "dmlib.h"
|
||||||
#include "libdm-targets.h"
|
#include "libdm-targets.h"
|
||||||
#include "libdm-common.h"
|
#include "libdm-common.h"
|
||||||
#include "list.h"
|
#include "list.h"
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "lib.h"
|
#include "dmlib.h"
|
||||||
|
|
||||||
#include <sys/file.h>
|
#include <sys/file.h>
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "lib.h"
|
#include "dmlib.h"
|
||||||
|
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "lib.h"
|
#include "dmlib.h"
|
||||||
#include "libdevmapper.h"
|
#include "libdevmapper.h"
|
||||||
|
|
||||||
#include <ctype.h>
|
#include <ctype.h>
|
||||||
|
26
libdm/misc/dmlib.h
Normal file
26
libdm/misc/dmlib.h
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
|
||||||
|
* Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved.
|
||||||
|
*
|
||||||
|
* This file is part of LVM2.
|
||||||
|
*
|
||||||
|
* This copyrighted material is made available to anyone wishing to use,
|
||||||
|
* modify, copy, or redistribute it subject to the terms and conditions
|
||||||
|
* of the GNU Lesser General Public License v.2.1.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Lesser General Public License
|
||||||
|
* along with this program; if not, write to the Free Software Foundation,
|
||||||
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* This file must be included first by every device-mapper library source file.
|
||||||
|
*/
|
||||||
|
#ifndef _DM_LIB_H
|
||||||
|
#define _DM_LIB_H
|
||||||
|
|
||||||
|
#define DM
|
||||||
|
|
||||||
|
#include "lib.h"
|
||||||
|
|
||||||
|
#endif
|
@ -13,7 +13,7 @@
|
|||||||
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "lib.h"
|
#include "dmlib.h"
|
||||||
|
|
||||||
#include <assert.h>
|
#include <assert.h>
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "lib.h"
|
#include "dmlib.h"
|
||||||
|
|
||||||
struct block {
|
struct block {
|
||||||
struct block *next;
|
struct block *next;
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "lib.h"
|
#include "dmlib.h"
|
||||||
|
|
||||||
struct chunk {
|
struct chunk {
|
||||||
char *begin, *end;
|
char *begin, *end;
|
||||||
|
@ -13,6 +13,8 @@
|
|||||||
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "dmlib.h"
|
||||||
|
|
||||||
#ifdef DEBUG_POOL
|
#ifdef DEBUG_POOL
|
||||||
#include "pool-debug.c"
|
#include "pool-debug.c"
|
||||||
#else
|
#else
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "lib.h"
|
#include "dmlib.h"
|
||||||
#include "parse_rx.h"
|
#include "parse_rx.h"
|
||||||
#include "ttree.h"
|
#include "ttree.h"
|
||||||
#include "assert.h"
|
#include "assert.h"
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "lib.h"
|
#include "dmlib.h"
|
||||||
#include "parse_rx.h"
|
#include "parse_rx.h"
|
||||||
|
|
||||||
struct parse_sp { /* scratch pad for the parsing process */
|
struct parse_sp { /* scratch pad for the parsing process */
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "lib.h"
|
#include "dmlib.h"
|
||||||
#include "ttree.h"
|
#include "ttree.h"
|
||||||
|
|
||||||
struct node {
|
struct node {
|
||||||
|
Loading…
Reference in New Issue
Block a user