mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
fd36a66ccc
o Only one list of block devices for all tables o Locking to ensure that block devices only get opened once o Block device handling is now in dm-blkdev.c o We open block devices when we create the tables and hold them open until the table is destroyed (this prevents the module for the device being unloaded after table parsing and before the table is used) o We compute the hardsect size when the table is created rather than when someone requests it. Still to fix/change: o Probably want to hash the device lists in dm-blkdev.c and also remove refs to struct dm_bdev outside this file. o Need to ensure that hardsect_size doesn't change when new tables are swapped in (maybe this ought to be a per volume parameter and the tables will only parse if they match the value for the volume?). Things are changing fast here, so if you want a stable version of thic code try checking out yesterdays.
103 lines
2.6 KiB
C
103 lines
2.6 KiB
C
/*
|
|
* device-mapper.h
|
|
*
|
|
* Copyright (C) 2001 Sistina Software
|
|
*
|
|
* This software is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2, or (at
|
|
* your option) any later version.
|
|
*
|
|
* This software is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with GNU CC; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
/*
|
|
* Changelog
|
|
*
|
|
* 14/08/2001 - First version [Joe Thornber]
|
|
*/
|
|
|
|
#ifndef DEVICE_MAPPER_H
|
|
#define DEVICE_MAPPER_H
|
|
|
|
#include <linux/major.h>
|
|
|
|
/* FIXME: Use value from local range for now, for co-existence with LVM 1 */
|
|
#define DM_BLK_MAJOR 124
|
|
|
|
struct dm_table;
|
|
struct text_region;
|
|
typedef unsigned int offset_t;
|
|
|
|
typedef void (*dm_error_fn)(const char *message, void *private);
|
|
|
|
/* constructor, destructor and map fn types */
|
|
typedef int (*dm_ctr_fn)(struct dm_table *t,
|
|
offset_t b, offset_t l,
|
|
struct text_region *args, void **result,
|
|
dm_error_fn fn, void *private);
|
|
|
|
typedef void (*dm_dtr_fn)(struct dm_table *t, void *c);
|
|
typedef int (*dm_map_fn)(struct buffer_head *bh, void *context);
|
|
|
|
/*
|
|
* information about a target type
|
|
*/
|
|
struct target_type {
|
|
struct list_head list;
|
|
const char *name;
|
|
long use;
|
|
struct module *module;
|
|
dm_ctr_fn ctr;
|
|
dm_dtr_fn dtr;
|
|
dm_map_fn map;
|
|
};
|
|
|
|
int dm_register_target(struct target_type *t);
|
|
int dm_unregister_target(struct target_type *t);
|
|
|
|
struct dm_bdev {
|
|
struct list_head list;
|
|
struct block_device *bdev;
|
|
int use;
|
|
};
|
|
|
|
struct dm_bdev *dm_blkdev_get(const char *path);
|
|
void dm_blkdev_put(struct dm_bdev *);
|
|
|
|
static inline kdev_t dm_bdev2rdev(struct dm_bdev *d)
|
|
{
|
|
return to_kdev_t(d->bdev->bd_dev);
|
|
}
|
|
|
|
struct text_region {
|
|
const char *b;
|
|
const char *e;
|
|
};
|
|
|
|
/*
|
|
* These may be useful for people writing target
|
|
* types.
|
|
*/
|
|
int dm_get_number(struct text_region *txt, unsigned int *n);
|
|
int dm_get_line(struct text_region *txt, struct text_region *line);
|
|
int dm_get_word(struct text_region *txt, struct text_region *word);
|
|
void dm_txt_copy(char *dest, size_t max, struct text_region *txt);
|
|
void dm_eat_space(struct text_region *txt);
|
|
|
|
#endif /* DEVICE_MAPPER_H */
|
|
|
|
/*
|
|
* Local variables:
|
|
* c-file-style: "linux"
|
|
* End:
|
|
*/
|