search for: 3519,6

Displaying 11 results from an estimated 11 matches for "3519,6".

Did you mean: 519,6
2007 Aug 13
1
[PATCH] [365/2many] MAINTAINERS - PARAVIRT_OPS INTERFACE
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <joe@perches.com> diff --git a/MAINTAINERS b/MAINTAINERS index 2166416..44768ce 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -3519,6 +3519,9 @@ M: rusty@rustcorp.com.au L: virtualization@lists.osdl.org L: linux-kernel@vger.kernel.org S: Supported +F: arch/i386/kernel/paravirt.c +F: include/asm-i386/paravirt.h +F: include/asm-um/paravirt.h PC87360 HARDWARE MONITORING DRIVER P: Jim Cromie
2007 Aug 13
1
[PATCH] [365/2many] MAINTAINERS - PARAVIRT_OPS INTERFACE
Add file pattern to MAINTAINER entry Signed-off-by: Joe Perches <joe@perches.com> diff --git a/MAINTAINERS b/MAINTAINERS index 2166416..44768ce 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -3519,6 +3519,9 @@ M: rusty@rustcorp.com.au L: virtualization@lists.osdl.org L: linux-kernel@vger.kernel.org S: Supported +F: arch/i386/kernel/paravirt.c +F: include/asm-i386/paravirt.h +F: include/asm-um/paravirt.h PC87360 HARDWARE MONITORING DRIVER P: Jim Cromie
2013 Aug 27
7
[PATCH] Btrfs: fix deadlock in uuid scan kthread
...; - if (!btrfs_is_empty_uuid(root_item.uuid)) { + + if (!btrfs_is_empty_uuid(root_item.uuid) || + !btrfs_is_empty_uuid(root_item.received_uuid)) { + if (trans) + goto update_tree; + + btrfs_release_path(path); /* * 1 - subvol uuid item * 1 - received_subvol uuid item @@ -3519,6 +3525,11 @@ static int btrfs_uuid_scan_kthread(void *data) ret = PTR_ERR(trans); break; } + continue; + } else + goto skip; +update_tree: + if (!btrfs_is_empty_uuid(root_item.uuid)) { ret = btrfs_uuid_tree_add(trans, fs_info->uuid_root, root_item.uuid,...
2016 Oct 03
3
[PATCH v2 0/2] New tool: virt-tail.
Nothing new in the virt-tail command itself, but the second commit includes a simple test. Rich.
2016 Oct 03
0
[PATCH v2 1/2] New tool: virt-tail.
...virt-resize(1)>, L<virt-sparsify(1)>, L<virt-sysprep(1)>, +L<virt-tail(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, diff --git a/src/guestfs.pod b/src/guestfs.pod index 864b9db..bdc470b 100644 --- a/src/guestfs.pod +++ b/src/guestfs.pod @@ -3519,6 +3519,7 @@ L<virt-rescue(1)>, L<virt-resize(1)>, L<virt-sparsify(1)>, L<virt-sysprep(1)>, +L<virt-tail(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, diff --git a/tools/virt-win-reg b/tools/virt-win-reg index 57188c8..18100e7 1007...
2016 Oct 01
1
[PATCH] New tool: virt-tail.
This adds a new tool which does a follow operation (ie. tail -f) on one or more log/text files inside the guest. I've only done limited testing, but it works for me for tailing various long-running builds inside guests which I'm doing at the moment. There are no tests at present. Rich.
2016 Oct 03
0
[PATCH v3 1/2] New tool: virt-tail.
...virt-resize(1)>, L<virt-sparsify(1)>, L<virt-sysprep(1)>, +L<virt-tail(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, diff --git a/src/guestfs.pod b/src/guestfs.pod index 864b9db..bdc470b 100644 --- a/src/guestfs.pod +++ b/src/guestfs.pod @@ -3519,6 +3519,7 @@ L<virt-rescue(1)>, L<virt-resize(1)>, L<virt-sparsify(1)>, L<virt-sysprep(1)>, +L<virt-tail(1)>, L<virt-tar(1)>, L<virt-tar-in(1)>, L<virt-tar-out(1)>, diff --git a/tools/virt-win-reg b/tools/virt-win-reg index 57188c8..18100e7 1007...
2016 Oct 03
1
Re: [PATCH v2 1/2] New tool: virt-tail.
...t; L<virt-sysprep(1)>, > +L<virt-tail(1)>, > L<virt-tar(1)>, > L<virt-tar-in(1)>, > L<virt-tar-out(1)>, > diff --git a/src/guestfs.pod b/src/guestfs.pod > index 864b9db..bdc470b 100644 > --- a/src/guestfs.pod > +++ b/src/guestfs.pod > @@ -3519,6 +3519,7 @@ L<virt-rescue(1)>, > L<virt-resize(1)>, > L<virt-sparsify(1)>, > L<virt-sysprep(1)>, > +L<virt-tail(1)>, > L<virt-tar(1)>, > L<virt-tar-in(1)>, > L<virt-tar-out(1)>, > diff --git a/tools/virt-win-reg b/tools/...
2016 Oct 03
3
[PATCH v3 0/2] New tool: virt-tail.
Since v2: - Fix the things that Pino mentioned, except the recursion. - Implement Windows support. For Windows support to be sane, I had to inline the add_and_mount code. Rich.
2019 Jul 24
20
[PATCH 00/12] block/bio, fs: convert put_page() to put_user_page*()
From: John Hubbard <jhubbard at nvidia.com> Hi, This is mostly Jerome's work, converting the block/bio and related areas to call put_user_page*() instead of put_page(). Because I've changed Jerome's patches, in some cases significantly, I'd like to get his feedback before we actually leave him listed as the author (he might want to disown some or all of these). I added a
2019 Jul 24
20
[PATCH 00/12] block/bio, fs: convert put_page() to put_user_page*()
From: John Hubbard <jhubbard at nvidia.com> Hi, This is mostly Jerome's work, converting the block/bio and related areas to call put_user_page*() instead of put_page(). Because I've changed Jerome's patches, in some cases significantly, I'd like to get his feedback before we actually leave him listed as the author (he might want to disown some or all of these). I added a