mirror of
				https://github.com/qemu/qemu.git
				synced 2025-10-30 19:15:42 +00:00 
			
		
		
		
	 d0fb9657a3
			
		
	
	
		d0fb9657a3
		
	
	
	
	
		
			
			Commit e50caf4a5c ("tracing: convert documentation to rST")
converted docs/devel/tracing.txt to docs/devel/tracing.rst.
We still have several references to the old file, so let's fix them
with the following command:
  sed -i s/tracing.txt/tracing.rst/ $(git grep -l docs/devel/tracing.txt)
Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210517151702.109066-2-sgarzare@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
		
	
			
		
			
				
	
	
		
			24 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # See docs/devel/tracing.rst for syntax documentation.
 | |
| 
 | |
| # isa-superio.c
 | |
| superio_create_parallel(int id, uint16_t base, unsigned int irq) "id=%d, base 0x%03x, irq %u"
 | |
| superio_create_serial(int id, uint16_t base, unsigned int irq) "id=%d, base 0x%03x, irq %u"
 | |
| superio_create_floppy(int id, uint16_t base, unsigned int irq) "id=%d, base 0x%03x, irq %u"
 | |
| superio_create_ide(int id, uint16_t base, unsigned int irq) "id=%d, base 0x%03x, irq %u"
 | |
| 
 | |
| # pc87312.c
 | |
| pc87312_io_read(uint32_t addr, uint32_t val) "read addr=0x%x val=0x%x"
 | |
| pc87312_io_write(uint32_t addr, uint32_t val) "write addr=0x%x val=0x%x"
 | |
| 
 | |
| # apm.c
 | |
| apm_io_read(uint8_t addr, uint8_t val) "read addr=0x%x val=0x%02x"
 | |
| apm_io_write(uint8_t addr, uint8_t val) "write addr=0x%x val=0x%02x"
 | |
| 
 | |
| # vt82c686.c
 | |
| via_isa_write(uint32_t addr, uint32_t val, int len) "addr 0x%x val 0x%x len 0x%x"
 | |
| via_pm_write(uint32_t addr, uint32_t val, int len) "addr 0x%x val 0x%x len 0x%x"
 | |
| via_pm_io_read(uint32_t addr, uint32_t val, int len) "addr 0x%x val 0x%x len 0x%x"
 | |
| via_pm_io_write(uint32_t addr, uint32_t val, int len) "addr 0x%x val 0x%x len 0x%x"
 | |
| via_superio_read(uint8_t addr, uint8_t val) "addr 0x%x val 0x%x"
 | |
| via_superio_write(uint8_t addr, uint32_t val) "addr 0x%x val 0x%x"
 |