1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Add ps3disk devices.

This commit is contained in:
Alasdair Kergon 2007-07-26 13:28:32 +00:00
parent 1a5d6bd23d
commit 3579b652e7
2 changed files with 2 additions and 1 deletions

View File

@ -10,7 +10,7 @@ Version 2.02.28 -
In _line_append, use "sizeof buf - 1" rather than equivalent "4095" In _line_append, use "sizeof buf - 1" rather than equivalent "4095"
Introduce is_same_inode macro, now including a comparison of st_dev. Introduce is_same_inode macro, now including a comparison of st_dev.
Don't leak a file descriptor in _lock_file(), when flock fails. Don't leak a file descriptor in _lock_file(), when flock fails.
Add SUN's LDOM virtual block device to filters Add SUN's LDOM virtual block device (vdisk) and ps3disk to filters.
Split metadata-external.h out from metadata.h for the tools to use. Split metadata-external.h out from metadata.h for the tools to use.
Version 2.02.27 - 17th July 2007 Version 2.02.27 - 17th July 2007

View File

@ -76,6 +76,7 @@ static const device_info_t device_info[] = {
{"device-mapper", 1}, /* Other mapped devices */ {"device-mapper", 1}, /* Other mapped devices */
{"xvd", 16}, /* Xen virtual block device */ {"xvd", 16}, /* Xen virtual block device */
{"vdisk", 8}, /* SUN's LDOM virtual block device */ {"vdisk", 8}, /* SUN's LDOM virtual block device */
{"ps3disk", 16}, /* PlayStation 3 internal disk */
{NULL, 0} {NULL, 0}
}; };