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
/
cdrom.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
cdrom: Demote `scsi_is_ready` return print to debug level
Paul Menzel
2020-05-21
1
-1
/
+1
*
pretty boot menu entry for cdrom drives
Gerd Hoffmann
2018-10-05
1
-0
/
+46
*
block: Rename disk_op_s->drive_gf to drive_fl
Kevin O'Connor
2017-09-27
1
-3
/
+3
*
Minor - move declaration of CDRom_locks to code that uses it
Kevin O'Connor
2015-07-24
1
-3
/
+0
*
block: Rename process_XXX_op() functions to XXX_process_op()
Kevin O'Connor
2015-07-14
1
-1
/
+1
*
block: Route scsi style commands through 'struct disk_op_s'
Kevin O'Connor
2015-07-14
1
-3
/
+3
*
block: Introduce default_process_op() with common command handling codes
Kevin O'Connor
2015-07-14
1
-6
/
+1
*
Make sure all code checks for malloc failures
Kevin O'Connor
2015-07-04
1
-1
/
+0
*
Add 'measurement' code to the BIOS
Stefan Berger
2015-06-01
1
-0
/
+4
*
cdrom: Break up very large read requests into smaller requests
Kevin O'Connor
2014-12-29
1
-4
/
+13
*
cdrom: call scsi_process_op() instead of cdb_read()
Kevin O'Connor
2014-12-29
1
-3
/
+4
*
Move cdemu call interface and disk_ret helper code to disk.c.
Kevin O'Connor
2014-06-04
1
-17
/
+0
*
cdemu: store internal cdemu fields in standard "el-torito" spec format.
Kevin O'Connor
2014-06-04
1
-47
/
+25
*
Remove unnecesary updates of the disk op->count field.
Kevin O'Connor
2013-12-27
1
-1
/
+0
*
Convert op->drive_g from a 16bit pointer to a 32 bit "GLOBALFLAT" pointer.
Kevin O'Connor
2013-10-26
1
-16
/
+15
*
Rename fields of 'struct chs_s' and use in floppy lba2chs().
Kevin O'Connor
2013-10-14
1
-15
/
+15
*
Split disk.h into block.h and std/disk.h.
Kevin O'Connor
2013-09-18
1
-16
/
+3
*
Move function definitions for output.c from util.h to new file output.h.
Kevin O'Connor
2013-09-18
1
-3
/
+3
*
Move malloc code from pmm.c to new files malloc.c and malloc.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
-1
/
+2
*
Move code centered around specific hardware devices to src/hw/
Kevin O'Connor
2013-09-02
1
-2
/
+2
*
Use CONFIG_ prefix for Kconfig variables; use BUILD_ for others.
Kevin O'Connor
2013-02-20
1
-1
/
+1
*
Convert VAR16VISIBLE, VAR16EXPORT, and VAR32VISIBLE to VARFSEG.
Kevin O'Connor
2013-02-18
1
-1
/
+1
*
Normalize POST initialization function name suffixes.
Kevin O'Connor
2013-02-05
1
-2
/
+2
*
Unify ATAPI command processing.
Kevin O'Connor
2012-07-21
1
-1
/
+1
*
Minor - remove CLEARBITS_BDA and SETBITS_BDA macros.
Kevin O'Connor
2012-06-10
1
-1
/
+1
*
Convert disk code EBDA variables to VARLOW variables.
Kevin O'Connor
2012-05-20
1
-42
/
+42
*
usb-msc: go through TEST UNIT READY for hard disks.
Paolo Bonzini
2011-11-17
1
-46
/
+2
*
cdrom: use TEST UNIT READY to detect ready medium
Paolo Bonzini
2011-11-17
1
-13
/
+3
*
ahci/cdrom: shared bounce buffer
Gerd Hoffmann
2011-08-06
1
-6
/
+4
*
Remove Drives global struct in favor of independent global variables.
Kevin O'Connor
2010-12-29
1
-1
/
+1
*
Create separate IPL entry for each CD/DVD
Gleb Natapov
2010-12-12
1
-3
/
+4
*
Cleanup - it's no longer necessary to manually reset global variables.
Kevin O'Connor
2010-09-25
1
-2
/
+0
*
Allocate cdemu buffer in low mem instead of ebda.
Kevin O'Connor
2010-06-06
1
-15
/
+18
*
Rename check_time() to check_tsc().
Kevin O'Connor
2010-05-23
1
-1
/
+1
*
Dynamically allocate ata_channel info; introduce custom atadrive_s struct.
Kevin O'Connor
2010-02-28
1
-8
/
+11
*
Move common "command data block" functions to new file blockcmd.c.
Kevin O'Connor
2010-02-17
1
-48
/
+11
*
Dynamically allocate each drive_g with malloc_fseg().
Kevin O'Connor
2010-02-15
1
-4
/
+6
*
Add common "block command" definitions and update cdrom code.
Kevin O'Connor
2010-02-15
1
-33
/
+36
*
Be sure to add "void" to all function prototypes that take no args.
Kevin O'Connor
2010-01-03
1
-1
/
+1
*
Handle tsc rollover.
Kevin O'Connor
2009-10-22
1
-1
/
+1
*
Pass 'drive_s' pointer instead of driveid.
Kevin O'Connor
2009-10-22
1
-30
/
+27
*
Unify cd emulation access and main disk access code.
Kevin O'Connor
2009-09-12
1
-68
/
+96
*
Merge cdrom 13xx handlers with main disk 13xx handlers.
Kevin O'Connor
2009-08-18
1
-164
/
+9
*
Add floppy controllers to "drives" list also.
Kevin O'Connor
2009-08-16
1
-1
/
+1
*
Store cdrom emulated driveid directly.
Kevin O'Connor
2009-08-11
1
-11
/
+11
*
Use variable name "driveid" consistently (instead of "device").
Kevin O'Connor
2009-08-11
1
-50
/
+50
*
Separate ATA code from generic disk code.
Kevin O'Connor
2009-08-11
1
-5
/
+5
*
Misc ATA cleanups.
Kevin O'Connor
2009-08-10
1
-3
/
+1
*
Route disk_op commands by drive type - not by command.
Kevin O'Connor
2009-08-09
1
-2
/
+3
[next]