From: Bernd Eckenfels <ecki@lina.inka.de>
To: dm@uk.sistina.com, linux-lvm@sistina.com
Cc: linux-kernel@vger.kernel.org
Subject: [patch] make device mapper compile on 2.5.4x
Date: Mon, 11 Nov 2002 23:53:40 +0100 [thread overview]
Message-ID: <20021111225340.GA3587@lina.inka.de> (raw)
Hello,
device mapper does not compile on my 2.4.x tree, because of an argument
incompatibility in set_device_ro(). Please find attached a patch, which
makes this file compile. I am not sure if it is correct, since I do not
unterstand whats going on here, and have not tested it yet. Please somebody
have a look at it since it it broken for multiple releases, yet.
BTW: I also suggest to remove the www.sistina.com/lvm/ url from the
MAINTAINER file since it does not contain any useful information anymore.
Greetings
Bernd
--- drivers/md/dm-ioctl.c~ 2002-11-11 23:27:38.000000000 +0100
+++ drivers/md/dm-ioctl.c 2002-11-11 23:43:41.000000000 +0100
@@ -560,6 +560,7 @@
struct dm_table *t;
struct mapped_device *md;
int minor;
+ struct block_device *bdev;
r = check_name(param->name);
if (r)
@@ -585,7 +586,12 @@
}
dm_table_put(t); /* md will have grabbed its own reference */
- set_device_ro(dm_kdev(md), 0/*(param->flags & DM_READONLY_FLAG)*/);
+ bdev = bdget(kdev_t_to_nr(dm_kdev(md)));
+ if (!bdev)
+ return -ENXIO;
+ set_device_ro(bdev, (param->flags & DM_READONLY_FLAG));
+ bdput(bdev);
+
r = dm_hash_insert(param->name, *param->uuid ? param->uuid : NULL, md);
dm_put(md);
@@ -847,6 +853,7 @@
int r;
struct mapped_device *md;
struct dm_table *t;
+ struct block_device *bdev;
r = dm_table_create(&t, get_mode(param));
if (r)
@@ -871,7 +878,12 @@
return r;
}
- set_device_ro(dm_kdev(md), (param->flags & DM_READONLY_FLAG));
+ bdev = bdget(kdev_t_to_nr(dm_kdev(md)));
+ if (!bdev)
+ return -ENXIO;
+ set_device_ro(bdev, (param->flags & DM_READONLY_FLAG));
+ bdput(bdev);
+
dm_put(md);
r = info(param, user);
--
(OO) -- Bernd_Eckenfels@Wendelinusstrasse39.76646Bruchsal.de --
( .. ) ecki@{inka.de,linux.de,debian.org} http://home.pages.de/~eckes/
o--o *plush* 2048/93600EFD eckes@irc +497257930613 BE5-RIPE
(O____O) When cryptography is outlawed, bayl bhgynjf jvyy unir cevinpl!
next reply other threads:[~2002-11-11 22:47 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-11-11 22:53 Bernd Eckenfels [this message]
2002-11-11 23:23 ` [patch] make device mapper compile on 2.5.4x Alexander Viro
2002-11-12 8:58 ` [linux-lvm] " Joe Thornber
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20021111225340.GA3587@lina.inka.de \
--to=ecki@lina.inka.de \
--cc=dm@uk.sistina.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-lvm@sistina.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox