qemu-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-commits] [qemu/qemu] e35704: numa: Move NUMA declarations from sys


From: GitHub
Subject: [Qemu-commits] [qemu/qemu] e35704: numa: Move NUMA declarations from sysemu.h to numa...
Date: Mon, 02 Mar 2015 05:30:05 -0800

  Branch: refs/heads/master
  Home:   https://github.com/qemu/qemu
  Commit: e35704ba9ce0cd1e3c401f3bfbf3faf98b0b6885
      
https://github.com/qemu/qemu/commit/e35704ba9ce0cd1e3c401f3bfbf3faf98b0b6885
  Author: Eduardo Habkost <address@hidden>
  Date:   2015-02-23 (Mon, 23 Feb 2015)

  Changed paths:
    M hw/i386/pc.c
    M hw/mem/pc-dimm.c
    M hw/ppc/spapr.c
    A include/sysemu/numa.h
    M include/sysemu/sysemu.h
    M monitor.c
    M numa.c
    M vl.c

  Log Message:
  -----------
  numa: Move NUMA declarations from sysemu.h to numa.h

Not all sysemu.h users need the NUMA declarations, and keeping them in a
separate file makes it easier to see what are the interfaces provided by
numa.c.

Reviewed-by: Paolo Bonzini <address@hidden>
Acked-by: Michael S. Tsirkin <address@hidden>
Signed-off-by: Eduardo Habkost <address@hidden>


  Commit: 61b388c14c5b042e6a43caaba842e351b2c88edd
      
https://github.com/qemu/qemu/commit/61b388c14c5b042e6a43caaba842e351b2c88edd
  Author: Eduardo Habkost <address@hidden>
  Date:   2015-02-23 (Mon, 23 Feb 2015)

  Changed paths:
    M vl.c

  Log Message:
  -----------
  vl.c: Remove unnecessary zero-initialization of NUMA globals

There's no need to zero-initialize globals, they are automatically
initialized to zero.

Reviewed-by: Paolo Bonzini <address@hidden>
Acked-by: Michael S. Tsirkin <address@hidden>
Signed-off-by: Eduardo Habkost <address@hidden>


  Commit: de1a7c84c49affff5884175d621c95196007ea23
      
https://github.com/qemu/qemu/commit/de1a7c84c49affff5884175d621c95196007ea23
  Author: Eduardo Habkost <address@hidden>
  Date:   2015-02-23 (Mon, 23 Feb 2015)

  Changed paths:
    M numa.c
    M vl.c

  Log Message:
  -----------
  numa: Move NUMA globals to numa.c

Reviewed-by: Paolo Bonzini <address@hidden>
Acked-by: Michael S. Tsirkin <address@hidden>
Signed-off-by: Eduardo Habkost <address@hidden>


  Commit: 25712ffe8478a95abd7b82e2f085c7c929498643
      
https://github.com/qemu/qemu/commit/25712ffe8478a95abd7b82e2f085c7c929498643
  Author: Eduardo Habkost <address@hidden>
  Date:   2015-02-23 (Mon, 23 Feb 2015)

  Changed paths:
    M include/sysemu/numa.h
    M numa.c

  Log Message:
  -----------
  numa: Make max_numa_nodeid static

Now the only code that uses the variable is inside numa.c.

Reviewed-by: Paolo Bonzini <address@hidden>
Acked-by: Michael S. Tsirkin <address@hidden>
Signed-off-by: Eduardo Habkost <address@hidden>


  Commit: 7dcd1d70fe2886a1e30d32678b795e6b9b6dd5c4
      
https://github.com/qemu/qemu/commit/7dcd1d70fe2886a1e30d32678b795e6b9b6dd5c4
  Author: Eduardo Habkost <address@hidden>
  Date:   2015-02-23 (Mon, 23 Feb 2015)

  Changed paths:
    M include/sysemu/numa.h
    M numa.c
    M vl.c

  Log Message:
  -----------
  numa: Move QemuOpts parsing to set_numa_nodes()

This allows us to make numa_init_func() static.

Reviewed-by: Paolo Bonzini <address@hidden>
Acked-by: Michael S. Tsirkin <address@hidden>
Signed-off-by: Eduardo Habkost <address@hidden>


  Commit: 1c1e6732786d46c7b0ab160cbf61122c53bb44cc
      
https://github.com/qemu/qemu/commit/1c1e6732786d46c7b0ab160cbf61122c53bb44cc
  Author: Eduardo Habkost <address@hidden>
  Date:   2015-02-23 (Mon, 23 Feb 2015)

  Changed paths:
    M include/sysemu/numa.h
    M numa.c
    M vl.c

  Log Message:
  -----------
  numa: Rename option parsing functions

Renaming set_numa_nodes() and numa_init_func() to parse_numa_opts() and
parse_numa() makes the purpose of those functions clearer.

Reviewed-by: Paolo Bonzini <address@hidden>
Acked-by: Michael S. Tsirkin <address@hidden>
Signed-off-by: Eduardo Habkost <address@hidden>


  Commit: dde11116782c1891a057165539efc014cf365026
      
https://github.com/qemu/qemu/commit/dde11116782c1891a057165539efc014cf365026
  Author: Eduardo Habkost <address@hidden>
  Date:   2015-02-23 (Mon, 23 Feb 2015)

  Changed paths:
    M include/sysemu/numa.h
    M numa.c
    M vl.c

  Log Message:
  -----------
  numa: Rename set_numa_modes() to numa_post_machine_init()

This function does some initialization that needs to be done after
machine init. The function may be eventually removed if we move the
CPUState.numa_node initialization to the CPU init code, but while the
function exists, lets give it a name that makes sense.

Reviewed-by: Paolo Bonzini <address@hidden>
Acked-by: Michael S. Tsirkin <address@hidden>
Signed-off-by: Eduardo Habkost <address@hidden>


  Commit: 2dffe5516e74215fadf2e0f5ee401db4d5a86f7a
      
https://github.com/qemu/qemu/commit/2dffe5516e74215fadf2e0f5ee401db4d5a86f7a
  Author: Peter Maydell <address@hidden>
  Date:   2015-03-02 (Mon, 02 Mar 2015)

  Changed paths:
    M hw/i386/pc.c
    M hw/mem/pc-dimm.c
    M hw/ppc/spapr.c
    A include/sysemu/numa.h
    M include/sysemu/sysemu.h
    M monitor.c
    M numa.c
    M vl.c

  Log Message:
  -----------
  Merge remote-tracking branch 'remotes/ehabkost/tags/numa-pull-request' into 
staging

NUMA fixes queue

# gpg: Signature made Mon Feb 23 19:28:42 2015 GMT using RSA key ID 984DC5A6
# gpg: Can't check signature: public key not found

* remotes/ehabkost/tags/numa-pull-request:
  numa: Rename set_numa_modes() to numa_post_machine_init()
  numa: Rename option parsing functions
  numa: Move QemuOpts parsing to set_numa_nodes()
  numa: Make max_numa_nodeid static
  numa: Move NUMA globals to numa.c
  vl.c: Remove unnecessary zero-initialization of NUMA globals
  numa: Move NUMA declarations from sysemu.h to numa.h

Signed-off-by: Peter Maydell <address@hidden>


Compare: https://github.com/qemu/qemu/compare/041ccc922ee4...2dffe5516e74

reply via email to

[Prev in Thread] Current Thread [Next in Thread]