Displaying 20 results from an estimated 105 matches for "405,7".
Did you mean:
40,7
2018 Feb 06
2
Re: [libvirt] [PATCH tck] Relabel SELinux when customizing virt-builder image
...gt;> ---
>> lib/Sys/Virt/TCK.pm | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/lib/Sys/Virt/TCK.pm b/lib/Sys/Virt/TCK.pm
>> index e9da8d2..b39f578 100644
>> --- a/lib/Sys/Virt/TCK.pm
>> +++ b/lib/Sys/Virt/TCK.pm
>> @@ -405,7 +405,7 @@ sub create_virt_builder_disk {
>> }
>>
>> print "# running virt-builder $osname\n";
>> - system "virt-builder", "--install", "dsniff", "--root-password", "password:$password", "--outp...
2013 Aug 11
1
N-Power MEV-3000LT compatibility report and problem
Hello,
the code below the failing part mentions this flavor of protocol, drivers/blazer_ser.c:463
/*
* If a command is invalid, it will be echoed back.
* As an exception, Best UPS units will report "ACK" in case of success!
*/
I prepared a patch, it adds a similar check and also checks (in both occurencies) for
blazer_command()<0, the latter
2013 Oct 02
0
[PATCHp2v] virt-p2v-server: Die with the correct error message.
...r line 404, <> line 7.
---
p2v/server/virt-p2v-server.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/p2v/server/virt-p2v-server.pl b/p2v/server/virt-p2v-server.pl
index c15efb2..0121ab2 100755
--- a/p2v/server/virt-p2v-server.pl
+++ b/p2v/server/virt-p2v-server.pl
@@ -405,7 +405,7 @@ sub convert
my $err = $@;
$g->close() if defined($g);
- die($@);
+ die($err);
}
p2v_return_ok();
--
1.8.3.1
2013 Oct 02
0
[PATCHp2v v2] virt-p2v-server: Die with the correct error message.
...write $@
at some later time.
---
p2v/server/virt-p2v-server.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/p2v/server/virt-p2v-server.pl b/p2v/server/virt-p2v-server.pl
index c15efb2..0121ab2 100755
--- a/p2v/server/virt-p2v-server.pl
+++ b/p2v/server/virt-p2v-server.pl
@@ -405,7 +405,7 @@ sub convert
my $err = $@;
$g->close() if defined($g);
- die($@);
+ die($err);
}
p2v_return_ok();
--
1.8.3.1
2016 Dec 23
2
[PATCH v4 1/2] drm: Wrap the check for atomic_commit implementation
...ude/drm/drm_atomic.h | 13 +++++++++++++
5 files changed, 24 insertions(+), 9 deletions(-)
diff --git a/drivers/gpu/drm/drm_fb_helper.c b/drivers/gpu/drm/drm_fb_helper.c
index 145d55f..730342c 100644
--- a/drivers/gpu/drm/drm_fb_helper.c
+++ b/drivers/gpu/drm/drm_fb_helper.c
@@ -405,7 +405,7 @@ static int restore_fbdev_mode(struct drm_fb_helper *fb_helper)
drm_warn_on_modeset_not_all_locked(dev);
- if (dev->mode_config.funcs->atomic_commit)
+ if (drm_drv_uses_atomic_modeset(dev))
return restore_fbdev_mode_atomic(fb_helper);
drm_for_each_plane(plane, dev) {
@...
2011 Nov 15
0
[PATCH] xen: avoid crash enabling turbo mode
...able_turbo(int cpuid)
struct cpufreq_policy *policy;
policy = per_cpu(cpufreq_cpu_policy, cpuid);
- if (policy->turbo != CPUFREQ_TURBO_UNSUPPORTED)
+ if (policy && policy->turbo != CPUFREQ_TURBO_UNSUPPORTED)
policy->turbo = CPUFREQ_TURBO_ENABLED;
}
@@ -405,7 +405,7 @@ void cpufreq_disable_turbo(int cpuid)
struct cpufreq_policy *policy;
policy = per_cpu(cpufreq_cpu_policy, cpuid);
- if (policy->turbo != CPUFREQ_TURBO_UNSUPPORTED)
+ if (policy && policy->turbo != CPUFREQ_TURBO_UNSUPPORTED)
policy->turbo = CPU...
2018 Feb 07
0
Re: [libvirt] [PATCH tck] Relabel SELinux when customizing virt-builder image
...TCK.pm | 2 +-
> >> 1 file changed, 1 insertion(+), 1 deletion(-)
> >>
> >> diff --git a/lib/Sys/Virt/TCK.pm b/lib/Sys/Virt/TCK.pm
> >> index e9da8d2..b39f578 100644
> >> --- a/lib/Sys/Virt/TCK.pm
> >> +++ b/lib/Sys/Virt/TCK.pm
> >> @@ -405,7 +405,7 @@ sub create_virt_builder_disk {
> >> }
> >>
> >> print "# running virt-builder $osname\n";
> >> - system "virt-builder", "--install", "dsniff", "--root-password", "password:$password...
2013 Nov 20
4
[PATCH 1/2] Revert "configure.ac : If gcc is version 4.2, use -fgnu89-inline."
This reverts commit 2860f1780ca92c779ee0a2c545ae1b9c4818dc53.
Conflicts:
configure.ac
Do not use -fgnu89-inline as it can emit duplicate symbols for
inline functions that are declared in multiple object files
being linked together.
For example on clang 5.0 targetting iOS
(clang advertises itself as gcc 4.2, the last GPL version of gcc)
---
configure.ac | 12 ++++--------
1 file changed, 4
2016 Oct 26
2
use PT_DENY_ATTACH on Mac OS X
...tempt by the parent to trace a process which has set this
flag will result in a segmentation violation in the parent
Any reason not to use it in platform_disable_tracing() ?
diff --git a/configure.ac b/configure.ac
index f5e1378..88c4633 100644
--- a/configure.ac
+++ b/configure.ac
@@ -405,6 +405,7 @@ AC_CHECK_HEADERS([ \
sys/poll.h \
sys/prctl.h \
sys/pstat.h \
+ sys/ptrace.h \
sys/select.h \
sys/stat.h \
sys/stream.h \
diff --git a/platform-tracing.c b/platform-tracing.c
index 81020e7..4c80a28 100644
--- a/platform-tracing.c
+++ b/platform-tracing.c
@@ -20,6 +20,9 @@
#...
2016 Dec 21
6
[PATCH v2 1/2] drm: Wrap the check for atomic_commit implementation
...clude/drm/drm_atomic.h | 11 +++++++++++
5 files changed, 22 insertions(+), 9 deletions(-)
diff --git a/drivers/gpu/drm/drm_fb_helper.c b/drivers/gpu/drm/drm_fb_helper.c
index 145d55f..730342c 100644
--- a/drivers/gpu/drm/drm_fb_helper.c
+++ b/drivers/gpu/drm/drm_fb_helper.c
@@ -405,7 +405,7 @@ static int restore_fbdev_mode(struct drm_fb_helper *fb_helper)
drm_warn_on_modeset_not_all_locked(dev);
- if (dev->mode_config.funcs->atomic_commit)
+ if (drm_drv_uses_atomic_modeset(dev))
return restore_fbdev_mode_atomic(fb_helper);
drm_for_each_plane(plane, dev) {
@...
2018 Nov 28
0
[PATCH 1/2] drm/virtio: fence: pass plain pointer
...ue_fenced_ctrl_buffer(struct virtio_gpu_device *vgdev,
struct virtio_gpu_vbuffer *vbuf,
struct virtio_gpu_ctrl_hdr *hdr,
- struct virtio_gpu_fence **fence)
+ struct virtio_gpu_fence *fence)
{
struct virtqueue *vq = vgdev->ctrlq.vq;
int rc;
@@ -405,7 +405,7 @@ void virtio_gpu_cmd_unref_resource(struct virtio_gpu_device *vgdev,
static void virtio_gpu_cmd_resource_inval_backing(struct virtio_gpu_device *vgdev,
uint32_t resource_id,
- struct virtio_gpu_fence **fence)
+ struct virtio_gpu_fence *fence)
{
struct virtio_...
2019 Jul 11
0
[p2v PATCH 4/4] podwrapper: adapt footer to p2v
---
podwrapper.pl.in | 12 ++++--------
1 file changed, 4 insertions(+), 8 deletions(-)
diff --git a/podwrapper.pl.in b/podwrapper.pl.in
index f8b90ad..31fbb38 100755
--- a/podwrapper.pl.in
+++ b/podwrapper.pl.in
@@ -405,7 +405,8 @@ distributed for any purpose without any restrictions.
my $reporting_bugs =
"=head1 BUGS
-To get a list of bugs against libguestfs, use this link:
+To get a list of bugs against libguestfs (which include virt-p2v),
+use this link:
L<https://bugzilla.redhat.com/buglist.cgi?co...
2009 Feb 11
0
[PATCH 3/5] tftp tsize option don't needed anymore starting at version 3.70
...y at gmail.com>
tftp tsize option don't needed anymore starting at version 3.70
---
doc/pxelinux.txt | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/doc/pxelinux.txt b/doc/pxelinux.txt
index 8d0792f..94d7649 100644
--- a/doc/pxelinux.txt
+++ b/doc/pxelinux.txt
@@ -405,7 +405,6 @@ load PXELINUX. See:
The following problems are known with PXELINUX, so far:
-+ Requires a TFTP server which supports the "tsize" option.
+ The error recovery routine doesn't work quite right. For right now,
it just does a hard reset - seems good enough.
+ We shou...
2004 Dec 06
1
port and double-colon
...read a batch from FILE\n");
+ rprintf(F," --port=PORT specify double-colon alternate port number\n");
#ifdef INET6
rprintf(F," -4, --ipv4 prefer IPv4\n");
rprintf(F," -6, --ipv6 prefer IPv6\n");
@@ -404,6 +405,7 @@
{"no-implied-dirs", 0, POPT_ARG_VAL, &implied_dirs, 0, 0, 0 },
{"protocol", 0, POPT_ARG_INT, &protocol_version, 0, 0, 0 },
{"checksum-seed", 0, POPT_ARG_INT, &checksum_seed, 0, 0, 0 },
+ {"port",...
2016 Dec 22
4
[PATCH v3 1/2] drm: Wrap the check for atomic_commit implementation
...lude/drm/drm_atomic.h | 12 ++++++++++++
5 files changed, 23 insertions(+), 9 deletions(-)
diff --git a/drivers/gpu/drm/drm_fb_helper.c b/drivers/gpu/drm/drm_fb_helper.c
index 145d55f..730342c 100644
--- a/drivers/gpu/drm/drm_fb_helper.c
+++ b/drivers/gpu/drm/drm_fb_helper.c
@@ -405,7 +405,7 @@ static int restore_fbdev_mode(struct drm_fb_helper *fb_helper)
drm_warn_on_modeset_not_all_locked(dev);
- if (dev->mode_config.funcs->atomic_commit)
+ if (drm_drv_uses_atomic_modeset(dev))
return restore_fbdev_mode_atomic(fb_helper);
drm_for_each_plane(plane, dev) {
@...
2017 Nov 17
2
Blank console but X11 works on MCP79 - old regression since 3.8
Hello,
I've just been hit by this old bug which is still present in 4.14:
https://bugs.freedesktop.org/show_bug.cgi?id=80675
On MCP79 (ION), when stolen memory is set to 32MB in BIOS, console is blank
but X11 works. When the stolen memory is increased to 64MB, console works
fine.
Bisected it to this:
4f6029da58ba9204c98e33f4f3737fe085c87a6f is the first bad commit
commit
2019 Dec 18
1
[PATCH] po: reduce the list of extracted sources
...-gperf.c
fish/cmds.c
fish/completion.c
fish/copy.c
@@ -246,7 +232,6 @@ fuse/guestunmount.c
fuse/test-fuse.c
fuse/test-guestmount-fd.c
fuse/test-guestunmount-fd.c
-get-kernel/dummy.c
gobject/src/optargs-add_domain.c
gobject/src/optargs-add_drive.c
gobject/src/optargs-add_drive_scratch.c
@@ -405,7 +390,6 @@ lib/tmpdirs.c
lib/tsk.c
lib/uefi.c
lib/umask.c
-lib/unit-tests.c
lib/version.c
lib/wait.c
lib/whole-file.c
@@ -415,8 +399,6 @@ make-fs/make-fs.c
ocaml/guestfs-c-actions.c
ocaml/guestfs-c-errnos.c
ocaml/guestfs-c.c
-perl/bindtests.pl
-perl/lib/Sys/Guestfs.pm
php/extension/guest...
2001 Jan 12
0
Socket options not properly set for ssh and sshd.
...d packet_set_interactive(int interactive, int keepalives);
+void packet_set_interactive(int interactive);
/* Returns true if the current connection is interactive. */
int packet_is_interactive(void);
--- sv0/session.c Fri Oct 27 20:19:58 2000
+++ session.c Tue Jan 2 16:40:45 2001
@@ -405,8 +405,7 @@
case SSH_CMSG_EXEC_SHELL:
case SSH_CMSG_EXEC_CMD:
/* Set interactive/non-interactive mode. */
- packet_set_interactive(have_pty || s->display != NULL,
- options.keepalives);
+ packet_set_interactive(have_pty || s->display != NULL);
if (type == SSH_CMSG_EX...
2020 Mar 28
0
[klibc:update-dash] dash: eval: Only restore exit status on exit/return
...show.h"
#include "options.h"
@@ -396,8 +397,10 @@ exitshell(void)
trap[0] = NULL;
evalskip = 0;
evalstring(p, 0);
+ evalskip = SKIPFUNCDEF;
}
out:
+ exitreset();
/*
* Disable job control so that whoever had the foreground before we
* started can get it back.
@@ -405,7 +408,7 @@ out:
if (likely(!setjmp(loc.loc)))
setjobctl(0);
flushall();
- _exit(savestatus);
+ _exit(exitstatus);
/* NOTREACHED */
}
2009 Feb 10
2
[PATCHS] Included 3 patches that updates documentation
...00
Subject: [PATCH] tftp tsize option don't needed anymore starting at version 3.70
---
doc/pxelinux.txt | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/doc/pxelinux.txt b/doc/pxelinux.txt
index 8d0792f..94d7649 100644
--- a/doc/pxelinux.txt
+++ b/doc/pxelinux.txt
@@ -405,7 +405,6 @@ load PXELINUX. See:
The following problems are known with PXELINUX, so far:
-+ Requires a TFTP server which supports the "tsize" option.
+ The error recovery routine doesn't work quite right. For right now,
it just does a hard reset - seems good enough.
+ We shou...