1. 24 3月, 2017 1 次提交
    • L
      util: permit querying a VF MAC address or VLAN tag by itself · 176229dd
      Laine Stump 提交于
      virNetDevParseVfConfig() assumed that both the MAC address and VLAN
      tag pointers were valid, so even if you only wanted one or the other,
      you would need a variable to hold the returned value for both. This
      patch checks each for a NULL pointer before filling it in.
      176229dd
  2. 23 3月, 2017 31 次提交
  3. 22 3月, 2017 7 次提交
  4. 21 3月, 2017 1 次提交
    • L
      network: don't add "no-resolv" if we still need DNS servers from resolv.conf · 15b5902d
      Laine Stump 提交于
      It was pointed out here:
      
        https://bugzilla.redhat.com/show_bug.cgi?id=1331796#c4
      
      that we shouldn't be adding a "no-resolv" to the dnsmasq.conf file for
      a network if there isn't any <forwarder> element that specifies an IP
      address but no qualifying domain. If there is such an element, it will
      handle all DNS requests that weren't otherwise handled by one of the
      forwarder entries with a matching domain attribute. If not, then DNS
      requests that don't match the domain of any <forwarder> would not be
      resolved if we added no-resolv.
      
      So, only add "no-resolv" when there is at least one <forwarder>
      element that specifies an IP address but no qualifying domain.
      15b5902d