diff options
author | Anton Altaparmakov <aia21@cantab.net> | 2007-05-21 09:37:42 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-21 09:58:40 -0700 |
commit | dde33348e53ecab687a9768bf5262f0b8f79b7f2 (patch) | |
tree | 6bfb828e56147b7c327a1304c27e93fc92f6c060 /fs/partitions/ldm.h | |
parent | 17304383ebc1ce68a88030ac4d18ea549d9578c7 (diff) | |
download | op-kernel-dev-dde33348e53ecab687a9768bf5262f0b8f79b7f2.zip op-kernel-dev-dde33348e53ecab687a9768bf5262f0b8f79b7f2.tar.gz |
LDM: Fix for Windows Vista dynamic disks
This fixes the LDM driver so that it works with Windows Vista dynamic
disks which are subtly different to Windows 2000/XP ones.
The patch was needed to get a Vista formatted dynamic disk to be
recognized and parsed successfully.
Thanks go to Chris Teachworth for the report and testing.
Cc: Richard Russon <ldm@flatcap.org>
Signed-off-by: Anton Altaparmakov <aia21@cantab.net>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/partitions/ldm.h')
-rw-r--r-- | fs/partitions/ldm.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/partitions/ldm.h b/fs/partitions/ldm.h index 6e8d795..d2e6a30 100644 --- a/fs/partitions/ldm.h +++ b/fs/partitions/ldm.h @@ -2,10 +2,10 @@ * ldm - Part of the Linux-NTFS project. * * Copyright (C) 2001,2002 Richard Russon <ldm@flatcap.org> - * Copyright (C) 2001 Anton Altaparmakov <aia21@cantab.net> + * Copyright (c) 2001-2007 Anton Altaparmakov * Copyright (C) 2001,2002 Jakob Kemi <jakob.kemi@telia.com> * - * Documentation is available at http://linux-ntfs.sf.net/ldm + * Documentation is available at http://www.linux-ntfs.org/content/view/19/37/ * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free @@ -93,7 +93,7 @@ struct parsed_partitions; #define OFF_VMDB 17 /* List of partitions. */ -#define WIN2K_DYNAMIC_PARTITION 0x42 /* Formerly SFS (Landis). */ +#define LDM_PARTITION 0x42 /* Formerly SFS (Landis). */ #define TOC_BITMAP1 "config" /* Names of the two defined */ #define TOC_BITMAP2 "log" /* bitmaps in the TOCBLOCK. */ |