OSDN Git Service

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