qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/5] docs: fix references to files converted to rST
@ 2021-05-17 15:16 Stefano Garzarella
  2021-05-17 15:16 ` [PATCH 1/5] docs: fix references to docs/devel/tracing.rst Stefano Garzarella
                   ` (5 more replies)
  0 siblings, 6 replies; 9+ messages in thread
From: Stefano Garzarella @ 2021-05-17 15:16 UTC (permalink / raw)
  To: qemu-devel
  Cc: Daniel P . Berrange, qemu-trivial, Cornelia Huck, Stefan Hajnoczi,
	Paolo Bonzini, Marc-André Lureau,
	Philippe Mathieu-Daudé

Trivial patches that fix references to old files in docs/ converted
to rST.

Broken references found running:

    for f in $(git grep -oh "docs.*txt")
    do
        test -f "$f" || echo "$f not exists"
    done

Stefano Garzarella (5):
  docs: fix references to docs/devel/tracing.rst
  docs: fix references to docs/devel/atomics.rst
  docs: fix references to docs/devel/build-system.rst
  docs: fix references to docs/specs/tpm.rst
  docs: fix references to docs/devel/s390-dasd-ipl.rst

 docs/devel/lockcnt.txt          | 2 +-
 include/qemu/atomic.h           | 4 ++--
 include/qemu/atomic128.h        | 2 +-
 hw/acpi/tpm.c                   | 2 +-
 hw/tpm/tpm_ppi.c                | 2 +-
 pc-bios/s390-ccw/dasd-ipl.c     | 2 +-
 MAINTAINERS                     | 4 ++--
 accel/kvm/trace-events          | 2 +-
 accel/tcg/trace-events          | 2 +-
 audio/trace-events              | 2 +-
 authz/trace-events              | 2 +-
 backends/tpm/trace-events       | 2 +-
 backends/trace-events           | 2 +-
 block/trace-events              | 2 +-
 chardev/trace-events            | 2 +-
 crypto/trace-events             | 2 +-
 hw/9pfs/trace-events            | 2 +-
 hw/acpi/trace-events            | 2 +-
 hw/adc/trace-events             | 2 +-
 hw/alpha/trace-events           | 2 +-
 hw/arm/trace-events             | 2 +-
 hw/audio/trace-events           | 2 +-
 hw/block/dataplane/trace-events | 2 +-
 hw/block/trace-events           | 2 +-
 hw/char/trace-events            | 2 +-
 hw/display/trace-events         | 2 +-
 hw/dma/trace-events             | 2 +-
 hw/gpio/trace-events            | 2 +-
 hw/hppa/trace-events            | 2 +-
 hw/i2c/trace-events             | 2 +-
 hw/i386/trace-events            | 2 +-
 hw/i386/xen/trace-events        | 2 +-
 hw/ide/trace-events             | 2 +-
 hw/input/trace-events           | 2 +-
 hw/intc/trace-events            | 2 +-
 hw/isa/trace-events             | 2 +-
 hw/mem/trace-events             | 2 +-
 hw/misc/macio/trace-events      | 2 +-
 hw/misc/trace-events            | 2 +-
 hw/net/trace-events             | 2 +-
 hw/nvram/trace-events           | 2 +-
 hw/pci-host/trace-events        | 2 +-
 hw/pci/trace-events             | 2 +-
 hw/ppc/trace-events             | 2 +-
 hw/rdma/trace-events            | 2 +-
 hw/rdma/vmw/trace-events        | 2 +-
 hw/rtc/trace-events             | 2 +-
 hw/s390x/trace-events           | 2 +-
 hw/scsi/trace-events            | 2 +-
 hw/sd/trace-events              | 2 +-
 hw/sparc/trace-events           | 2 +-
 hw/sparc64/trace-events         | 2 +-
 hw/timer/trace-events           | 2 +-
 hw/tpm/trace-events             | 2 +-
 hw/usb/trace-events             | 2 +-
 hw/vfio/trace-events            | 2 +-
 hw/virtio/trace-events          | 2 +-
 hw/watchdog/trace-events        | 2 +-
 hw/xen/trace-events             | 2 +-
 io/trace-events                 | 2 +-
 linux-user/trace-events         | 2 +-
 migration/trace-events          | 2 +-
 monitor/trace-events            | 2 +-
 nbd/trace-events                | 2 +-
 net/trace-events                | 2 +-
 qapi/trace-events               | 2 +-
 qom/trace-events                | 2 +-
 scripts/simpletrace.py          | 2 +-
 scsi/trace-events               | 2 +-
 softmmu/trace-events            | 2 +-
 target/arm/trace-events         | 2 +-
 target/hppa/trace-events        | 2 +-
 target/i386/kvm/trace-events    | 2 +-
 target/i386/trace-events        | 2 +-
 target/mips/trace-events        | 2 +-
 target/ppc/trace-events         | 2 +-
 target/s390x/trace-events       | 2 +-
 target/sparc/trace-events       | 2 +-
 tcg/README                      | 2 +-
 tests/qapi-schema/meson.build   | 2 +-
 trace-events                    | 2 +-
 ui/trace-events                 | 2 +-
 util/trace-events               | 2 +-
 83 files changed, 85 insertions(+), 85 deletions(-)

-- 
2.31.1



^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2021-05-17 16:35 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-05-17 15:16 [PATCH 0/5] docs: fix references to files converted to rST Stefano Garzarella
2021-05-17 15:16 ` [PATCH 1/5] docs: fix references to docs/devel/tracing.rst Stefano Garzarella
2021-05-17 16:10   ` Cornelia Huck
2021-05-17 15:16 ` [PATCH 2/5] docs: fix references to docs/devel/atomics.rst Stefano Garzarella
2021-05-17 15:17 ` [PATCH 3/5] docs: fix references to docs/devel/build-system.rst Stefano Garzarella
2021-05-17 15:17 ` [PATCH 4/5] docs: fix references to docs/specs/tpm.rst Stefano Garzarella
2021-05-17 15:17 ` [PATCH 5/5] docs: fix references to docs/devel/s390-dasd-ipl.rst Stefano Garzarella
2021-05-17 16:11   ` Cornelia Huck
2021-05-17 16:06 ` [PATCH 0/5] docs: fix references to files converted to rST Philippe Mathieu-Daudé

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).