Displaying 11 results from an estimated 11 matches for "205,15".
Did you mean:
105,15
2020 Nov 03
0
[patch V3 31/37] drm/ttm: Replace kmap_atomic() usage
...return -ENOMEM;
+ /*
+ * Ensure that a highmem page is mapped with the correct
+ * pgprot. For non highmem the mapping is already there.
+ */
+ dst = kmap_local_page_prot(d, prot);
memcpy_fromio(dst, src, PAGE_SIZE);
- kunmap_atomic(dst);
+ kunmap_local(dst);
return 0;
}
@@ -203,13 +205,15 @@ static int ttm_copy_ttm_io_page(struct t
return -ENOMEM;
dst = (void *)((unsigned long)dst + (page << PAGE_SHIFT));
- src = kmap_atomic_prot(s, prot);
- if (!src)
- return -ENOMEM;
+ /*
+ * Ensure that a highmem page is mapped with the correct
+ * pgprot. For non highmem the m...
2011 Nov 11
0
[PATCH 9/9] Decompressors: check input size in unlzo.c
...(posp)
*posp = skip;
for (;;) {
/* read uncompressed block size */
+ if (in_len < 4) {
+ error("file corrupted");
+ goto exit_2;
+ }
dst_len = get_unaligned_be32(in_buf);
in_buf += 4;
+ in_len -= 4;
/* exit if last block */
if (dst_len == 0) {
@@ -176,10 +205,15 @@ STATIC int INIT unlzo(u8 *input, unsigne
}
/* read compressed block size, and skip block checksum info */
+ if (in_len < 8) {
+ error("file corrupted");
+ goto exit_2;
+ }
src_len = get_unaligned_be32(in_buf);
in_buf += 8;
+ in_len -= 8;
- if (src_len <...
2019 Jan 26
6
[PATCH 0/2] allow alternative guest tools directories for distributions
First patch just fixes installing guest tools from directory that was broken.
Second patch revamps how virt-v2v chooses from which directory install guest
tools on Linux. Details in commit message.
Tomáš Golembiovský (2):
v2v: fix path to source when copying files from guest tools directory
v2v: allow alternative directories for distributions
v2v/windows_virtio.ml | 67
2019 Jan 29
2
Re: [PATCH 2/2] v2v: allow alternative directories for distributions
...r_version
You need to extend it so "Some []" errors out like None does. It
should not happen, so it is mostly a safety check.
Another option could be to switch from string list option to
string list, with an empty value to indicate no known directories for
a distro.
> @@ -201,15 +205,15 @@ and install_linux_tools g inspect =
> warning (f_"don't know how to install guest tools on %s-%d")
> inspect.i_distro inspect.i_major_version
> | Some os ->
os -> oses (since it is no more just one).
> + * Note that the call may succeed whi...
2019 Jan 26
0
[PATCH 2/2] v2v: allow alternative directories for distributions
...l7"]
+ | _ -> [])
+ @ ["rhel"])
+ | "sles" | "suse-based" | "opensuse" -> Some [
+ (sprintf "fedora%d" inspect.i_major_version); "suse"; "lp151"]
| _ -> None in
match os with
@@ -201,15 +205,15 @@ and install_linux_tools g inspect =
warning (f_"don't know how to install guest tools on %s-%d")
inspect.i_distro inspect.i_major_version
| Some os ->
- let src_path = "linux" // os in
+ let src_paths = List.map ((//) "linux")...
2019 Jan 26
1
Re: [PATCH 2/2] v2v: allow alternative directories for distributions
...gt; + @ ["rhel"])
> + | "sles" | "suse-based" | "opensuse" -> Some [
> + (sprintf "fedora%d" inspect.i_major_version); "suse"; "lp151"]
> | _ -> None in
>
> match os with
> @@ -201,15 +205,15 @@ and install_linux_tools g inspect =
> warning (f_"don't know how to install guest tools on %s-%d")
> inspect.i_distro inspect.i_major_version
> | Some os ->
> - let src_path = "linux" // os in
> + let src_paths = List.map...
2013 Sep 26
22
Status of FLR in Xen 4.4
Hi everyone,
I would like to ask what the current status of FLR, or better of FLR
emulation is in latest Xen and if we can expect better support in the
future.
I''m asking because with xl (latest build and traditional qemu, not
upstream), I always had problems with rebooting domUs which have vga cards
passed through to them, because appearently they don''t get reinitialized
and
2007 Apr 12
0
Branch 'as' - 15 commits - libswfdec/swfdec_as_context.c libswfdec/swfdec_as_context.h libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_function.c libswfdec/swfdec_as_function.h libswfdec/swfdec_as_interpret.c
...+99,7 @@ const char *swfdec_as_strings[] = {
SWFDEC_AS_CONSTANT_STRING ("function"),
SWFDEC_AS_CONSTANT_STRING ("object"),
SWFDEC_AS_CONSTANT_STRING ("toString"),
+ SWFDEC_AS_CONSTANT_STRING ("valueOf"),
/* add more here */
NULL
};
@@ -204,8 +205,15 @@ swfdec_as_value_to_number (SwfdecAsConte
return NAN;
}
case SWFDEC_TYPE_AS_ASOBJECT:
- SWFDEC_ERROR ("FIXME");
- return NAN;
+ {
+ SwfdecAsValue ret;
+ swfdec_as_object_call (SWFDEC_AS_VALUE_GET_OBJECT (value), SWFDEC_AS_STR_VALUEOF,
+ 0, NULL, &am...
2020 Nov 03
45
[patch V3 00/37] mm/highmem: Preemptible variant of kmap_atomic & friends
Following up to the discussion in:
https://lore.kernel.org/r/20200914204209.256266093 at linutronix.de
and the second version of this:
https://lore.kernel.org/r/20201029221806.189523375 at linutronix.de
this series provides a preemptible variant of kmap_atomic & related
interfaces.
This is achieved by:
- Removing the RT dependency from migrate_disable/enable()
- Consolidating all
2020 Nov 03
45
[patch V3 00/37] mm/highmem: Preemptible variant of kmap_atomic & friends
Following up to the discussion in:
https://lore.kernel.org/r/20200914204209.256266093 at linutronix.de
and the second version of this:
https://lore.kernel.org/r/20201029221806.189523375 at linutronix.de
this series provides a preemptible variant of kmap_atomic & related
interfaces.
This is achieved by:
- Removing the RT dependency from migrate_disable/enable()
- Consolidating all
2020 Nov 03
45
[patch V3 00/37] mm/highmem: Preemptible variant of kmap_atomic & friends
Following up to the discussion in:
https://lore.kernel.org/r/20200914204209.256266093 at linutronix.de
and the second version of this:
https://lore.kernel.org/r/20201029221806.189523375 at linutronix.de
this series provides a preemptible variant of kmap_atomic & related
interfaces.
This is achieved by:
- Removing the RT dependency from migrate_disable/enable()
- Consolidating all