search for: 70,7

Displaying 20 results from an estimated 458 matches for "70,7".

Did you mean: 40,7
2018 Jul 24
3
[PATCH] v2v: rhv plugin - fix DC search string
...for a domain named FCSD, will find FCSD1 as well. --- v2v/rhv-upload-plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2v/rhv-upload-plugin.py b/v2v/rhv-upload-plugin.py index c72f5e181..c6ba1962f 100644 --- a/v2v/rhv-upload-plugin.py +++ b/v2v/rhv-upload-plugin.py @@ -70,7 +70,7 @@ def find_host(connection): system_service = connection.system_service() storage_name = params['output_storage'] data_centers = system_service.data_centers_service().list( - search='storage=%s' % storage_name, + search='storage.name=%s'...
2018 Aug 07
1
[PATCH] v2v: -o rhv-upload: Properly replace SD_UUID in OVF (RHBZ#1612653).
...placed correctly. Thanks: Daniel Erez. --- v2v/rhv-upload-createvm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2v/rhv-upload-createvm.py b/v2v/rhv-upload-createvm.py index a34627ec8..1d0e8c95d 100644 --- a/v2v/rhv-upload-createvm.py +++ b/v2v/rhv-upload-createvm.py @@ -70,7 +70,7 @@ sds_service = system_service.storage_domains_service() sd = sds_service.list(search=("name=%s" % params['output_storage']))[0] sd_uuid = sd.id -ovf.replace("@SD_UUID@", sd_uuid) +ovf = ovf.replace("@SD_UUID@", sd_uuid) vms_service = system_ser...
2020 Jan 08
1
[PATCH] inspect: avoid returning "unknownX.Y" for unknown Linux distros
...e minor) as short osinfo ID. Just return "unknown" instead. --- lib/inspect-osinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/inspect-osinfo.c b/lib/inspect-osinfo.c index ba07e4564..d2272dfdd 100644 --- a/lib/inspect-osinfo.c +++ b/lib/inspect-osinfo.c @@ -70,7 +70,7 @@ guestfs_impl_inspect_get_osinfo (guestfs_h *g, const char *root) return safe_asprintf (g, "%s%d.%d", distro, major, minor); } - if (major > 0 || minor > 0) + if (STRNEQ (distro, "unknown") && (major > 0 || minor > 0)) ret...
2015 Mar 10
1
[PATCH] gui: fix a syntax-check issue of bindtextdomain
Signed-off-by: Hu Tao <hutao@cn.fujitsu.com> Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com> --- p2v/gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p2v/gui.c b/p2v/gui.c index 60f226e..f661f49 100644 --- a/p2v/gui.c +++ b/p2v/gui.c @@ -70,7 +70,7 @@ static GtkWidget *run_dlg, *cancel_button, *reboot_button; /* The entry point from the main program. - * Note that gtk_init etc have already been called in main(). + * Note that gtk_init etc have already been called in main. */ void gui_application (struct config *config) -- 2...
2018 Jul 24
1
Re: [PATCH] v2v: rhv plugin - fix DC search string
...-plugin.py | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/v2v/rhv-upload-plugin.py b/v2v/rhv-upload-plugin.py > > index c72f5e181..c6ba1962f 100644 > > --- a/v2v/rhv-upload-plugin.py > > +++ b/v2v/rhv-upload-plugin.py > > @@ -70,7 +70,7 @@ def find_host(connection): > > system_service = connection.system_service() > > storage_name = params['output_storage'] > > data_centers = system_service.data_centers_service().list( > > - search='storage=%s' % storage_name, &...
2004 Sep 10
2
Re: non-PIC code in shared libs again
On Tue, Feb 11, 2003 at 05:14:45PM +0000, Christian Weisgerber wrote: > Ben Hines <bhines@alumni.ucsd.edu> wrote: > > > The patch fixed the problem with your libs. However, when linking the > > xmms plugin i still get: > > > > *** Warning: This library needs some functionality provided by -lstdc++. > > This is because of id3lib, which is written in
2018 Jun 06
2
[PATCH] tests: Provide full path to Unix domain sockets.
..., 4 insertions(+), 2 deletions(-) diff --git a/tests/test-cache.sh b/tests/test-cache.sh index e5e9e82..ac99ce2 100755 --- a/tests/test-cache.sh +++ b/tests/test-cache.sh @@ -32,6 +32,7 @@ # SUCH DAMAGE. set -e +set -x files="cache.img cache.sock cache.pid" rm -f $files @@ -69,7 +70,7 @@ cleanup () trap cleanup INT QUIT TERM EXIT ERR # Open the overlay and perform some operations. -guestfish --format=raw -a 'nbd://?socket=cache.sock' <<'EOF' +guestfish --format=raw -a "nbd://?socket=`pwd`/cache.sock" <<'EOF' run part-disk...
2012 Nov 28
2
[PATCH] VT-d: make scope parsing code type safe
...9,7 @@ struct dmar_scope { }; struct acpi_drhd_unit { - struct dmar_scope scope; /* must be first member of struct */ + struct dmar_scope scope; struct list_head list; u64 address; /* register base address of the unit */ u16 segment; @@ -70,7 +70,7 @@ struct acpi_drhd_unit { }; struct acpi_rmrr_unit { - struct dmar_scope scope; /* must be first member of struct */ + struct dmar_scope scope; struct list_head list; u64 base_address; u64 end_address; @@ -79,7 +79,7 @@ struct acpi_rmrr_unit { };...
2020 Apr 03
1
[nbdkit PATCH v2] vddk: Drop support for VDDK 5.1.1
...least VDDK 5.1.1 (2011) + * have checked that all these exist in at least VDDK 5.5.5 (2015) * which is the earliest version of VDDK that we support. */ diff --git a/plugins/vddk/vddk.c b/plugins/vddk/vddk.c index e2c0bf7d..87c0d146 100644 --- a/plugins/vddk/vddk.c +++ b/plugins/vddk/vddk.c @@ -70,7 +70,7 @@ int vddk_debug_datapath = 1; /* Parameters passed to InitEx. */ #define VDDK_MAJOR 5 -#define VDDK_MINOR 1 +#define VDDK_MINOR 5 static void *dl; /* dlopen handle */ static bool init_called; /* was InitEx called */ @@ -363,14 +363,14 @@ l...
2016 Jan 22
1
[PATCH] test-data: use make functions to get the prepared disk name
.... --- test-data/phony-guests/Makefile.am | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test-data/phony-guests/Makefile.am b/test-data/phony-guests/Makefile.am index 5a56960..9fac2d0 100644 --- a/test-data/phony-guests/Makefile.am +++ b/test-data/phony-guests/Makefile.am @@ -70,8 +70,7 @@ CLEANFILES = \ # virt-alignment-scan don't break when they encounter them. blank-%.img: rm -f $@ $@-t - $(top_builddir)/run guestfish \ - -N $@-t="$$(echo $@ | $(SED) -e 's/blank-//' -e 's/.img//')" exit + $(top_builddir)/run guestfish -N $@-t="...
2018 Jul 24
0
Re: [PATCH] v2v: rhv plugin - fix DC search string
...ell. > --- > v2v/rhv-upload-plugin.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/v2v/rhv-upload-plugin.py b/v2v/rhv-upload-plugin.py > index c72f5e181..c6ba1962f 100644 > --- a/v2v/rhv-upload-plugin.py > +++ b/v2v/rhv-upload-plugin.py > @@ -70,7 +70,7 @@ def find_host(connection): > system_service = connection.system_service() > storage_name = params['output_storage'] > data_centers = system_service.data_centers_service().list( > - search='storage=%s' % storage_name, > + search=...
2004 Sep 10
0
Re: non-PIC code in shared libs again
...cgi-bin/bugreport.cgi?bug=128391 > http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=179735 > Well, for now I have fixed it in the fink package like so: --- flac-1.1.0/confgure.in.orig 2003-02-11 08:46:25.000000000 -0800 +++ flac-1.1.0/configure.in 2003-02-11 08:46:34.000000000 -0800 @@ -70,7 +70,7 @@ dnl There is some confusion over what libraries libid3 needs dnl so we must be pessimistic and try all permutations: dnl "-lid3" "-lid3 -lstdc++" "-lid3 -lz" "-lid3 -lz -lstdc++" - for xtra_stdcpp in "" &q...
2011 Jun 01
0
Svn web access (was: svn commit r3010 - trunk/docs)
...t; > To retrieve the current development tree, use the following command: > > - $ svn co svn://svn.debian.org/nut/trunk > + $ svn co svn://anonscm.debian.org/nut/trunk > > To generate the build scripts, you must call, from the 'trunk' directory: > > @@ -70,7 +70,7 @@ > Browse code > ^^^^^^^^^^^ > > -You can also browse the code with link: > http://svn.debian.org/wsvn/nut/trunk/?rev=0&sc=0[WebSvn], > +You can also browse the code with link: > http://alioth.debian.org/scm/?group_id=30602[WebSvn], > or through the link:htt...
2011 Jun 07
0
[nut-commits] svn commit r3010 - trunk/docs
...t; > To retrieve the current development tree, use the following command: > > - $ svn co svn://svn.debian.org/nut/trunk > + $ svn co svn://anonscm.debian.org/nut/trunk > > To generate the build scripts, you must call, from the 'trunk' directory: > > @@ -70,7 +70,7 @@ > Browse code > ^^^^^^^^^^^ > > -You can also browse the code with link: > http://svn.debian.org/wsvn/nut/trunk/?rev=0&sc=0[WebSvn], > +You can also browse the code with link: > http://alioth.debian.org/scm/?group_id=30602[WebSvn], > or through the link:htt...
2012 Jan 25
1
Re: docs: Remove outdated LaTex documentation.
...hbot-unstable wrote: > # HG changeset patch > # User Keir Fraser <keir@xen.org> > # Date 1327506767 0 > # Node ID 4271634e4c86568b6bf2241ebf9be4a82ab430bf > # Parent a2a8089b1ffbf5757ca3191cb8f74a5f1ed7fed1 > docs: Remove outdated LaTex documentation. Nice. > @@ -82,7 +70,7 @@ > $(MAKE) -C xen-api clean > rm -rf .word_count *.aux *.dvi *.bbl *.blg *.glo *.idx *~ > rm -rf *.ilg *.log *.ind *.toc *.bak core I''d hazard a guess that all of these, apart from *~, are latex droppings too. Ian.
2014 Dec 02
0
[PATCH RFC v5 14/19] s390x/virtio-ccw: enable virtio 1.0
...Signed-off-by: Cornelia Huck <cornelia.huck at de.ibm.com> --- hw/s390x/virtio-ccw.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/s390x/virtio-ccw.h b/hw/s390x/virtio-ccw.h index fe5c782..d40e3be 100644 --- a/hw/s390x/virtio-ccw.h +++ b/hw/s390x/virtio-ccw.h @@ -70,7 +70,7 @@ typedef struct VirtIOCCWDeviceClass { } VirtIOCCWDeviceClass; /* The maximum virtio revision we support. */ -#define VIRTIO_CCW_REV_MAX 0 +#define VIRTIO_CCW_REV_MAX 1 /* Performance improves when virtqueue kick processing is decoupled from the * vcpu thread using ioeventfd for...
2014 Dec 02
0
[PATCH RFC v5 14/19] s390x/virtio-ccw: enable virtio 1.0
...Signed-off-by: Cornelia Huck <cornelia.huck at de.ibm.com> --- hw/s390x/virtio-ccw.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/s390x/virtio-ccw.h b/hw/s390x/virtio-ccw.h index fe5c782..d40e3be 100644 --- a/hw/s390x/virtio-ccw.h +++ b/hw/s390x/virtio-ccw.h @@ -70,7 +70,7 @@ typedef struct VirtIOCCWDeviceClass { } VirtIOCCWDeviceClass; /* The maximum virtio revision we support. */ -#define VIRTIO_CCW_REV_MAX 0 +#define VIRTIO_CCW_REV_MAX 1 /* Performance improves when virtqueue kick processing is decoupled from the * vcpu thread using ioeventfd for...
2006 Jun 13
1
calleridname.agi patch to only overwrite name if it is missing
...#39;) { +if (($Fonetastic > '0') && ($calleridname != 'unknown')){ $AGI->verbose("Ready for Fonetastic.US lookup... \n"); if ($name = &fonetastic_lookup ($npa, $nxx)) { $newcallerid = "\"$name <$npa$nxx$station>\""; @@ -68,7 +70,7 @@ $AGI->verbose("Fonetastic.US lookup disabled."); } -if ($AnyWho > '0') { +if (($AnyWho > '0') && ($calleridname != 'unknown')){ $AGI->verbose("Ready for AnyWho lookup... \n"); if ($name = &anywho_lookup ($npa, $nxx, $stat...
2012 Aug 19
1
[PATCH 06/10] drm/nouveau: sparse fixes
...MAGIC struct nouveau_object *object; diff --git a/drivers/gpu/drm/nouveau/core/subdev/device/base.c b/drivers/gpu/drm/nouveau/core/subdev/device/base.c index d4abca7..afc6be0 100644 --- a/drivers/gpu/drm/nouveau/core/subdev/device/base.c +++ b/drivers/gpu/drm/nouveau/core/subdev/device/base.c @@ -70,7 +70,6 @@ static const u64 disable_map[] = { [NVDEV_SUBDEV_VM] = NV_DEVICE_DISABLE_CORE, [NVDEV_SUBDEV_INSTMEM] = NV_DEVICE_DISABLE_CORE, [NVDEV_SUBDEV_BAR] = NV_DEVICE_DISABLE_CORE, - [NVDEV_SUBDEV_GPIO] = NV_DEVICE_DISABLE_CORE, [NVDEV_SUBDEV_VOLT] = NV_DEVICE_DISABLE_CORE, [NVDEV_SUBD...
2002 Dec 29
0
[Bug 460] New: ut_addr_v6 not used
...sin6_addr.s6_addr, 16); + if (IN6_IS_ADDR_V4MAPPED(&sa6->sin6_addr)) { + ut->ut_addr_v6[0] = ut->ut_addr_v6[3]; + ut->ut_addr_v6[1] = 0; + ut->ut_addr_v6[2] = 0; + ut->ut_addr_v6[3] = 0; + } + } +# endif } #endif /* USE_UTMP || USE_WTMP || USE_LOGIN */ @@ -689,6 +705,9 @@ void construct_utmpx(struct logininfo *li, struct utmpx *utx) { +# ifdef HAVE_ADDR_V6_IN_UTMP + struct sockaddr_in6 *sa6; +# endif memset(utx, '\0', sizeof(*utx)); # ifdef HAVE_ID_IN_UTMPX line_abbrevname(utx->ut_id, li->line, sizeof(utx->ut_id)); @@ -725,6 +744,19 @...