Displaying 20 results from an estimated 457 matches for "61,6".
Did you mean:
1,6
2001 Aug 24
2
[PATCH] SO_KEEPALIVE for port forwards
...ch to CVS instead, but the HEAD
doesn't build for me at the moment.
Thoughts?
Please cc: me, I'm not on the list. Thanks.
-------------- next part --------------
--- openssh-2.9p2/channels.c.keepalivetunnel Wed Jun 13 12:18:05 2001
+++ openssh-2.9p2/channels.c Thu Aug 23 15:40:43 2001
@@ -61,6 +61,9 @@
#include "canohost.h"
#include "key.h"
#include "authfd.h"
+#include "readconf.h"
+
+extern Options options;
/* Maximum number of fake X11 displays to try. */
#define MAX_DISPLAYS 1000
@@ -765,6 +768,7 @@
int newsock, newch, nextstate;...
2014 Oct 27
5
[PATCH v12 09/11] pvqspinlock, x86: Add para-virtualization support
...unction without adding patch
>> sites all over the kernel.
> But you don't have to. My patches allowed for the inline to remain,
> again reducing the overhead of enabling PV spinlocks while running on a
> real machine.
>
> Look at:
>
> http://lkml.kernel.org/r/20140615130154.213923590 at chello.nl
>
> In particular this hunk:
>
> Index: linux-2.6/arch/x86/kernel/paravirt_patch_64.c
> ===================================================================
> --- linux-2.6.orig/arch/x86/kernel/paravirt_patch_64.c
> +++ linux-2.6/arch/x86/kernel/par...
2014 Oct 27
5
[PATCH v12 09/11] pvqspinlock, x86: Add para-virtualization support
...unction without adding patch
>> sites all over the kernel.
> But you don't have to. My patches allowed for the inline to remain,
> again reducing the overhead of enabling PV spinlocks while running on a
> real machine.
>
> Look at:
>
> http://lkml.kernel.org/r/20140615130154.213923590 at chello.nl
>
> In particular this hunk:
>
> Index: linux-2.6/arch/x86/kernel/paravirt_patch_64.c
> ===================================================================
> --- linux-2.6.orig/arch/x86/kernel/paravirt_patch_64.c
> +++ linux-2.6/arch/x86/kernel/par...
2017 Jul 11
1
[PATCH] hivexsh: Add missing documentation for -u switch
---
sh/hivexsh.pod | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/sh/hivexsh.pod b/sh/hivexsh.pod
index 7d7fc0a..8b10a6a 100644
--- a/sh/hivexsh.pod
+++ b/sh/hivexsh.pod
@@ -61,6 +61,13 @@ script, use:
#!/usr/bin/hivexsh -f
+=item B<-u>
+
+Use heuristics to tolerate certain levels of corruption within hives.
+
+This is unsafe but may allow to export/merge valid keys/values in an
+othewise corrupted hive.
+
=item B<-w>
If this option is given, then wr...
2018 Feb 19
1
[PATCH] appliance: include dash for Debian distros
...iance, and that path is
provided by dash on Debian distributions.
---
appliance/packagelist.in | 1 +
1 file changed, 1 insertion(+)
diff --git a/appliance/packagelist.in b/appliance/packagelist.in
index 78aedad0b..f92a6ce95 100644
--- a/appliance/packagelist.in
+++ b/appliance/packagelist.in
@@ -61,6 +61,7 @@ ifelse(DEBIAN,1,
dnl old name used in Jessie and earlier
btrfs-tools
cryptsetup
+ dash
extlinux
genisoimage
dnl gfs-tools, gfs2-tools have been renamed to gfs2-utils
--
2.14.3
2023 Feb 17
1
[patch net-next] net: virtio_net: implement exact header length guest feature
...F_NOTF_COAL, \
+ VIRTIO_NET_F_GUEST_HDRLEN
static unsigned int features[] = {
VIRTNET_FEATURES,
diff --git a/include/uapi/linux/virtio_net.h b/include/uapi/linux/virtio_net.h
index b4062bed186a..12c1c9699935 100644
--- a/include/uapi/linux/virtio_net.h
+++ b/include/uapi/linux/virtio_net.h
@@ -61,6 +61,7 @@
#define VIRTIO_NET_F_GUEST_USO6 55 /* Guest can handle USOv6 in. */
#define VIRTIO_NET_F_HOST_USO 56 /* Host can handle USO in. */
#define VIRTIO_NET_F_HASH_REPORT 57 /* Supports hash report */
+#define VIRTIO_NET_F_GUEST_HDRLEN 59 /* Guest provides the exact hdr_len value. */
#def...
2013 Oct 16
3
[PATCH] xen/arm: Add CPU ID for Broadcom Brahma-B15
.../* Mask */
+ .long v7_init
+ .size __v7_brahma15mp_proc_info, . - __v7_brahma15mp_proc_info
+
/*
* Local variables:
* mode: ASM
diff --git a/xen/arch/arm/setup.c b/xen/arch/arm/setup.c
index 49f344c..7d6e596 100644
--- a/xen/arch/arm/setup.c
+++ b/xen/arch/arm/setup.c
@@ -61,6 +61,7 @@ static void __init init_idle_domain(void)
static const char * __initdata processor_implementers[] = {
[''A''] = "ARM Limited",
+ [''B''] = "Broadcom Corporation",
[''D''] = "Digital Equipment Corp&qu...
2014 Dec 24
2
[PATCH nouveau 06/11] platform: complete the power up/down sequence
...+#include <linux/of_platform.h>
> #include <linux/reset.h>
> #include <linux/regulator/consumer.h>
> #include <soc/tegra/fuse.h>
> +#include <soc/tegra/mc.h>
> #include <soc/tegra/pmc.h>
>
> #include "nouveau_drm.h"
> @@ -61,6 +63,9 @@ static int nouveau_platform_power_up(struct nouveau_platform_gpu *gpu)
> reset_control_deassert(gpu->rst);
> udelay(10);
>
> + tegra_mc_flush(gpu->mc, gpu->swgroup, false);
> + udelay(10);
> +
> return 0;
>
> err_clamp:
> @@ -77,6 +82,14...
2023 Feb 21
4
[patch net-next v2] net: virtio_net: implement exact header length guest feature
...F_NOTF_COAL, \
+ VIRTIO_NET_F_GUEST_HDRLEN
static unsigned int features[] = {
VIRTNET_FEATURES,
diff --git a/include/uapi/linux/virtio_net.h b/include/uapi/linux/virtio_net.h
index b4062bed186a..12c1c9699935 100644
--- a/include/uapi/linux/virtio_net.h
+++ b/include/uapi/linux/virtio_net.h
@@ -61,6 +61,7 @@
#define VIRTIO_NET_F_GUEST_USO6 55 /* Guest can handle USOv6 in. */
#define VIRTIO_NET_F_HOST_USO 56 /* Host can handle USO in. */
#define VIRTIO_NET_F_HASH_REPORT 57 /* Supports hash report */
+#define VIRTIO_NET_F_GUEST_HDRLEN 59 /* Guest provides the exact hdr_len value. */
#def...
2014 Oct 27
2
[PATCH v12 09/11] pvqspinlock, x86: Add para-virtualization support
...kernel.
>>> But you don't have to. My patches allowed for the inline to remain,
>>> again reducing the overhead of enabling PV spinlocks while running on a
>>> real machine.
>>>
>>> Look at:
>>>
>>> http://lkml.kernel.org/r/20140615130154.213923590 at chello.nl
>>>
>>> In particular this hunk:
>>>
>>> Index: linux-2.6/arch/x86/kernel/paravirt_patch_64.c
>>> ===================================================================
>>> --- linux-2.6.orig/arch/x86/kernel/paravirt_p...
2014 Oct 27
2
[PATCH v12 09/11] pvqspinlock, x86: Add para-virtualization support
...kernel.
>>> But you don't have to. My patches allowed for the inline to remain,
>>> again reducing the overhead of enabling PV spinlocks while running on a
>>> real machine.
>>>
>>> Look at:
>>>
>>> http://lkml.kernel.org/r/20140615130154.213923590 at chello.nl
>>>
>>> In particular this hunk:
>>>
>>> Index: linux-2.6/arch/x86/kernel/paravirt_patch_64.c
>>> ===================================================================
>>> --- linux-2.6.orig/arch/x86/kernel/paravirt_p...
2016 Aug 10
1
[PATCH 2/7] v2v: add basic support for the "deb" package manager
...with
+ | "deb" ->
+ let cmd = [ "dpkg"; "--purge" ] @ packages in
+ let cmd = Array.of_list cmd in
+ ignore (g#command cmd);
| "rpm" ->
let cmd = [ "rpm"; "-e" ] @ packages in
let cmd = Array.of_list cmd in
@@ -61,6 +65,12 @@ let file_list_of_package (g : Guestfs.guestfs) inspect app =
let package_format = inspect.i_package_format in
match package_format with
+ | "deb" ->
+ let cmd = [| "dpkg"; "-L"; app.G.app2_name |] in
+ debug "%s" (String.concat &...
2023 Feb 17
1
[patch net-next] net: virtio_net: implement exact header length guest feature
...; >> VIRTNET_FEATURES,
> >> diff --git a/include/uapi/linux/virtio_net.h b/include/uapi/linux/virtio_net.h
> >> index b4062bed186a..12c1c9699935 100644
> >> --- a/include/uapi/linux/virtio_net.h
> >> +++ b/include/uapi/linux/virtio_net.h
> >> @@ -61,6 +61,7 @@
> >> #define VIRTIO_NET_F_GUEST_USO6 55 /* Guest can handle USOv6 in. */
> >> #define VIRTIO_NET_F_HOST_USO 56 /* Host can handle USO in. */
> >> #define VIRTIO_NET_F_HASH_REPORT 57 /* Supports hash report */
> >> +#define VIRTIO_NET_F_GUEST_HDRLEN...
2023 Feb 20
3
[patch net-next] net: virtio_net: implement exact header length guest feature
...>> diff --git a/include/uapi/linux/virtio_net.h b/include/uapi/linux/virtio_net.h
> >> >> index b4062bed186a..12c1c9699935 100644
> >> >> --- a/include/uapi/linux/virtio_net.h
> >> >> +++ b/include/uapi/linux/virtio_net.h
> >> >> @@ -61,6 +61,7 @@
> >> >> #define VIRTIO_NET_F_GUEST_USO6 55 /* Guest can handle USOv6 in. */
> >> >> #define VIRTIO_NET_F_HOST_USO 56 /* Host can handle USO in. */
> >> >> #define VIRTIO_NET_F_HASH_REPORT 57 /* Supports hash report */
> >> >>...
2016 Aug 09
2
Re: [PATCH 2/8] v2v: add basic support for the "deb" package manager
...; + let cmd = [ "dpkg"; "--purge" ] @ packages in
> + let cmd = Array.of_list cmd in
> + ignore (g#command cmd);
> | "rpm" ->
> let cmd = [ "rpm"; "-e" ] @ packages in
> let cmd = Array.of_list cmd in
> @@ -61,6 +65,12 @@ let file_list_of_package (g : Guestfs.guestfs) inspect app =
> let package_format = inspect.i_package_format in
>
> match package_format with
> + | "deb" ->
> + let cmd = [| "dpkg"; "-L"; app.G.app2_name |] in
> + debug &...
2013 Jan 17
4
[PATCH] virtio_console: Use virtio device index to generate port name
...com>
---
drivers/char/virtio_console.c | 16 +++-------------
1 files changed, 3 insertions(+), 13 deletions(-)
diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c
index c17b053..031be0b 100644
--- a/drivers/char/virtio_console.c
+++ b/drivers/char/virtio_console.c
@@ -61,9 +61,6 @@ struct ports_driver_data {
/* List of all the devices we're handling */
struct list_head portdevs;
- /* Number of devices this driver is handling */
- unsigned int index;
-
/*
* This is used to keep track of the number of hvc consoles
* spawned by this driver. This num...
2013 Jan 17
4
[PATCH] virtio_console: Use virtio device index to generate port name
...com>
---
drivers/char/virtio_console.c | 16 +++-------------
1 files changed, 3 insertions(+), 13 deletions(-)
diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c
index c17b053..031be0b 100644
--- a/drivers/char/virtio_console.c
+++ b/drivers/char/virtio_console.c
@@ -61,9 +61,6 @@ struct ports_driver_data {
/* List of all the devices we're handling */
struct list_head portdevs;
- /* Number of devices this driver is handling */
- unsigned int index;
-
/*
* This is used to keep track of the number of hvc consoles
* spawned by this driver. This num...
2020 Apr 02
1
[PATCH V9 1/9] vhost: refine vhost and vringh kconfig
...ee ok now?
>
>
> Still need to select CONFIG_VHOST for? CONFIG_VHOST_VDPA. Others are ok.
>
> Thanks
Oh like this then?
diff --git a/drivers/vhost/Kconfig b/drivers/vhost/Kconfig
index bdd270fede26..cb6b17323eb2 100644
--- a/drivers/vhost/Kconfig
+++ b/drivers/vhost/Kconfig
@@ -61,6 +63,7 @@ config VHOST_VSOCK
config VHOST_VDPA
tristate "Vhost driver for vDPA-based backend"
depends on EVENTFD
+ select VHOST
select VDPA
help
This kernel module can be loaded in host kernel to accelerate
2023 Feb 20
2
[patch net-next] net: virtio_net: implement exact header length guest feature
...git a/include/uapi/linux/virtio_net.h b/include/uapi/linux/virtio_net.h
>> >> >> index b4062bed186a..12c1c9699935 100644
>> >> >> --- a/include/uapi/linux/virtio_net.h
>> >> >> +++ b/include/uapi/linux/virtio_net.h
>> >> >> @@ -61,6 +61,7 @@
>> >> >> #define VIRTIO_NET_F_GUEST_USO6 55 /* Guest can handle USOv6 in. */
>> >> >> #define VIRTIO_NET_F_HOST_USO 56 /* Host can handle USO in. */
>> >> >> #define VIRTIO_NET_F_HASH_REPORT 57 /* Supports hash report */
>>...
2015 Jan 05
2
[PATCH nouveau 06/11] platform: complete the power up/down sequence
...#include <linux/reset.h>
> >> #include <linux/regulator/consumer.h>
> >> #include <soc/tegra/fuse.h>
> >>+#include <soc/tegra/mc.h>
> >> #include <soc/tegra/pmc.h>
> >> #include "nouveau_drm.h"
> >>@@ -61,6 +63,9 @@ static int nouveau_platform_power_up(struct nouveau_platform_gpu *gpu)
> >> reset_control_deassert(gpu->rst);
> >> udelay(10);
> >>+ tegra_mc_flush(gpu->mc, gpu->swgroup, false);
> >>+ udelay(10);
> >>+
> >> return 0;
&...