* [PATCH] fdisk: fix menu
@ 2012-07-26 14:16 Davidlohr Bueso
2012-07-26 15:26 ` Karel Zak
0 siblings, 1 reply; 2+ messages in thread
From: Davidlohr Bueso @ 2012-07-26 14:16 UTC (permalink / raw)
To: Karel Zak, Petr Uzel; +Cc: util-linux
Commit 79c8a145ddff98d9c5bc70e67c5a861f67c50484 changed the numerical values of
fdisk_labeltype and broke the menu functionality, mixing main and expert menus.
Revert this change along with the label comment regarding it matching labeltype.
This is no longer valid since the original patch that lead to this modification
assumed that __probe_labels() would use these indices when creating a default
DOS/SUN disklabel, see http://www.spinics.net/lists/util-linux-ng/msg06509.html
Reported-by: Petr Uzel <petr.uzel@suse.cz>
Signed-off-by: Davidlohr Bueso <dave@gnu.org>
---
fdisks/fdisk.h | 12 ++++++------
fdisks/utils.c | 2 --
2 files changed, 6 insertions(+), 8 deletions(-)
diff --git a/fdisks/fdisk.h b/fdisks/fdisk.h
index 29b57fe..260445a 100644
--- a/fdisks/fdisk.h
+++ b/fdisks/fdisk.h
@@ -226,13 +226,13 @@ extern sector_t get_nr_sects(struct partition *p);
* Supported partition table types (labels)
*/
enum fdisk_labeltype {
- ANY_LABEL = -1,
DOS_LABEL = 1,
- SUN_LABEL,
- SGI_LABEL,
- AIX_LABEL,
- OSF_LABEL,
- MAC_LABEL,
+ SUN_LABEL = 2,
+ SGI_LABEL = 4,
+ AIX_LABEL = 8,
+ OSF_LABEL = 16,
+ MAC_LABEL = 32,
+ ANY_LABEL = -1
};
extern enum fdisk_labeltype disklabel;
diff --git a/fdisks/utils.c b/fdisks/utils.c
index c4ffe04..dbb422d 100644
--- a/fdisks/utils.c
+++ b/fdisks/utils.c
@@ -36,8 +36,6 @@ int fdisk_debug_mask;
/*
* Label probing functions.
- * Must have the same order as fdisk_labeltype as the index
- * depends on it.
*/
static const struct fdisk_label *labels[] =
{
--
1.7.4.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] fdisk: fix menu
2012-07-26 14:16 [PATCH] fdisk: fix menu Davidlohr Bueso
@ 2012-07-26 15:26 ` Karel Zak
0 siblings, 0 replies; 2+ messages in thread
From: Karel Zak @ 2012-07-26 15:26 UTC (permalink / raw)
To: Davidlohr Bueso; +Cc: Petr Uzel, util-linux
On Thu, Jul 26, 2012 at 04:16:57PM +0200, Davidlohr Bueso wrote:
> fdisks/fdisk.h | 12 ++++++------
> fdisks/utils.c | 2 --
> 2 files changed, 6 insertions(+), 8 deletions(-)
Applied, thanks.
--
Karel Zak <kzak@redhat.com>
http://karelzak.blogspot.com
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-07-26 15:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-26 14:16 [PATCH] fdisk: fix menu Davidlohr Bueso
2012-07-26 15:26 ` Karel Zak
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).