dm snapshot: do not use map_context
authorMikulas Patocka <mpatocka@redhat.com>
Fri, 21 Dec 2012 20:23:41 +0000 (20:23 +0000)
committerAlasdair G Kergon <agk@redhat.com>
Fri, 21 Dec 2012 20:23:41 +0000 (20:23 +0000)
commitee18026ac69efba804144541171299efd41747d2
tree8e6e9e85114a6b6568b8325aca750428150d4b95
parent59c3d2c6a12ff580b2c19c3925af4f4552639f8a
dm snapshot: do not use map_context

Eliminate struct map_info from dm-snap.

map_info->ptr was used in dm-snap to indicate if the bio was tracked.
If map_info->ptr was non-NULL, the bio was linked in tracked_chunk_hash.

This patch removes the use of map_info->ptr. We determine if the bio was
tracked based on hlist_unhashed(&c->node). If hlist_unhashed is true,
the bio is not tracked, if it is false, the bio is tracked.

Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
drivers/md/dm-snap.c