From: Vivek Goyal <vgoyal@redhat.com>
To: linux-kernel@vger.kernel.org, jaxboe@fusionio.com, dm-devel@redhat.com
Cc: kzak@redhat.com, vgoyal@redhat.com
Subject: [PATCH 1/1] extendpart: A new command line to extend an existing partition
Date: Thu, 1 Sep 2011 17:55:28 -0400 [thread overview]
Message-ID: <1314914128-3171-3-git-send-email-vgoyal@redhat.com> (raw)
In-Reply-To: <1314914128-3171-1-git-send-email-vgoyal@redhat.com>
This is along the lines of addpart and delpart to modify in kernel partition
table and does not touch the ondisk data structures.
Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
---
partx/Makefile.am | 2 +-
partx/extendpart.c | 29 +++++++++++++++++++++++++++++
partx/partx.h | 20 ++++++++++++++++++++
3 files changed, 50 insertions(+), 1 deletions(-)
create mode 100644 partx/extendpart.c
diff --git a/partx/Makefile.am b/partx/Makefile.am
index 6a72942..f84126d 100644
--- a/partx/Makefile.am
+++ b/partx/Makefile.am
@@ -1,6 +1,6 @@
include $(top_srcdir)/config/include-Makefile.am
-usrsbin_exec_PROGRAMS = addpart delpart
+usrsbin_exec_PROGRAMS = addpart delpart extendpart
dist_man_MANS = addpart.8 delpart.8
usrsbin_exec_PROGRAMS += partx
diff --git a/partx/extendpart.c b/partx/extendpart.c
new file mode 100644
index 0000000..a9577c2
--- /dev/null
+++ b/partx/extendpart.c
@@ -0,0 +1,29 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <fcntl.h>
+
+#include "partx.h"
+
+int
+main(int argc, char **argv)
+{
+ int fd;
+
+ if (argc != 4) {
+ fprintf(stderr,
+ "usage: %s diskdevice partitionnr size\n",
+ argv[0]);
+ exit(1);
+ }
+ if ((fd = open(argv[1], O_RDONLY)) < 0) {
+ perror(argv[1]);
+ exit(1);
+ }
+
+ if (partx_extend_partition(fd, atoi(argv[2]), atoll(argv[3]))) {
+ perror("BLKPG");
+ exit(1);
+ }
+
+ return 0;
+}
diff --git a/partx/partx.h b/partx/partx.h
index b40fa8f..1acbff9 100644
--- a/partx/partx.h
+++ b/partx/partx.h
@@ -41,4 +41,24 @@ static inline int partx_add_partition(int fd, int partno,
return ioctl(fd, BLKPG, &a);
}
+static inline int partx_extend_partition(int fd, int partno,
+ unsigned long size)
+{
+ struct blkpg_ioctl_arg a;
+ struct blkpg_partition p;
+
+ p.pno = partno;
+ /* p.start is unused for extend operation */
+ p.start = 0;
+ p.length = size << 9;
+ p.devname[0] = 0;
+ p.volname[0] = 0;
+ a.op = BLKPG_EXTEND_PARTITION;
+ a.flags = 0;
+ a.datalen = sizeof(p);
+ a.data = &p;
+
+ return ioctl(fd, BLKPG, &a);
+}
+
#endif /* UTIL_LINUX_PARTX_H */
--
1.7.6
prev parent reply other threads:[~2011-09-01 21:55 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-09-01 21:55 [RFC PATCH 0/2] block: Allow extending partition size online Vivek Goyal
2011-09-01 21:55 ` [PATCH 1/1] block: Add ioctl for " Vivek Goyal
2011-09-01 21:55 ` Vivek Goyal [this message]
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=1314914128-3171-3-git-send-email-vgoyal@redhat.com \
--to=vgoyal@redhat.com \
--cc=dm-devel@redhat.com \
--cc=jaxboe@fusionio.com \
--cc=kzak@redhat.com \
--cc=linux-kernel@vger.kernel.org \
/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
Powered by JetHome