search for: 1430,8

Displaying 18 results from an estimated 18 matches for "1430,8".

Did you mean: 130,8
2008 Sep 25
0
[PATCH 2/4] Add shared reference cache
...le; void *bdev_holder; -}; - -struct btrfs_leaf_ref_tree { - struct rb_root root; - struct btrfs_leaf_ref *last; - struct list_head list; - spinlock_t lock; }; /* diff -r 47aa0c51998a disk-io.c --- a/disk-io.c Thu Sep 25 16:00:36 2008 +0800 +++ b/disk-io.c Thu Sep 25 16:02:11 2008 +0800 @@ -1430,6 +1430,8 @@ fs_info->btree_inode->i_mapping, GFP_NOFS); fs_info->do_barriers = 1; + btrfs_leaf_ref_tree_init(&fs_info->shared_ref_tree); + BTRFS_I(fs_info->btree_inode)->root = tree_root; memset(&BTRFS_I(fs_info->btree_inode)->location, 0,...
2010 Jan 12
2
[patch] Automatically add keys to agent
...me; do not confirm each use. */ + if (ssh_add_identity_constrained(ac, private, comment, 0, 0)) + debug("Identity added: %s (%s)", filename, comment); + else + debug("Error while adding identity!"); + } + + if (comment) + xfree(comment); return private; } @@ -1394,7 +1430,8 @@ userauth_pubkey(Authctxt *authctxt) sent = send_pubkey_test(authctxt, id); } else if (id->key == NULL) { debug("Trying private key: %s", id->filename); - id->key = load_identity_file(id->filename); + id->key = load_identity_file(id->filename, +...
2018 Apr 18
2
[RFC PATCH net-next v6 2/4] net: Introduce generic bypass module
...gt; >> > > > diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h >> > > > index cf44503ea81a..587293728f70 100644 >> > > > --- a/include/linux/netdevice.h >> > > > +++ b/include/linux/netdevice.h >> > > > @@ -1430,6 +1430,8 @@ enum netdev_priv_flags { >> > > > IFF_PHONY_HEADROOM = 1<<24, >> > > > IFF_MACSEC = 1<<25, >> > > > IFF_NO_RX_HANDLER = 1<<26, >> > > > + IFF_BYPASS = 1 << 27, >> > > > + IFF_BYP...
2018 Apr 18
2
[RFC PATCH net-next v6 2/4] net: Introduce generic bypass module
...gt; >> > > > diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h >> > > > index cf44503ea81a..587293728f70 100644 >> > > > --- a/include/linux/netdevice.h >> > > > +++ b/include/linux/netdevice.h >> > > > @@ -1430,6 +1430,8 @@ enum netdev_priv_flags { >> > > > IFF_PHONY_HEADROOM = 1<<24, >> > > > IFF_MACSEC = 1<<25, >> > > > IFF_NO_RX_HANDLER = 1<<26, >> > > > + IFF_BYPASS = 1 << 27, >> > > > + IFF_BYP...
2018 Apr 18
0
[RFC PATCH net-next v6 2/4] net: Introduce generic bypass module
...0644 net/core/bypass.c >>>> >>>> diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h >>>> index cf44503ea81a..587293728f70 100644 >>>> --- a/include/linux/netdevice.h >>>> +++ b/include/linux/netdevice.h >>>> @@ -1430,6 +1430,8 @@ enum netdev_priv_flags { >>>> IFF_PHONY_HEADROOM = 1<<24, >>>> IFF_MACSEC = 1<<25, >>>> IFF_NO_RX_HANDLER = 1<<26, >>>> + IFF_BYPASS = 1 << 27, >>>> + IFF_BYPASS_SLAVE = 1 << 28, >&gt...
2018 Apr 18
2
[RFC PATCH net-next v6 2/4] net: Introduce generic bypass module
...t; create mode 100644 net/core/bypass.c >> > >> > diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h >> > index cf44503ea81a..587293728f70 100644 >> > --- a/include/linux/netdevice.h >> > +++ b/include/linux/netdevice.h >> > @@ -1430,6 +1430,8 @@ enum netdev_priv_flags { >> > IFF_PHONY_HEADROOM = 1<<24, >> > IFF_MACSEC = 1<<25, >> > IFF_NO_RX_HANDLER = 1<<26, >> > + IFF_BYPASS = 1 << 27, >> > + IFF_BYPASS_SLAVE = 1 << 28, >> I wonder, why...
2018 Apr 18
2
[RFC PATCH net-next v6 2/4] net: Introduce generic bypass module
...t; create mode 100644 net/core/bypass.c >> > >> > diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h >> > index cf44503ea81a..587293728f70 100644 >> > --- a/include/linux/netdevice.h >> > +++ b/include/linux/netdevice.h >> > @@ -1430,6 +1430,8 @@ enum netdev_priv_flags { >> > IFF_PHONY_HEADROOM = 1<<24, >> > IFF_MACSEC = 1<<25, >> > IFF_NO_RX_HANDLER = 1<<26, >> > + IFF_BYPASS = 1 << 27, >> > + IFF_BYPASS_SLAVE = 1 << 28, >> I wonder, why...
2018 Apr 18
0
[RFC PATCH net-next v6 2/4] net: Introduce generic bypass module
...gt; > diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h > >> > > > index cf44503ea81a..587293728f70 100644 > >> > > > --- a/include/linux/netdevice.h > >> > > > +++ b/include/linux/netdevice.h > >> > > > @@ -1430,6 +1430,8 @@ enum netdev_priv_flags { > >> > > > IFF_PHONY_HEADROOM = 1<<24, > >> > > > IFF_MACSEC = 1<<25, > >> > > > IFF_NO_RX_HANDLER = 1<<26, > >> > > > + IFF_BYPASS = 1 << 27, > >>...
2018 Apr 11
2
[RFC PATCH net-next v6 2/4] net: Introduce generic bypass module
...nsertions(+) > create mode 100644 include/net/bypass.h > create mode 100644 net/core/bypass.c > >diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h >index cf44503ea81a..587293728f70 100644 >--- a/include/linux/netdevice.h >+++ b/include/linux/netdevice.h >@@ -1430,6 +1430,8 @@ enum netdev_priv_flags { > IFF_PHONY_HEADROOM = 1<<24, > IFF_MACSEC = 1<<25, > IFF_NO_RX_HANDLER = 1<<26, >+ IFF_BYPASS = 1 << 27, >+ IFF_BYPASS_SLAVE = 1 << 28, I wonder, why you don't follow the existing coding style... Also...
2018 Apr 11
2
[RFC PATCH net-next v6 2/4] net: Introduce generic bypass module
...nsertions(+) > create mode 100644 include/net/bypass.h > create mode 100644 net/core/bypass.c > >diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h >index cf44503ea81a..587293728f70 100644 >--- a/include/linux/netdevice.h >+++ b/include/linux/netdevice.h >@@ -1430,6 +1430,8 @@ enum netdev_priv_flags { > IFF_PHONY_HEADROOM = 1<<24, > IFF_MACSEC = 1<<25, > IFF_NO_RX_HANDLER = 1<<26, >+ IFF_BYPASS = 1 << 27, >+ IFF_BYPASS_SLAVE = 1 << 28, I wonder, why you don't follow the existing coding style... Also...
2018 Apr 10
0
[RFC PATCH net-next v6 2/4] net: Introduce generic bypass module
...++++++++ 5 files changed, 973 insertions(+) create mode 100644 include/net/bypass.h create mode 100644 net/core/bypass.c diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index cf44503ea81a..587293728f70 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -1430,6 +1430,8 @@ enum netdev_priv_flags { IFF_PHONY_HEADROOM = 1<<24, IFF_MACSEC = 1<<25, IFF_NO_RX_HANDLER = 1<<26, + IFF_BYPASS = 1 << 27, + IFF_BYPASS_SLAVE = 1 << 28, }; #define IFF_802_1Q_VLAN IFF_802_1Q_VLAN @@ -1458,6 +1460,8 @@ enum netdev_priv_f...
2018 Apr 11
0
[RFC PATCH net-next v6 2/4] net: Introduce generic bypass module
...644 include/net/bypass.h >> create mode 100644 net/core/bypass.c >> >> diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h >> index cf44503ea81a..587293728f70 100644 >> --- a/include/linux/netdevice.h >> +++ b/include/linux/netdevice.h >> @@ -1430,6 +1430,8 @@ enum netdev_priv_flags { >> IFF_PHONY_HEADROOM = 1<<24, >> IFF_MACSEC = 1<<25, >> IFF_NO_RX_HANDLER = 1<<26, >> + IFF_BYPASS = 1 << 27, >> + IFF_BYPASS_SLAVE = 1 << 28, > I wonder, why you don't follow the exi...
2018 Apr 18
4
[RFC PATCH net-next v6 2/4] net: Introduce generic bypass module
...git a/include/linux/netdevice.h b/include/linux/netdevice.h >> >> > > > index cf44503ea81a..587293728f70 100644 >> >> > > > --- a/include/linux/netdevice.h >> >> > > > +++ b/include/linux/netdevice.h >> >> > > > @@ -1430,6 +1430,8 @@ enum netdev_priv_flags { >> >> > > > IFF_PHONY_HEADROOM = 1<<24, >> >> > > > IFF_MACSEC = 1<<25, >> >> > > > IFF_NO_RX_HANDLER = 1<<26, >> >> > > > + IFF_BYPASS = 1 << 2...
2018 Apr 18
4
[RFC PATCH net-next v6 2/4] net: Introduce generic bypass module
...git a/include/linux/netdevice.h b/include/linux/netdevice.h >> >> > > > index cf44503ea81a..587293728f70 100644 >> >> > > > --- a/include/linux/netdevice.h >> >> > > > +++ b/include/linux/netdevice.h >> >> > > > @@ -1430,6 +1430,8 @@ enum netdev_priv_flags { >> >> > > > IFF_PHONY_HEADROOM = 1<<24, >> >> > > > IFF_MACSEC = 1<<25, >> >> > > > IFF_NO_RX_HANDLER = 1<<26, >> >> > > > + IFF_BYPASS = 1 << 2...
2018 Apr 10
6
[RFC PATCH net-next v6 0/4] Enable virtio_net to act as a backup for a passthru device
The main motivation for this patch is to enable cloud service providers to provide an accelerated datapath to virtio-net enabled VMs in a transparent manner with no/minimal guest userspace changes. This also enables hypervisor controlled live migration to be supported with VMs that have direct attached SR-IOV VF devices. Patch 1 introduces a new feature bit VIRTIO_NET_F_BACKUP that can be used
2023 Mar 27
11
[PATCH vhost v6 00/11] virtio core prepares for AF_XDP
XDP socket(AF_XDP) is an excellent bypass kernel network framework. The zero copy feature of xsk (XDP socket) needs to be supported by the driver. The performance of zero copy is very good. ENV: Qemu with vhost. vhost cpu | Guest APP CPU |Guest Softirq CPU | PPS -----------------------------|---------------|------------------|------------ xmit by sockperf: 90% | 100%
2007 Sep 25
50
[patch 00/43] lguest: Patches for 2.6.24 (and patchbomb test)
Hi all, These are the patches I'm planning to submit for 2.6.24. Comments gratefully accepted. Along with the usual cleanups and improvements are Jes' de-i386-ification patches, and a new "virtio" mechanism designed to be shared with KVM (and hopefully other hypervisors). Cheers, Rusty. Documentation/lguest/Makefile | 30 Documentation/lguest/lguest.c
2007 Sep 25
50
[patch 00/43] lguest: Patches for 2.6.24 (and patchbomb test)
Hi all, These are the patches I'm planning to submit for 2.6.24. Comments gratefully accepted. Along with the usual cleanups and improvements are Jes' de-i386-ification patches, and a new "virtio" mechanism designed to be shared with KVM (and hopefully other hypervisors). Cheers, Rusty. Documentation/lguest/Makefile | 30 Documentation/lguest/lguest.c