1. 12 1月, 2017 3 次提交
  2. 11 1月, 2017 7 次提交
    • A
      NEWS: Add trailing periods to all sentences · 97dbf2b6
      Andrea Bolognani 提交于
      Suggested-by: NJohn Ferlan <jferlan@redhat.com>
      97dbf2b6
    • C
      virsh: pool-info: introduce option --bytes · b29f7528
      Chen Hanxiao 提交于
      By default, pool-info will convert sizes to human friendly units.
      
      This patch will introduce option [--bytes].
      If specified, the raw sizes will be in the output.
      Signed-off-by: NChen Hanxiao <chenhanxiao@gmail.com>
      b29f7528
    • D
      docs: add news entry in improvements section. · ccdf108c
      Dawid Zamirski 提交于
      Signed-off-by: NJohn Ferlan <jferlan@redhat.com>
      ccdf108c
    • A
      docs: Document the release notes process for contributors · 605e308c
      Andrea Bolognani 提交于
      Now that we have built a fairly solid process for dealing with
      release notes, we should start pushing for contributors to
      provide the relevant information along with their code:
      documenting the process is clearly a requirement for this to
      happen.
      605e308c
    • A
      NEWS: Reformat at generation time · 6a5b3127
      Andrea Bolognani 提交于
      Instead of encoding formatting information inside the
      corresponding XSLT stylesheet, use a Python script to reformat
      the text appropriately based on a few simple markers.
      
      Splitting the task between the XSLT stylesheet and the Python
      script allows us to keep both parts very simple.
      6a5b3127
    • A
      NEWS: Improve building pipeline · be36ea4b
      Andrea Bolognani 提交于
      Currently, building the NEWS file involves using a XSLT stylesheet
      to extract information from the same HTML file that's used on the
      libvirt website.
      
      The process works, but it's quite fiddly in that it requires the
      source HTML to be formatted in a very precise way, and a single
      missing newline can mess up the resulting plain text considerably.
      
      Moreover, the XSLT stylesheet itself encodes a lot of the details
      of converting to plain text in a way that's not necessarily easy
      to understand, tweak or fix.
      
      To improve the process, move all existing entries to a new XML
      file that contains exactly the information we care about in a
      simple structured format, and start generating both the HTML and
      plain text versions of the release notes using XSLT stylesheets
      that can now afford to be almost trivial.
      be36ea4b
    • J
      libxl: implement virDomainGetMaxVcpus · a05e2570
      Jim Fehlig 提交于
      The libxl driver already supports getting maximum vcpu count via
      libxlDomainGetVcpusFlags, allowing to trivially implement
      virDomainGetMaxVcpus.
      a05e2570
  3. 10 1月, 2017 3 次提交
  4. 07 1月, 2017 2 次提交
    • J
      conf: Add more fchost search fields for storage pool vHBA creation · bb74a7ff
      John Ferlan 提交于
      Add new fields to the fchost structure to allow creation of a vHBA via
      the storage pool when a parent_wwnn/parent_wwpn or parent_fabric_wwn is
      supplied in the storage pool XML.
      bb74a7ff
    • J
      nodedev: Add the ability to create vHBA by parent wwnn/wwpn or fabric_wwn · 2b13361b
      John Ferlan 提交于
      https://bugzilla.redhat.com/show_bug.cgi?id=1349696
      
      When creating a vHBA, the process is to feed XML to nodeDeviceCreateXML
      that lists the <parent> scsi_hostX to use to create the vHBA. However,
      between reboots, it's possible that the <parent> changes its scsi_hostX
      to scsi_hostY and saved XML to perform the creation will either fail or
      create a vHBA using the wrong parent.
      
      So add the ability to provide "wwnn" and "wwpn" or "fabric_wwn" to
      the <parent> instead of a name of the scsi_hostN that is the parent.
      The allowed XML will thus be:
      
        <parent>scsi_host3</parent>  (current)
      
      or
      
        <parent wwnn='$WWNN' wwpn='$WWPN'/>
      
      or
      
        <parent fabric_wwn='$WWNN'/>
      
      Using the wwnn/wwpn or fabric_wwn ensures the same 'scsi_hostN' is
      selected between hardware reconfigs or host reboots. The fabric_wwn
      Using the wwnn/wwpn pair will provide the most specific search option,
      while fabric_wwn will at least ensure usage of the same SAN, but maybe
      not the same scsi_hostN.
      
      This patch will add the new fields to the nodedev.rng for input purposes
      only since the input XML is essentially thrown away, no need to Format
      the values since they'd already be printed as part of the scsi_host
      data block.
      
      New API virNodeDeviceGetParentHostByWWNs will take the parent "wwnn" and
      "wwpn" in order to search the list of devices for matching capability
      data fields wwnn and wwpn.
      
      New API virNodeDeviceGetParentHostByFabricWWN will take the parent "fabric_wwn"
      in order to search the list of devices for matching capability data field
      fabric_wwn.
      2b13361b
  5. 05 1月, 2017 2 次提交
  6. 04 1月, 2017 4 次提交
  7. 25 12月, 2016 1 次提交
  8. 23 12月, 2016 1 次提交
  9. 22 12月, 2016 2 次提交
  10. 21 12月, 2016 1 次提交
    • J
      conf: Display <physical> in output of voldef · 78661cb1
      John Ferlan 提交于
      Although the virStorageBackendUpdateVolTargetInfo will update the
      target.physical value, there is no way to provide that information
      via the virStorageGetVolInfo API since it only returns the capacity
      and allocation of a volume. So as described in commit id '0282ca45',
      it should be possible to generate an output only <physical> value
      for that purpose.
      
      This patch generates the <physical> value in the volume XML output
      for the sole purpose of being able to view/see the value to allow
      someone to parse the XML in order to obtain the value.
      
      Update the documentation to describe the output only nature.
      Signed-off-by: NJohn Ferlan <jferlan@redhat.com>
      78661cb1
  11. 19 12月, 2016 3 次提交
    • D
      docs: link to news file and other resources · 0dd1f7d2
      Daniel P. Berrange 提交于
      In the website reorg we accidentally lost all links to the nice
      reformatted news.html file. Add a link on the front page, and
      also extend the download page table so that it includes links
      to API docs and news files for each module (where available)
      Signed-off-by: NDaniel P. Berrange <berrange@redhat.com>
      0dd1f7d2
    • D
      Point to the new libvirt-go bindings · 5a26d1ce
      Daniel P. Berrange 提交于
      The github.com/rgbkrk/libvirt-go bindings were the most complete
      bindings historically, but their API coverage stops at 1.2.4,
      with exception of a couple of newer APIs.
      
      The new bindings at http://libvirt.org/git/?p=libvirt-go.git;a=log
      how have (almost[1]) 100% API coverage all the way to 2.5.0. They also
      expose the APIs in a way that allows for much stronger go type
      checking by the compiler, and expose typed parameters as explicit
      structs. Finally the bindings are able to conditionally compile against
      any libvirt version 1.2.0 -> 2.5.0 without use of go build tags.
      
      Change the docs to point to these new bindings, since they'll be
      a better bet for users long term.
      
      [1] virEvent & virStream callbacks are still TODO to be fixed
          real soon.
      Signed-off-by: NDaniel P. Berrange <berrange@redhat.com>
      5a26d1ce
    • J
      network: Add support for local PTR domains · 3d98acc9
      Jiri Denemark 提交于
      Similarly to localOnly DNS domain, localPtr attribute can be used to
      tell the DNS server not to forward reverse lookups for unknown IPs which
      belong to the virtual network.
      Signed-off-by: NJiri Denemark <jdenemar@redhat.com>
      3d98acc9
  12. 16 12月, 2016 5 次提交
  13. 15 12月, 2016 1 次提交
  14. 14 12月, 2016 3 次提交
  15. 13 12月, 2016 2 次提交