diff options
author | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-01-07 17:32:33 +0000 |
---|---|---|
committer | aliguori <aliguori@c046a42c-6fe2-441c-8c8c-71466251a162> | 2009-01-07 17:32:33 +0000 |
commit | fa879c641435bec4b79872ad14b9a90c8b7172f3 (patch) | |
tree | d8ade34df31c450b8d597a396f29269a749deb45 /sysemu.h | |
parent | ff4b91c2f7e51dab148aba4bf43c2f39f219e495 (diff) | |
download | qemu-fa879c641435bec4b79872ad14b9a90c8b7172f3.zip |
add "serial" parameter to -drive flag (Gleb Natapov)
Windows calculates HW "uniqueness" based on a hard drive serial number
among other things. The patch allows to specify drive serial number
from a command line.
Signed-off-by: Gleb Natapov <gleb@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6214 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'sysemu.h')
-rw-r--r-- | sysemu.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -131,6 +131,7 @@ typedef struct DriveInfo { BlockInterfaceType type; int bus; int unit; + char serial[21]; } DriveInfo; #define MAX_IDE_DEVS 2 @@ -142,6 +143,7 @@ extern DriveInfo drives_table[MAX_DRIVES+1]; extern int drive_get_index(BlockInterfaceType type, int bus, int unit); extern int drive_get_max_bus(BlockInterfaceType type); +extern const char *drive_get_serial(BlockDriverState *bdrv); /* serial ports */ |