Displaying 20 results from an estimated 222 matches for "261,7".
Did you mean:
21,7
2011 Sep 28
1
[PATCH] libxl: correctly propagate errors from libxl_domain_resume
...bxl_domain_resume
currently it return success no matter what.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
diff -r 5f25a693b738 -r f63f08958565 tools/libxl/libxl.c
--- a/tools/libxl/libxl.c Wed Sep 28 16:42:33 2011 +0100
+++ b/tools/libxl/libxl.c Wed Sep 28 16:45:19 2011 +0100
@@ -261,7 +261,7 @@ int libxl_domain_resume(libxl_ctx *ctx,
}
out:
libxl__free_all(&gc);
- return 0;
+ return rc;
}
/*
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2016 Feb 16
2
[PATCH 11/16] drm/atmel-hldcd: removed optional dummy crtc mode_fixup function.
..._mode_fixup(struct drm_crtc *crtc,
> - const struct drm_display_mode *mode,
> - struct drm_display_mode *adjusted_mode)
> -{
> - return true;
> -}
> -
> static void atmel_hlcdc_crtc_disable(struct drm_crtc *c)
> {
> struct drm_device *dev = c->dev;
> @@ -261,7 +254,6 @@ static void atmel_hlcdc_crtc_atomic_flush(struct drm_crtc *crtc,
> }
>
> static const struct drm_crtc_helper_funcs lcdc_crtc_helper_funcs = {
> - .mode_fixup = atmel_hlcdc_crtc_mode_fixup,
> .mode_set = drm_helper_crtc_mode_set,
> .mode_set_nofb = atmel_hlcdc_c...
2016 Feb 16
2
[PATCH 11/16] drm/atmel-hldcd: removed optional dummy crtc mode_fixup function.
..._mode_fixup(struct drm_crtc *crtc,
> - const struct drm_display_mode *mode,
> - struct drm_display_mode *adjusted_mode)
> -{
> - return true;
> -}
> -
> static void atmel_hlcdc_crtc_disable(struct drm_crtc *c)
> {
> struct drm_device *dev = c->dev;
> @@ -261,7 +254,6 @@ static void atmel_hlcdc_crtc_atomic_flush(struct drm_crtc *crtc,
> }
>
> static const struct drm_crtc_helper_funcs lcdc_crtc_helper_funcs = {
> - .mode_fixup = atmel_hlcdc_crtc_mode_fixup,
> .mode_set = drm_helper_crtc_mode_set,
> .mode_set_nofb = atmel_hlcdc_c...
2004 Sep 10
0
Re: FLAC 1.0.4 released
The id3lib configure problem is due to a sh portability issue.
--- configure.in.orig Thu Oct 3 16:57:34 2002
+++ configure.in Thu Oct 3 16:57:49 2002
@@ -261,7 +261,7 @@ main ()
fclose(output);
exit(0);
}
-], . conftest.id3; echo "${ID3LIB_MAJOR}.${ID3LIB_MINOR}.${ID3LIB_PATCH}", AC_MSG_WARN(could not determine id3lib version),[echo $ac_n "cross compiling; assuming ${ID3LIB_MAJOR}.${ID3LIB_MINOR}.${ID3LIB_PATCH} $ac_c"])
+], . ....
2008 Jan 17
1
[PATCH 0/7] More lguest massage.
This series takes one more step towards cpu-ification of lguest.
As for rusty's last suggestion, I get rid of the whole bunch
of "struct lguest *lg = cpu->lg" statements around by using
lg_cpu as our base structure wherever it matters. (this saves us
11 lines)
2005 Dec 04
0
[PATCH] Seperate VMX domainname argument to 2 parts to enable qemu-dm
...py combines these two strings to 1. So
Qemu will fail to recognize it and fail to start.
Signed-off-by: Yongkang You <yongkang.you@intel.com>
--- a/tools/python/xen/xend/image.py 2005-12-04 14:32:04.956602836
+0800
+++ b/tools/python/xen/xend/image.py 2005-12-04 14:31:47.873559655
+0800
@@ -261,7 +261,7 @@
# Handle disk/network related options
mac = None
- ret.append("-domain-name %s" % self.vm.info[''name''])
+ ret = ret + ["-domain-name", "%s" % self.vm.info[''name'']]
for (name, inf...
2010 Feb 16
2
[PATCH 1/3] Build: Make changelog action call git directly without Git module
The changelog action needs to checkout git2cl as a submodule. For some reason,
when called through the Git module, command('submodule', 'update') was doing
something unfathomable, and different to just calling 'git submodule update'. As
Git is just a command line wrapper anyway, I've sidestepped this by just calling
the command directly.
---
Build.PL | 18
2008 Jan 17
1
[PATCH 0/7] More lguest massage.
This series takes one more step towards cpu-ification of lguest.
As for rusty's last suggestion, I get rid of the whole bunch
of "struct lguest *lg = cpu->lg" statements around by using
lg_cpu as our base structure wherever it matters. (this saves us
11 lines)
2011 Aug 27
1
[PATCH 1/3] Fix file descriptor leak
...TICE, "Failed to read pid from %s", pidfn);
+ fclose(pidf);
return -1;
}
@@ -251,6 +252,7 @@ int sendsignalfn(const char *pidfn, int sig)
if (pid < 2) {
upslogx(LOG_NOTICE, "Ignoring invalid pid number %d", pid);
+ fclose(pidf);
return -1;
}
@@ -259,6 +261,7 @@ int sendsignalfn(const char *pidfn, int sig)
if (ret < 0) {
perror("kill");
+ fclose(pidf);
return -1;
}
@@ -267,9 +270,11 @@ int sendsignalfn(const char *pidfn, int sig)
if (ret < 0) {
perror("kill");
+ fclose(pidf);
return -1;
}
+ fclos...
2016 Jan 26
1
[PATCH] daemon: improve debugging for "stdout on stderr" flag
...: "n", flags);
+ stdoutput ? "y" : flag_out_on_err ? "e" : "n",
+ stderror ? "y" : "n", flags);
fputs ("commandrvf: ", stdout);
fputs (argv[0], stdout);
for (i = 1; argv[i] != NULL; ++i) {
@@ -261,7 +263,7 @@ commandrvf (char **stdoutput, char **stderror, unsigned flags,
}
close (so_fd[PIPE_READ]);
close (se_fd[PIPE_READ]);
- if (!(flags & COMMAND_FLAG_FOLD_STDOUT_ON_STDERR)) {
+ if (!flag_out_on_err) {
if (dup2 (so_fd[PIPE_WRITE], STDOUT_FILENO) == -1) {...
2005 Mar 30
1
utmp update for bsd systems
...patch against samba-2.2.12p0 and adds support
for updating utmp on bsds. code similarly ripped from
openbsd's ftpd (;
cu
--
paranoic mickey (my employers have changed but, the name has remained)
--- utmp.c Thu Aug 12 14:24:20 2004
+++ /home/mickey/utmp.c Wed Mar 30 15:51:40 2005
@@ -261,6 +261,7 @@
}
#ifndef HAVE_PUTUTLINE
+#include <ttyent.h>
/****************************************************************************
Update utmp file directly. No subroutine interface: probably a BSD system.
@@ -268,8 +269,50 @@
static void pututline_my(pstring uname, struct u...
2007 Sep 10
1
[PATCH] Add macros for acessing lguest fields
...f (!lguest_address_ok(lg, addr, bytes)
- || access_process_vm(lg->tsk, addr, buf, bytes, 0) != bytes) {
+ || access_process_vm(lguest_task(lg), addr, buf, bytes, 0) != bytes) {
memset(buf, 0, bytes);
kill_guest(lg, "bad address in registered DMA struct");
return 0;
@@ -261,7 +261,7 @@ static int lgwrite_other(struct lguest *lg, u32 addr,
const void *buf, unsigned bytes)
{
if (!lguest_address_ok(lg, addr, bytes)
- || (access_process_vm(lg->tsk, addr, (void *)buf, bytes, 1)
+ || (access_process_vm(lguest_task(lg), addr, (void *)buf, bytes, 1)
!= b...
2007 Sep 10
1
[PATCH] Add macros for acessing lguest fields
...f (!lguest_address_ok(lg, addr, bytes)
- || access_process_vm(lg->tsk, addr, buf, bytes, 0) != bytes) {
+ || access_process_vm(lguest_task(lg), addr, buf, bytes, 0) != bytes) {
memset(buf, 0, bytes);
kill_guest(lg, "bad address in registered DMA struct");
return 0;
@@ -261,7 +261,7 @@ static int lgwrite_other(struct lguest *lg, u32 addr,
const void *buf, unsigned bytes)
{
if (!lguest_address_ok(lg, addr, bytes)
- || (access_process_vm(lg->tsk, addr, (void *)buf, bytes, 1)
+ || (access_process_vm(lguest_task(lg), addr, (void *)buf, bytes, 1)
!= b...
2010 Aug 20
0
[PATCH] ocfs2: Don't delete orphaned files if we are in the process of umount.
...delete = 1;
+ }
+
+ if (delete)
ocfs2_delete_inode(inode);
- } else {
+ else
truncate_inode_pages(&inode->i_data, 0);
- }
+
ocfs2_clear_inode(inode);
}
diff --git a/fs/ocfs2/ocfs2.h b/fs/ocfs2/ocfs2.h
index 70354a5..0544b0c 100644
--- a/fs/ocfs2/ocfs2.h
+++ b/fs/ocfs2/ocfs2.h
@@ -261,7 +261,7 @@ enum ocfs2_mount_options
#define OCFS2_OSB_SOFT_RO 0x0001
#define OCFS2_OSB_HARD_RO 0x0002
#define OCFS2_OSB_ERROR_FS 0x0004
-#define OCFS2_OSB_DROP_DENTRY_LOCK_IMMED 0x0008
+#define OCFS2_OSB_UMOUNT_START 0x0008
#define OCFS2_DEFAULT_ATIME_QUANTUM 60
diff --git a/fs/oc...
2015 Jul 09
2
[PATCH] KVM: Add Kconfig option to signal cross-endian guests
...--
> Support running unmodified book3s_64 guest kernels in
> virtual machines on POWER7 and PPC970 processors that have
> diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig
> index c18f9e6..0c4ce47 100644
> --- a/drivers/net/Kconfig
> +++ b/drivers/net/Kconfig
> @@ -261,6 +261,7 @@ config TUN
> config TUN_VNET_CROSS_LE
> bool "Support for cross-endian vnet headers on little-endian kernels"
> default n
> + depends on KVM_CROSS_ENDIAN_GUESTS
> ---help---
> This option allows TUN/TAP and MACVTAP device drivers in a
> litt...
2015 Jul 09
2
[PATCH] KVM: Add Kconfig option to signal cross-endian guests
...--
> Support running unmodified book3s_64 guest kernels in
> virtual machines on POWER7 and PPC970 processors that have
> diff --git a/drivers/net/Kconfig b/drivers/net/Kconfig
> index c18f9e6..0c4ce47 100644
> --- a/drivers/net/Kconfig
> +++ b/drivers/net/Kconfig
> @@ -261,6 +261,7 @@ config TUN
> config TUN_VNET_CROSS_LE
> bool "Support for cross-endian vnet headers on little-endian kernels"
> default n
> + depends on KVM_CROSS_ENDIAN_GUESTS
> ---help---
> This option allows TUN/TAP and MACVTAP device drivers in a
> litt...
2005 Apr 14
1
utmp update for bsd systems (try 2)
...patch against samba-2.2.12p0 and adds support
for updating utmp on bsds. code similarly ripped from
openbsd's ftpd (;
cu
--
paranoic mickey (my employers have changed but, the name has remained)
--- utmp.c Thu Aug 12 14:24:20 2004
+++ /home/mickey/utmp.c Wed Mar 30 15:51:40 2005
@@ -261,6 +261,7 @@
}
#ifndef HAVE_PUTUTLINE
+#include <ttyent.h>
/****************************************************************************
Update utmp file directly. No subroutine interface: probably a BSD system.
@@ -268,8 +269,50 @@
static void pututline_my(pstring uname, struct u...
2002 Jan 13
1
rsynd-2.5.1 / batch.c patch
...write_char_bufs(fptr[i]->sum);
+ write_char_bufs((char *)fptr[i]->sum);
}
}
@@ -175,7 +176,7 @@
close(fdb);
}
-struct file_list *create_flist_from_batch()
+struct file_list *create_flist_from_batch(void)
{
unsigned char flags;
@@ -261,7 +262,7 @@
return bytes_read;
}
-unsigned char read_batch_flags()
+unsigned char read_batch_flags(void)
{
int flags;
@@ -339,13 +340,13 @@
if (int_str_len > 0) {
read_batch_flist_file(buff, int_str_len);
buff[int_str_len] = '...
2019 May 13
2
[PATCH v2 8/8] vsock/virtio: make the RX buffer size tunable
...buf_size = {
> + .set = param_set_rx_buf_size,
> + .get = param_get_uint,
> +};
> +
> +module_param_cb(rx_buf_size, ¶m_ops_rx_buf_size, &rx_buf_size, 0644);
> +
> static struct virtio_vsock *virtio_vsock_get(void)
> {
> return the_virtio_vsock;
> @@ -261,7 +286,7 @@ virtio_transport_cancel_pkt(struct vsock_sock *vsk)
>
> static void virtio_vsock_rx_fill(struct virtio_vsock *vsock)
> {
> - int buf_len = VIRTIO_VSOCK_DEFAULT_RX_BUF_SIZE;
> + int buf_len = rx_buf_size;
> struct virtio_vsock_pkt *pkt;
> struct scatterl...
2019 May 13
2
[PATCH v2 8/8] vsock/virtio: make the RX buffer size tunable
...buf_size = {
> + .set = param_set_rx_buf_size,
> + .get = param_get_uint,
> +};
> +
> +module_param_cb(rx_buf_size, ¶m_ops_rx_buf_size, &rx_buf_size, 0644);
> +
> static struct virtio_vsock *virtio_vsock_get(void)
> {
> return the_virtio_vsock;
> @@ -261,7 +286,7 @@ virtio_transport_cancel_pkt(struct vsock_sock *vsk)
>
> static void virtio_vsock_rx_fill(struct virtio_vsock *vsock)
> {
> - int buf_len = VIRTIO_VSOCK_DEFAULT_RX_BUF_SIZE;
> + int buf_len = rx_buf_size;
> struct virtio_vsock_pkt *pkt;
> struct scatterl...