index
:
seabios
guest-hint
kvmtool
master
memory2-logging
microvm
pci-4g-map
pci64-cfg
seabios
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
disk.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Split disk.h into block.h and std/disk.h.
Kevin O'Connor
2013-09-18
1
-26
/
+2
*
Move function definitions for output.c from util.h to new file output.h.
Kevin O'Connor
2013-09-18
1
-5
/
+5
*
Move stacks.c definitions from util.h to new file stacks.h.
Kevin O'Connor
2013-09-18
1
-0
/
+1
*
Rename util.c to string.c and introduce string.h.
Kevin O'Connor
2013-09-18
1
-0
/
+1
*
Move code centered around specific hardware devices to src/hw/
Kevin O'Connor
2013-09-02
1
-3
/
+3
*
PIC code cleanups.
Kevin O'Connor
2013-07-14
1
-2
/
+2
*
Provide correct dpte pointer to indicate absence of dpte
Bruce Rogers
2012-10-27
1
-1
/
+1
*
Unify ATAPI command processing.
Kevin O'Connor
2012-07-21
1
-3
/
+3
*
Fix winxp boot regression introduced in ecdc655a.
Kevin O'Connor
2012-06-02
1
-2
/
+2
*
Rework disk.c:fillLCHS to avoid using pointer parameters.
Kevin O'Connor
2012-05-30
1
-17
/
+19
*
Run all hardware irq handlers on the extra stack.
Kevin O'Connor
2012-05-30
1
-2
/
+2
*
Remove disk GET/SET_INT13DPT and GET/SET_INT13EXT macros.
Kevin O'Connor
2012-05-24
1
-56
/
+59
*
Convert disk code EBDA variables to VARLOW variables.
Kevin O'Connor
2012-05-20
1
-43
/
+32
*
Mark disk.c functions that take an address of a stack variable as noinline.
Kevin O'Connor
2012-03-25
1
-6
/
+6
*
add virtio-scsi driver
Paolo Bonzini
2012-03-06
1
-1
/
+2
*
disk: handle LBA I/O with zero sector count
Kevin O'Connor
2012-02-11
1
-0
/
+5
*
always specify virtio-blk rather than virtio
Paolo Bonzini
2011-11-17
1
-2
/
+2
*
support T13 EDD3.0 spec
Gleb Natapov
2011-01-16
1
-15
/
+27
*
Remove Drives global struct in favor of independent global variables.
Kevin O'Connor
2010-12-29
1
-1
/
+1
*
Provide full EDD 3.0 info for virtio disk
Gleb Natapov
2010-12-24
1
-53
/
+73
*
Call to int1552 (from int1346) should set regs->dl.
Kevin O'Connor
2010-03-20
1
-0
/
+1
*
Dynamically allocate ata_channel info; introduce custom atadrive_s struct.
Kevin O'Connor
2010-02-28
1
-12
/
+16
*
Introduce standard warnings for allocation failures and timeouts.
Kevin O'Connor
2010-02-14
1
-7
/
+3
*
Be sure to add "void" to all function prototypes that take no args.
Kevin O'Connor
2010-01-03
1
-1
/
+1
*
Commit compiled dsdt file; misc comment updates.
Kevin O'Connor
2009-12-30
1
-0
/
+1
*
Distinguish between debug reports for unimplemented vs invalid calls.
Kevin O'Connor
2009-12-13
1
-5
/
+16
*
Support ISA ATA devices for qemu's "-M isapc" mode.
Kevin O'Connor
2009-12-05
1
-9
/
+19
*
Misc updates.
Kevin O'Connor
2009-11-25
1
-1
/
+1
*
Pass 'drive_s' pointer instead of driveid.
Kevin O'Connor
2009-10-22
1
-143
/
+131
*
Unify cd emulation access and main disk access code.
Kevin O'Connor
2009-09-12
1
-101
/
+65
*
Replace common segment/offset pairs with struct segoff_s.
Kevin O'Connor
2009-09-09
1
-3
/
+1
*
Merge cdrom 13xx handlers with main disk 13xx handlers.
Kevin O'Connor
2009-08-18
1
-24
/
+112
*
Unify floppy and harddrive command routing.
Kevin O'Connor
2009-08-16
1
-40
/
+40
*
Unify some floppy and disk functions.
Kevin O'Connor
2009-08-16
1
-11
/
+49
*
Change send_disk_op() to return the bios status code.
Kevin O'Connor
2009-08-16
1
-24
/
+10
*
Add floppy controllers to "drives" list also.
Kevin O'Connor
2009-08-16
1
-17
/
+21
*
Store cdrom emulated driveid directly.
Kevin O'Connor
2009-08-11
1
-1
/
+1
*
Use variable name "driveid" consistently (instead of "device").
Kevin O'Connor
2009-08-11
1
-104
/
+104
*
Separate ATA code from generic disk code.
Kevin O'Connor
2009-08-11
1
-37
/
+37
*
Densely populate ATA.devices list.
Kevin O'Connor
2009-08-11
1
-12
/
+12
*
Misc ATA cleanups.
Kevin O'Connor
2009-08-10
1
-13
/
+15
*
Route disk_op commands by drive type - not by command.
Kevin O'Connor
2009-08-09
1
-27
/
+23
*
Remove unused cdemu ATA code.
Kevin O'Connor
2009-08-09
1
-2
/
+1
*
Implement cdrom disk emulation at high-level instead of in low-level ATA.
Kevin O'Connor
2009-08-09
1
-32
/
+69
*
Separate cdemu disk accesses from regular disk accesses.
Kevin O'Connor
2009-08-09
1
-53
/
+73
*
Don't 'autodetect' ATA PIO32 mode - use compile def instead.
Kevin O'Connor
2009-02-27
1
-2
/
+1
*
Bug fix - cdrom media emulation only moves drives if of the same type.
Kevin O'Connor
2009-02-17
1
-2
/
+3
*
Fix apparent bug in int1348 -- checksum didn't have regs->si offset.
Kevin O'Connor
2009-01-21
1
-1
/
+2
*
Implement memcpy_far and checksum_far, and replace _fl variants.
Kevin O'Connor
2009-01-19
1
-8
/
+8
*
Rename MAKE_FARPTR (and similar) to MAKE_FLATPTR.
Kevin O'Connor
2009-01-19
1
-8
/
+8
[next]