Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9fcfc91b authored by Linus Torvalds's avatar Linus Torvalds
Browse files
* git://git.kernel.org/pub/scm/linux/kernel/git/agk/linux-2.6-dm:
  dm table: fix blk_stack_limits arg to use bytes not sectors
  dm exception store: really fix type lookup
parents 55bcab46 ea9df47c
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -195,7 +195,7 @@ int dm_exception_store_create(struct dm_target *ti, int argc, char **argv,
			      struct dm_exception_store **store)
{
	int r = 0;
	struct dm_exception_store_type *type;
	struct dm_exception_store_type *type = NULL;
	struct dm_exception_store *tmp_store;
	char persistent;

@@ -211,12 +211,15 @@ int dm_exception_store_create(struct dm_target *ti, int argc, char **argv,
	}

	persistent = toupper(*argv[1]);
	if (persistent != 'P' && persistent != 'N') {
	if (persistent == 'P')
		type = get_type("P");
	else if (persistent == 'N')
		type = get_type("N");
	else {
		ti->error = "Persistent flag is not P or N";
		return -EINVAL;
	}

	type = get_type(&persistent);
	if (!type) {
		ti->error = "Exception store type not recognised";
		r = -EINVAL;
+1 −1
Original line number Diff line number Diff line
@@ -495,7 +495,7 @@ int dm_set_device_limits(struct dm_target *ti, struct dm_dev *dev,
		return 0;
	}

	if (blk_stack_limits(limits, &q->limits, start) < 0)
	if (blk_stack_limits(limits, &q->limits, start << 9) < 0)
		DMWARN("%s: target device %s is misaligned",
		       dm_device_name(ti->table->md), bdevname(bdev, b));