Changes by: flatcap
Update of /cvsroot/linux-ntfs/dynamic-disk/patch
In directory usw-pr-cvs1:/tmp/cvs-serv20764
Added Files:
patch-2.4.19-ldm patch-2.4.20-pre1-ac1-ldm
Log Message:
new patches
--- NEW FILE ---
diff -urN linux-2.4.19/Documentation/Configure.help linux-2.4.19-ldm/Documentation/Configure.help
--- linux-2.4.19/Documentation/Configure.help Sat Aug 3 01:39:42 2002
+++ linux-2.4.19-ldm/Documentation/Configure.help Wed Aug 7 09:53:26 2002
@@ -15239,7 +15239,7 @@
Say Y here if you would like to use hard disks under Linux which
were partitioned on a Macintosh.
-Windows Logical Disk Manager (Dynamic Disk) support (EXPERIMENTAL)
+Windows Logical Disk Manager (Dynamic Disk) support
CONFIG_LDM_PARTITION
Say Y here if you would like to use hard disks under Linux which
were partitioned using Windows 2000's or XP's Logical Disk Manager.
@@ -15254,8 +15254,7 @@
Normal partitions are now called Basic Disks under Windows 2000 and
XP.
- Technical documentation to accompany this driver is available from:
- <http://linux-ntfs.sf.net/ldm/>.
+ For a fuller description read <file:Documentation/ldm.txt>.
[...2816 lines suppressed...]
+};
+
+struct ldmdb { /* Cache of the database */
+ struct privhead ph;
+ struct tocblock toc;
+ struct vmdb vm;
+ struct list_head v_dgrp;
+ struct list_head v_disk;
+ struct list_head v_volu;
+ struct list_head v_comp;
+ struct list_head v_part;
};
-int ldm_partition(struct gendisk *hd, struct block_device *bdev,
- unsigned long first_sector, int first_part_minor);
+int ldm_partition (struct gendisk *hd, struct block_device *bdev,
+ unsigned long first_sector, int first_minor);
#endif /* _FS_PT_LDM_H_ */
--- NEW FILE ---
diff -urN linux-2.4.20-pre1-ac1/Documentation/Configure.help linux-2.4.20-pre1-ac1-ldm/Documentation/Configure.help
--- linux-2.4.20-pre1-ac1/Documentation/Configure.help Wed Aug 7 16:47:20 2002
+++ linux-2.4.20-pre1-ac1-ldm/Documentation/Configure.help Thu Aug 8 00:20:50 2002
@@ -15340,7 +15340,7 @@
Say Y here if you would like to use hard disks under Linux which
were partitioned on a Macintosh.
-Windows Logical Disk Manager (Dynamic Disk) support (EXPERIMENTAL)
+Windows Logical Disk Manager (Dynamic Disk) support
CONFIG_LDM_PARTITION
Say Y here if you would like to use hard disks under Linux which
were partitioned using Windows 2000's or XP's Logical Disk Manager.
@@ -15355,8 +15355,7 @@
Normal partitions are now called Basic Disks under Windows 2000 and
XP.
- Technical documentation to accompany this driver is available from:
- <http://linux-ntfs.sf.net/ldm/>.
+ For a fuller description read <file:Documentation/ldm.txt>.
[...2817 lines suppressed...]
+};
+
+struct ldmdb { /* Cache of the database */
+ struct privhead ph;
+ struct tocblock toc;
+ struct vmdb vm;
+ struct list_head v_dgrp;
+ struct list_head v_disk;
+ struct list_head v_volu;
+ struct list_head v_comp;
+ struct list_head v_part;
};
-int ldm_partition(struct gendisk *hd, struct block_device *bdev,
- unsigned long first_sector, int first_part_minor);
+int ldm_partition (struct gendisk *hd, struct block_device *bdev,
+ unsigned long first_sector, int first_minor);
#endif /* _FS_PT_LDM_H_ */
|