Sign in

gwj / at91sam9263 · Commits

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Snippets
  • Commits 8,232
  • Compare
  • Branches 2
  • Tags 0
  • at91sam9263
03 Jul, 2009
1 commit
  • target-mips: fix MADD and MSUB/MSUBU instructions ...
    98070ce0
    MADD was not correctly writing to HI.
    
    MSUB/MSUBU are specified as `HI||LO - product', not `product - HI||LO'.
    
    Signed-off-by: Nathan Froyd <froydnj@codesourcery.com>
    Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
    Nathan Froyd authored
    2009-07-03 03:28:20 +0200  
    Browse Code »

02 Jul, 2009
3 commits
  • Fix hxtool. ...
    7d69c52e
    When converting from hx to texi format, hxtool (or to be
    more precise sh which interprets hxtool) used standard
    shell expansion of wildcards while writing lines to the
    output.
    
    Thus, something like "Password: ********"
    looked very different in the generated documentation.
    
    The patch disables this unwanted wildcard expansion.
    
    Signed-off-by: Stefan Weil <weil@mail.berlios.de>
    Stefan Weil authored
    2009-07-02 17:54:34 +0000  
    Browse File »
  • Use ctz64 in favor of ffsll ...
    6ad8702a
    Not all host platforms support ffsll.
    
    Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
    Jan Kiszka authored
    2009-07-02 17:07:08 +0000  
    Browse Code »
  • Respect the standard
    1447379b
    malc authored
    2009-07-02 18:20:33 +0400  
    Browse Code »

01 Jul, 2009
5 commits
  • Use pstrcpy and pstrcat to avoid OpenBSD linker warning ...
    3da6abd4
    Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
    Blue Swirl authored
    2009-07-01 20:29:39 +0000  
    Browse Code »
  • Suppress a GCC warning ...
    97b35e35
    Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
    Blue Swirl authored
    2009-07-01 19:30:50 +0000  
    Browse File »
  • Fix breakage by obsolete _P() for good ...
    6cb9c6d3
    Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
    Blue Swirl authored
    2009-07-01 19:11:17 +0000  
    Browse File »
  • Fix sdl_zoom compile problems on OpenBSD ...
    22d091b3
    Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
    Blue Swirl authored
    2009-07-01 18:49:34 +0000  
    Browse Code »
  • Fix missing strnlen problems ...
    d43277c5
    Fix missing strnlen (a GNU extension) problems by using qemu_strnlen
    used for user emulators also for system emulators.
    
    Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
    Blue Swirl authored
    2009-07-01 18:24:44 +0000  
    Browse File »

30 Jun, 2009
2 commits
  • Fix typo ...
    57a943c4
    Signed-off-by: malc <av1474@comtv.ru>
    malc authored
    2009-06-30 18:47:48 +0400  
    Browse Code »
  • Remove bogus -Werror ...
    9c7f170e
    Revert rules.mak changes from aba800a3.  These should not have been here
    to start with.
    
    Signed-off-by: Paul Brook <paul@codesourcery.com>
    Paul Brook authored
    2009-06-30 12:10:52 +0100  
    Browse File »

29 Jun, 2009
29 commits
  • Replace -no-virtio-balloon by -balloon ...
    7d4c3d53
    We want to do (at least) two things to the virtio-balloon device:
    suppress it, and control its PCI address.  Option -no-virtio-balloon
    lets us do only the former.  To get the latter, replace
    -no-virtio-balloon with
    
        -balloon none   disable balloon device
        -balloon virtio[,addr=str]
                        enable virtio balloon device (default)
    
    Syntax suggested by Anthony Liguori.
    
    Signed-off-by: Markus Armbruster <armbru@redhat.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Markus Armbruster authored
    2009-06-29 14:18:08 -0500  
    Browse Code »
  • slirp: tftp: Relax filename format check ...
    74efd61a
    [ Applies on top of my recently posted slirp series. ]
    
    Allow tftp requests with filenames that do not start with a slash.
    
    Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Jan Kiszka authored
    2009-06-29 14:18:08 -0500  
    Browse Code »
  • sdl: Fix memory leakage ...
    229609dd
    Valgrind was so kind to remark that no one bothers to release keycodes
    after use and that something is fishy about cleaning up the requested
    keyboard descriptor. With this patch applied, we no longer leak about
    12k during startup.
    
    Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Jan Kiszka authored
    2009-06-29 14:18:08 -0500  
    Browse Code »
  • KVM: x86: Refactor persistent CPU state ...
    059b8b1e
    This patch aligns the KVM-related layout and encoding of the CPU state
    to be saved to disk or migrated with qemu-kvm. The major differences are
    reordering of fields and a compressed interrupt_bitmap into a single
    number as there can be no more than one pending IRQ at a time.
    
    Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Jan Kiszka authored
    2009-06-29 14:18:08 -0500  
    Browse Dir »
  • x86: Factor out pc_new_cpu ...
    3a31f36a
    At this point, this refactoring looks like overkill. But we will need it
    for CPU hotplugging, and qemu-kvm already carries it. Merging it early
    would help qemu-kvm when rebasing against upstream.
    
    Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Jan Kiszka authored
    2009-06-29 14:18:08 -0500  
    Browse Code »
  • monitor: Refactor acl commnds ...
    15dfcd45
    Refactor the ACL monitor interface to make full use of the monitor
    command dispatcher. This also gives proper help formatting and command
    completion. Note that 'acl allow' and 'acl deny' were combined to
    'acl_add aclname match allow|deny [index]' for consistency reasons.
    
    Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Jan Kiszka authored
    2009-06-29 14:18:08 -0500  
    Browse Code »
  • monitor: Add completion for help command ...
    f3353c6b
    Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Jan Kiszka authored
    2009-06-29 14:18:08 -0500  
    Browse Code »
  • Revert "Introduce reset notifier order" ...
    a08d4367
    This reverts commit 8217606e (and
    updates later added users of qemu_register_reset), we solved the
    problem it originally addressed less invasively.
    
    Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Jan Kiszka authored
    2009-06-29 14:18:08 -0500  
    Browse Code »
  • monitor: Make pci_add device options truely optional ...
    a62acdc0
    Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Jan Kiszka authored
    2009-06-29 14:18:07 -0500  
    Browse Code »
  • kvm: Rework VCPU synchronization ...
    8d2ba1fb
    During startup and after reset we have to synchronize user space to the
    in-kernel KVM state. Namely, we need to transfer the VCPU registers when
    they change due to VCPU as well as APIC reset.
    
    This patch refactors the required hooks so that kvm_init_vcpu registers
    its own per-VCPU reset handler and adds a cpu_synchronize_state to the
    APIC reset. That way we no longer depend on the new reset order (and can
    drop this disliked interface again) and we can even drop a KVM hook in
    main().
    
    Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Jan Kiszka authored
    2009-06-29 14:18:07 -0500  
    Browse File »
  • monitor: Drop pci_addr prefix from hotplug commands ...
    e9283f8b
    The "pci_addr=" prefix currently required by pci_add/remove and
    drive_add has no practical use. Drop it, but still silently accept it
    for backward compatibility.
    
    Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Jan Kiszka authored
    2009-06-29 14:18:07 -0500  
    Browse Dir »
  • qcow2: Cache refcount blocks during snapshot creation ...
    3b88e52b
    The really time consuming part of snapshotting is to adjust the reference count
    of all clusters. Currently after each adjusted cluster the refcount block is
    written to disk.
    
    Don't write each single byte immediately to disk but cache all writes to the
    refcount block and write them out once we're done with the block.
    
    Signed-off-by: Kevin Wolf <kwolf@redhat.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Kevin Wolf authored
    2009-06-29 14:18:07 -0500  
    Browse Code »
  • block-raw: Allow pread beyond the end of growable images ...
    22afa7b5
    When using O_DIRECT, qcow2 snapshots didn't work any more for me. In the
    process of creating the snapshot, qcow2 tries to pwrite some new information
    (e.g. new L1 table) which will often end up being after the old end of the
    image file. Now pwrite tries to align things and reads the old contents of the
    file, read returns 0 because there is nothing to read after the end of file and
    pwrite is stuck in an endless loop.
    
    This patch allows to pread beyond the end of an image file. Whenever the
    given offset is after the end of the image file, the read succeeds and fills
    the buffer with zeros.
    
    Signed-off-by: Kevin Wolf <kwolf@redhat.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Kevin Wolf authored
    2009-06-29 14:18:07 -0500  
    Browse Code »
  • make tags useful for block drivers and hardaware devices ...
    ae95ade0
    Signed-off-by: Juan Quintela <quintela@redhat.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Juan Quintela authored
    2009-06-29 14:18:07 -0500  
    Browse File »
  • Substitute ifdef CONFIG_FOO by sound-obj- ...
    b6271b48
    Signed-off-by: Juan Quintela <quintela@redhat.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Juan Quintela authored
    2009-06-29 14:18:07 -0500  
    Browse Code »
  • Rename SOUND_HW to sound-obj-y ...
    5f877627
    Signed-off-by: Juan Quintela <quintela@redhat.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Juan Quintela authored
    2009-06-29 14:18:07 -0500  
    Browse Code »
  • Substitute ifdef CONFIG_FOO by obj- ...
    943e0a31
    Signed-off-by: Juan Quintela <quintela@redhat.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Juan Quintela authored
    2009-06-29 14:18:07 -0500  
    Browse Code »
  • Substitute ifdef CONFIG_FOO by obj- ...
    0e22fd2f
    Signed-off-by: Juan Quintela <quintela@redhat.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Juan Quintela authored
    2009-06-29 14:18:07 -0500  
    Browse File »
  • move CONFIG_* values from yes to y ...
    e34af2ce
    Signed-off-by: Juan Quintela <quintela@redhat.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Juan Quintela authored
    2009-06-29 14:18:07 -0500  
    Browse Code »
  • Rename OBJS to obj-y ...
    6ef859b3
    Signed-off-by: Juan Quintela <quintela@redhat.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Juan Quintela authored
    2009-06-29 14:18:06 -0500  
    Browse File »
  • Rename USER_OBJS to user-obj-y ...
    e11b1dce
    Signed-off-by: Juan Quintela <quintela@redhat.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Juan Quintela authored
    2009-06-29 14:18:06 -0500  
    Browse File »
  • Rename XEN_OBJS to xen-obj-y ...
    78892528
    Signed-off-by: Juan Quintela <quintela@redhat.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Juan Quintela authored
    2009-06-29 14:18:06 -0500  
    Browse Code »
  • Rename SLIRP_OBJS to slirp-obj-y ...
    f835ed1c
    Signed-off-by: Juan Quintela <quintela@redhat.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Juan Quintela authored
    2009-06-29 14:18:06 -0500  
    Browse Code »
  • Rename AUDIO_OBJS to audio-obj-y ...
    eda959bd
    Signed-off-by: Juan Quintela <quintela@redhat.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Juan Quintela authored
    2009-06-29 14:18:06 -0500  
    Browse Code »
  • Rename BLOCK_OBJS to block-obj-y ...
    319f08ea
    Signed-off-by: Juan Quintela <quintela@redhat.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Juan Quintela authored
    2009-06-29 14:18:06 -0500  
    Browse Code »
  • Rename OBJS to obj-y ...
    a8e492c0
    Signed-off-by: Juan Quintela <quintela@redhat.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Juan Quintela authored
    2009-06-29 14:18:06 -0500  
    Browse Code »
  • Rename LIBOBJS to libobj-y ...
    c9e0df73
    Signed-off-by: Juan Quintela <quintela@redhat.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Juan Quintela authored
    2009-06-29 14:18:06 -0500  
    Browse Code »
  • Rename OBJS to obj-y ...
    4f3a1d56
    Signed-off-by: Juan Quintela <quintela@redhat.com>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Juan Quintela authored
    2009-06-29 14:18:06 -0500  
    Browse File »
  • cpu_unregister_map_client: fix memory leak. ...
    34d5e948
    fix memory leak in cpu_unregister_map_client() and cpu_notify_map_clients().
    
    Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
    Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
    Isaku Yamahata authored
    2009-06-29 14:18:06 -0500  
    Browse Code »