Whitespace tweaking. [Alasdair Kergon] --- diff/drivers/md/dm-snapshot.c 2003-03-27 09:39:53.000000000 +0000 +++ source/drivers/md/dm-snapshot.c 2003-03-27 09:40:16.000000000 +0000 @@ -425,7 +425,8 @@ s = kmalloc(sizeof(*s), GFP_KERNEL); if (s == NULL) { - ti->error = "Cannot allocate snapshot context private structure"; + ti->error = "Cannot allocate snapshot context private " + "structure"; r = -ENOMEM; goto bad; } @@ -499,7 +500,7 @@ */ s->store.snap = s; - if (persistent == 'P') + if (persistent == 'P') r = dm_create_persistent(&s->store, s->chunk_size); else r = dm_create_transient(&s->store, s, blocksize); --- diff/drivers/md/dm-stripe.c 2003-03-27 09:39:53.000000000 +0000 +++ source/drivers/md/dm-stripe.c 2003-03-27 09:42:22.000000000 +0000 @@ -134,8 +134,7 @@ * Do we have enough arguments for that many stripes ? */ if (argc != (2 + 2 * stripes)) { - ti->error = "dm-stripe: Not enough destinations " - "specified"; + ti->error = "dm-stripe: Not enough destinations specified"; return -EINVAL; } --- diff/drivers/md/dm-table.c 2003-02-25 14:44:11.000000000 +0000 +++ source/drivers/md/dm-table.c 2003-03-27 09:44:10.000000000 +0000 @@ -135,8 +135,7 @@ * Allocate both the target array and offset array at once. */ n_highs = (sector_t *) vcalloc(sizeof(struct dm_target) + - sizeof(sector_t), - num); + sizeof(sector_t), num); if (!n_highs) return -ENOMEM; --- diff/drivers/md/dm.c 2003-03-27 09:40:12.000000000 +0000 +++ source/drivers/md/dm.c 2003-03-27 09:43:05.000000000 +0000 @@ -315,7 +315,7 @@ */ static void dec_pending(struct buffer_head *bh, int uptodate) { - int r; + int r; struct dm_io *io = bh->b_private; dm_endio_fn endio = io->ti->type->end_io;