OSDN Git Service

libparted: Give device_get_*_alignment sane defaults
[android-x86/external-parted.git] / NEWS
1 GNU parted NEWS                                    -*- outline -*-
2
3 * Noteworthy changes in release ?.? (????-??-??) [?]
4
5 ** New features
6
7   The ped_device_get_*_alignment() functions now return a sane default
8   value instead of NULL when the so called topology information is incomplete.
9   The default minimum alignment aligns to physical sector size, the default
10   optimal alignment is 1MiB, which is what vista and windows 7 do.
11
12 ** Bug fixes
13
14   Parted no longer uses a physical sector size of 0 or of any other
15   value smaller than the logical sector size.
16
17   gpt: read-only operation could clobber MBR part of hybrid GPT+MBR table
18   [bug introduced in parted-2.1]
19
20   "make install" no longer installs tests programs named disk and label
21
22
23 * Noteworthy changes in release 2.1 (2009-12-20) [stable]
24
25 ** New features
26
27   new --align=<align> commandline option which can have the following values:
28   none:     Use the minimum alignment allowed by the disk type
29   cylinder: Align partitions to cylinders (the default)
30   minimal:  Use minimum alignment as given by the disk topology information
31   optimal:  Use optimum alignment as given by the disk topology information
32   The minimal and optimal  values will use layout information provided by the
33   disk to align the logical partition table addresses to actual physical
34   blocks on the disks. The mininal value uses the minimum aligment needed to
35   align the partition properly to physical blocks, which avoids performance
36   degradation. Where as the optimal value uses a multiple of the physical
37   block size in a way that guarantees optimal performance.
38   The min and opt values will only work when compiled with
39   libblkid >= 2.17 and running on a kernel >= 2.6.31, otherwise they will
40   behave as the none --align value.
41
42   libparted: new functions to set per disk (instead of per partition) flags:
43   ped_disk_set_flag()
44   ped_disk_get_flag()
45   ped_disk_is_flag_available()
46   ped_disk_flag_get_name()
47   ped_disk_flag_get_by_name()
48   ped_disk_flag_next()
49
50   libparted: new per disk flag: PED_DISK_CYLINDER_ALIGNMENT. This flag
51   (which defaults to true) controls if disk types for which cylinder alignment
52   is optional do cylinder alignment when a new partition gets added.
53
54   libparted: new functions to return per-partition-table-type limits:
55     - ped_disk_max_partition_start_sector: Return the largest representable
56     start sector number for a given "disk".
57     - ped_disk_max_partition_length: Return the maximum partition length
58     for a given "disk".
59
60   new command "align-check TYPE N" to determine whether the starting sector
61   of partition N is TYPE(minimal|optimal)-aligned for the disk.  E.g.,
62       parted -s /dev/sda align-check min 1 && echo partition 1 is min-aligned
63       parted -s /dev/sda align-check opt 2 && echo partition 2 is opt-aligned
64   The same libblkid and kernel version requirements apply as for --align
65
66   Add functions to libparted to get minimal and optimal alignment
67   information from devices:
68   ped_device_get_minimal_aligned_constraint()
69   ped_device_get_optimal_aligned_constraint()
70   ped_device_get_minimum_alignment()
71   ped_device_get_optimum_alignment()
72   The same libblkid and kernel version requirements apply as for --align
73
74   Add ped_disk_get_partition_alignment() function to libparted to get
75   information about alignment enforced by the disk type.
76
77 ** Bug fixes
78
79   parted can once again create partition tables on loop devices.
80   Before, "parted -s /dev/loop0 mklabel gpt" would fail.
81   [bug introduced in parted-1.9.0]
82
83   improved >512-byte sector support: for example, printing a table on a
84   4k-sector disk would show "Sector size (logical/physical): 4096B/512B",
85   when the sizes should have been "4096B/4096B".
86
87   gpt tables are more rigorously checked; before, partition entry array CRCs
88   were not checked, and we would mistakenly use the AlternateLBA member of a
89   known-corrupt primary table.
90
91   improved dasd disk support, in previous versions calling
92   ped_disk_new_fresh() or ped_disk_duplicate() on a dasd type PedDisk
93   would fail.  This is fixed now.
94
95   handle device nodes created by lvm build with udev synchronisation enabled
96   properly.
97
98   when printing tables, parted no longer truncates flag names
99
100
101 * Noteworthy changes in release 2.0 (2009-10-06) [beta]
102
103 ** Improvements
104
105   Parted now supports disks with sector size larger than 512 bytes.
106   Before this release, Parted could operate only on disks with a sector
107   size of 512 bytes.  However, disk manufacturers are already making disks
108   with an exposed hardware sector size of 4096 bytes.  Prior versions of
109   Parted cannot even read a partition table on such a device, not to
110   mention create or manipulate existing partition tables.
111   Due to internal design and time constraints, the following
112   less-common partition table types are currently disabled:
113     amiga, bsd, aix, pc98
114   "bsd" and "amiga" are mostly done, but had a few minor problems,
115   so may remain disabled until someone requests that they be revived.
116
117 ** Bug fixes
118
119   big-endian systems can once again read GPT partition tables
120   [bug introduced in parted-1.9.0]
121
122   ped_partition_is_busy no longer calls libparted's exception handler,
123   since doing so caused trouble with anaconda/pyparted when operating on
124   dmraid devices.
125
126   Partitions in a GPT table are no longer assigned the "microsoft
127   reserved partition" type.  Before this change, each partition would
128   be listed with a type of "msftres" by default.
129
130
131 * Noteworthy changes in release 1.9.0 (2009-07-23) [stable]
132
133 ** Bug fixes
134
135   parted now preserves the protective MBR (PMBR) in GPT type labels.
136   http://lists.alioth.debian.org/pipermail/parted-devel/2008-December/\
137     002473.html
138   http://lists.gnu.org/archive/html/bug-parted/2008-12/msg00015.html
139
140   gpt_read now uses SizeOfPartitionEntry instead of the size of
141   GuidPartitionEntry_t.  This ensures that *all* of the partition
142   entries are correctly read.
143   http://lists.alioth.debian.org/pipermail/parted-devel/2008-December/\
144     002465.html
145   http://lists.alioth.debian.org/pipermail/parted-devel/attachments/\
146     20081202/b7c0528d/attachment.txt
147
148   mklabel (interactive mode) now correctly asks for confirmation, when
149   replacing an existent label, without outputting an error message.
150   http://lists.alioth.debian.org/pipermail/parted-devel/2009-January/\
151     002739.html
152
153   resize now handles FAT16 file systems with a 64k cluster.  This
154   configuration is not common, but it is possible.
155   http://parted.alioth.debian.org/cgi-bin/trac.cgi/ticket/207
156
157   parted now ignores devices of the type /dev/md* when probing.  These
158   types of devices should be handled by the device-mapper capabilities
159   of parted.
160   http://lists.alioth.debian.org/pipermail/parted-devel/2009-April/\
161     002781.html
162
163   The parted documentation now describes the differences in the options
164   passed to mkpart for the label types.
165   http://lists.alioth.debian.org/pipermail/parted-devel/2009-April/\
166     002782.html
167
168 ** Changes in behavior
169
170   include/parted/beos.h, include/parted/gnu.h and include/parted/linux.h
171   have been removed.  The symbols contained in these files (GNUSpecific,
172   ped_device_new_from_store, BEOSSpecific, LinuxSpecific,  LINUX_SPECIFIC)
173   were moved to the individual files that need them.
174
175   In libparted, the linux-swap "filesystem" types are now called
176   "linux-swap(v0)" and "linux-swap(v1)" rather than "linux-swap(old)"
177   and "linux-swap(new)" as in parted 1.8, or "linux-swap" as in older
178   versions; "old" and "new" generally make poor names, and v1 is the
179   only format supported by current Linux kernels. Aliases for all
180   previous names are available.
181
182 * Noteworthy changes in release 1.8.8.1 (2007-12-17) [stable]
183
184 ** FIXME: fill in details
185
186 * Noteworthy changes in release 1.8.8 (2007-08-09) [stable]
187
188 ** GNU parted is now licensed under the GNU General Public License version 3
189    or higher.  See the COPYING file for more details.
190
191 ** libparted:
192   - Add compute_block_counts() to improve ext2fs support.
193   - Properly detect 'ext2 fs too small' cases.
194   - Move formatting commands out of translatable strings.
195   - Read an msdos partition table from a device with 2K sectors.
196   - Remove always-false "Unable to open" diagnostic in ped_disk_new(),
197     leave the "unrecognized disk label" diagnostic.
198   - Don't leak partition table buffer in amiga_read().
199   - Don't read/write initialized memory with DEBUG turned on off for
200     'mklabel bsd' and 'mklabel amiga' command calls.
201   - Turn off DEBUG in libparted.c to avoid initializing all allocated
202     memory to '1' bits.
203   - Correct handling of HeaderSize field in GPT labels.
204   - Fix block number used when checking for ext2 fs state.
205   - Add detection support for Xen virtual block devices (/dev/xvd*).
206   - When reading DASD labels, check the filesystem type as well as
207     partition flags to determine what's on the partition.
208   - Add _dm_probe_all() from Debian to probe for all device-mapper
209     devices.
210
211 ** parted:
212   - Fixed exception handling in mkpart and mkpartfs commands.
213   - Add the --dry-run option to the partprobe command.
214   - Update docs: cannot specify 'primary' for a partition on a loop
215     device.
216   - Remove unused functions (get_spaces).
217   - Fix off-by-one error in str_list_print_wrap().
218   - Use xmalloc() and xrealloc() to check return values.
219   - Fix invalid command line argument handling.
220   - Close memory leaks in parted.c and table.c.
221   - Fix warnings when compiling with translation support enabled.
222   - Use a consistent prompt when asking for a file system type.
223   - Update docs: don't reference old versions of gzip.
224
225 ** misc:
226   - Improve the testing framework in the tests/ subdirectory.  Build out
227     more of the testing scripts so we can start using that to ensure we
228     don't introduce regressions in releases.
229   - Support testing with tmpfs filesystems on Linux.
230   - Work around inadequate libreadline in the configure script.
231   - Don't include config.h from internal headers.
232
233 * Noteworthy changes in release 1.8.7 (2007-05-09) [stable]
234
235 ** libparted:
236   - Prevent compilation of DASD code on GNU Hurd systems.
237   - Integrate new unit testing framework for parted and libparted.
238   - Fix primary partition cylinder alignment error for DOS disk labels.
239   - Use PED_PARTITION_NORMAL in place of PED_PARTITION_PRIMARY.
240   - Avoid segfault due to a double free on reiserfs support.
241
242 ** parted:
243   - Fix script mode (-s) for mkfs command in parted.
244   - Suppress "you are not superuser..." warning in script mode.
245   - Fix off-by-one bug in parted when displaying information about the
246     disk.
247   - Do not translate partition names in the 'parted print' command.
248     This causes problems for non-Latin-based character sets.
249   - Send errors to stderr rather than stdout.
250   - Handle command line options independent of the order.
251   - Abort on any invalid option and handle -v and -h first.
252   - Only display the update /etc/fstab message when there has been a
253     change to the disk (a shorter and more direct message too).
254
255 * Noteworthy changes in release 1.8.6 (2007-03-20) [stable]
256
257 ** Revert the implementation of the linux-swap(new) and linux-swap(old) types.
258    The type is 'linux-swap' for v1, v2, and s1suspend swap partitions on Linux.
259
260 * Noteworthy changes in release 1.8.5 (2007-03-20) [stable]
261
262 ** Another minor update.  Both versions 1.8.3 and 1.8.4 lacked po translation
263    files.  These are included with version 1.8.5.
264
265 * Noteworthy changes in release 1.8.4 (2007-03-19) [stable]
266
267 ** Minor bug fix release for 1.8.3 to fix build issues on various
268    platforms:
269   - Use 'uname -m' to determine if we build on System Z or not.
270   - Include <parted/vtoc.h> in <parted/fdasd.h> for format1_label_t
271     definition.
272   - Remove unused variables in libparted/arch/linux.c (-Werror).
273   - Check return values on fgets() and asprint() in libparted/arch/linux.c
274     (-Werror).
275   - Check for tgetent() in libtinfo in the configure script.
276   - Move some macro definitions in <parted/disk.h> to fix a compile
277     problem with gcc-4.1.2 as indicated here:
278     http://lists.gnu.org/archive/html/bug-parted/2007-03/msg00008.html
279
280 * Noteworthy changes in release 1.8.3 (2007-03-16) [stable]
281
282 ** libparted:
283   - Header file clean ups.
284   - Sync the linux-swap header according to the Linux kernel sources.
285   - Enable support for swsusp partitions and the ability to differentiate
286     between old and new versions of linux-swap partitions.
287   - Renaming PARTITION_EXT to PARTITION_DOS_EXT in the DOS disklabel
288     code (consitency with Linux kernel source).
289   - Added libparted.pc pkg-config file.
290   - Remove unused functions, ifdefs, and other code.
291   - Deprecate ped_[register|unregister]_disk_type in favor of
292     ped_disk_type_[register|unregister].
293   - Small test program fixes (in label.c and common.c).
294   - Make functions const-correct.
295   - Handle systems where libreadline is not available.
296   - Preserve starting sector for primary NTFS 3.1 partitions on DOS
297     disklabel.
298   - Handle 2048-byte logical sectors in linux_read().
299   - Use PED_SECTOR_SIZE_DEFAULT macro in place of 512.
300   - Don't assume logical sector size is <= 512B on AIX.
301   - Detect HFS write failure.
302   - Use mkstemp() in place of mktemp().
303   - Added HFS+ resize support.
304   - Don't build DASD support on non-zSeries hardware.
305
306 ** parted/partprobe:
307   - Use fputs() and putchar() in place for printf(), when possible.
308   - Detect/report stdout write errors.
309   - Accept the --version and --help options.
310   - Fix memory leaks in parted(8).
311
312 ** general:
313   - Synchronize the manual page and --help documentation.
314   - GNU autoconf and automake updates.
315   - 'gcc -Wall -Wshadow' warning cleanups.
316   - Don't define _GNU_SOURCE manually.
317   - Documentation updates and cleanups (AUTHORS, copyright notices,
318     etc).
319   - Use gnulib (http://www.gnu.org/software/gnulib/).
320
321 * Noteworthy changes in release 1.8.2 (2007-01-12) [stable]
322
323 ** libparted:
324   - Add the ped_device_cache_remove() function to remove a device from
325     the cache.  This is necessary for some things that use libparted,
326     including pyparted.
327   - Fix a segfault in ped_assert() where the wrong pointer is freed in
328     the backtrace handler.
329   - Only call _disk_warn_loss(disk) in do_mklabel() if disk is not NULL.
330     Fixes a segfault when initializing new volumes.
331   - Dynamically allocate space for exception messages.
332   - Output a backtrace when catching SEGV_MAPPER or a general SIGSEGV.
333
334 ** parted:
335   - Destroy all objects before return when called with --list or --all
336     option.
337   - Zero sized device is shown as 0.00B and not -0.00kB.
338   - Implement 'print devices' command.
339   - Alias 'print list' to 'print all'.
340   - Alias 'mktable' to 'mklabel'.
341
342 ** misc:
343   - Other bug fixes, documentation updates, and translation improvements.
344   - Code and API clean-ups.
345
346 * Noteworthy changes in release 1.8.1 (2006-12-04) [stable]
347
348 ** libparted:
349   - Rework backtrace support.
350   - Code cleanups.
351   - Added --enable-selinux configure option to enable linking libparted with
352     libselinux and libsepol.
353   - Disable ext2fs resize for now, tell user to use resize2fs.
354
355 ** parted:
356   - Fix loop in print_all().
357   - Introduce the -list command-line switch.
358   - Make mktable aliased to mklabel.
359   - Warn before mklabel and mkfs.
360   - Code cleanups in _partition_warn_busy(), _disk_warn_busy(),
361     _partition_warn_loss(), and _disk_warn_loss().
362   - Avoid warning about user permissions when using --version.
363   - Fix 'print' command help.
364   - Proper print when there are no extended partitions, but partition names.
365
366 ** misc:
367   - Generate SHA-1 digest of the archive files and upload those along with the
368     actual archive files.
369   - Update translation files.
370   - Remove automatically generated files from version control.
371
372 * Noteworthy changes in release 1.8.0 (2006-11-17) [stable]
373
374 ** libparted:
375   - GPT fixes:
376        - Correctly handle disks with non-512 byte sector sizes
377        - Support LUN resizing (see new space, allow parted to use it)
378        - Prevent overlap of LastUsableLBA and PartitionEntryLBA in backup GPT
379   - Prevent SIGFPE when FAT sector size is 0
380   - Add ped_exception_get_handler()
381   - DASD support for IBM zSeries systems
382   - AIX disk label support
383   - Detect Promise SX8 storage devices
384   - Macintosh (ppc and x86) disk label improvements:
385        - Prevent LVM and RAID partition types from corrupting the table
386        - Fix removal of driver partition
387   - Add support binary units (MiB, KiB, GiB)
388   - In ped_register_disk_type(), handle disk_types==NULL case
389   - In ped_unregister_disk_type(), handle case where type is not registered
390   - Fix geometry read problems on 64-bit Macs (and probably other 64-bit systems)
391   - Add support for /dev/mapper devices via libdevmapper library
392   - Detect Apple_Boot partition types correctly on MacOS X 10.4 systems
393
394 ** parted:
395   - Various bug fixes, signal handling fixes, and spelling error fixes
396   - UI improvements to display more information about the disk and transport
397     layer
398
399 ========================================================================
400
401 Copyright (C) 2001-2010 Free Software Foundation, Inc.
402
403 Permission is granted to copy, distribute and/or modify this document
404 under the terms of the GNU Free Documentation License, Version 1.3 or
405 any later version published by the Free Software Foundation; with no
406 Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
407 Texts.  A copy of the license is included in the ``GNU Free
408 Documentation License'' file as part of this distribution.