aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-s3c6400/or
stat options
Period:
Authors:

Commits per author per week (path 'arch/arm/mach-s3c6400/or')

AuthorW31 2025W32 2025W33 2025W34 2025Total
Total00000
l com"> * Device-Mapper dirty region hash interface. * * This file is released under the GPL. */ #ifndef DM_REGION_HASH_H #define DM_REGION_HASH_H #include <linux/dm-dirty-log.h> /*----------------------------------------------------------------- * Region hash *----------------------------------------------------------------*/ struct dm_region_hash; struct dm_region; /* * States a region can have. */ enum dm_rh_region_states { DM_RH_CLEAN = 0x01, /* No writes in flight. */ DM_RH_DIRTY = 0x02, /* Writes in flight. */ DM_RH_NOSYNC = 0x04, /* Out of sync. */ DM_RH_RECOVERING = 0x08, /* Under resynchronization. */ }; /* * Region hash create/destroy. */ struct bio_list; struct dm_region_hash *dm_region_hash_create( void *context, void (*dispatch_bios)(void *context, struct bio_list *bios), void (*wakeup_workers)(void *context), void (*wakeup_all_recovery_waiters)(void *context), sector_t target_begin, unsigned max_recovery,