Displaying 20 results from an estimated 168 matches for "250,7".
Did you mean:
240,7
2015 Jun 25
1
[PATCH] v2v: Increase the timeout of VMware curl connections (RHBZ#1146007).
....
---
v2v/input_libvirt_vcenter_https.ml | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/v2v/input_libvirt_vcenter_https.ml b/v2v/input_libvirt_vcenter_https.ml
index 01a6c89..c6b9a1f 100644
--- a/v2v/input_libvirt_vcenter_https.ml
+++ b/v2v/input_libvirt_vcenter_https.ml
@@ -250,7 +250,8 @@ let map_source_to_uri ?readahead password uri scheme server path =
let json_params = [
"file.driver", JSON.String "https";
"file.url", JSON.String url;
- "file.timeout", JSON.Int 600;
+ (* https://bugzilla.redhat.com/s...
2001 Oct 07
0
trivial grammatical patch
...ay. The message is meaning to say "key file blah is not an RSA1 key
file", whereas I interpreted it to mean "key file blah does not exist".
Trivial patch against 2.9.9p2's authfile.c:
--- authfile.c.orig Sat Oct 6 19:52:16 2001
+++ authfile.c Sat Oct 6 19:53:11 2001
@@ -250,7 +250,7 @@
/* Check that it is at least big enough to contain the ID string. */
if (len < sizeof(authfile_id_string)) {
- debug3("No RSA1 key file %.200s.", filename);
+ debug3("Not RSA1 key file %.200s.", filename);
buffer_free(&buffer);
return NULL;
}
@...
2007 Apr 18
1
[PATCH] Lguest32 print hex on bad reads and writes
...32(struct lguest *lg, u32 ad
/* Don't let them access lguest binary */
if (!lguest_address_ok(lg, addr)
|| get_user(val, (u32 __user *)addr) != 0)
- kill_guest(lg, "bad read address %u", addr);
+ kill_guest(lg, "bad read address %x", addr);
return val;
}
@@ -250,7 +250,7 @@ void lgwrite_u32(struct lguest *lg, u32
{
if (!lguest_address_ok(lg, addr)
|| put_user(val, (u32 __user *)addr) != 0)
- kill_guest(lg, "bad write address %u", addr);
+ kill_guest(lg, "bad write address %x", addr);
}
void lgread(struct lguest *lg, void...
2007 Apr 18
1
[PATCH] Lguest32 print hex on bad reads and writes
...32(struct lguest *lg, u32 ad
/* Don't let them access lguest binary */
if (!lguest_address_ok(lg, addr)
|| get_user(val, (u32 __user *)addr) != 0)
- kill_guest(lg, "bad read address %u", addr);
+ kill_guest(lg, "bad read address %x", addr);
return val;
}
@@ -250,7 +250,7 @@ void lgwrite_u32(struct lguest *lg, u32
{
if (!lguest_address_ok(lg, addr)
|| put_user(val, (u32 __user *)addr) != 0)
- kill_guest(lg, "bad write address %u", addr);
+ kill_guest(lg, "bad write address %x", addr);
}
void lgread(struct lguest *lg, void...
2020 Feb 06
5
[PATCH 4/4] drm/nouveau: Remove struct nouveau_framebuffer
...l_fb_struct(dev, fb, mode_cmd);
> + fb->obj[0] = gem;
>
> - ret = drm_framebuffer_init(dev, &fb->base, &nouveau_framebuffer_funcs);
> + ret = drm_framebuffer_init(dev, fb, &nouveau_framebuffer_funcs);
> if (ret)
> kfree(fb);
> return ret;
> @@ -250,7 +250,7 @@ nouveau_user_framebuffer_create(struct drm_device *dev,
> struct drm_file *file_priv,
> const struct drm_mode_fb_cmd2 *mode_cmd)
> {
> - struct nouveau_framebuffer *fb;
> + struct drm_framebuffer *fb;
> struct drm_gem_object *gem;
> int ret;
>...
2015 May 14
1
[PATCH] When calling getline first time, initialize length to zero.
...@ auth_callback (guestfs_h *g,
size_t i;
char *prompt;
char *reply = NULL;
- size_t allocsize;
+ size_t allocsize = 0;
char *pass;
ssize_t len;
int r;
diff --git a/fuse/test-fuse.c b/fuse/test-fuse.c
index 84d58e8..6e91d71 100644
--- a/fuse/test-fuse.c
+++ b/fuse/test-fuse.c
@@ -250,7 +250,7 @@ test_fuse (void)
fflush (stdout)
FILE *fp;
char *line = NULL;
- size_t len;
+ size_t len = 0;
struct stat statbuf;
char buf[128];
ssize_t r;
diff --git a/p2v/main.c b/p2v/main.c
index 15628ba..1f8370b 100644
--- a/p2v/main.c
+++ b/p2v/main.c
@@ -306,7 +306,7 @@ parti...
2000 Oct 30
0
FreeBSD Security Advisory: FreeBSD-SA-00:58.chpass
...make all install
# cd /usr/src/usr.bin/chpass/
# make depend && make all install
# cd /usr/src/usr.bin/passwd/
# make depend && make all install
Patch for vulnerable systems:
--- pw_util.c 1999/08/28 01:20:31 1.17
+++ pw_util.c 2000/07/12 00:49:40 1.18
@@ -250,7 +250,7 @@
extern int _use_yp;
#endif /* YP */
if (err)
- warn(name);
+ warn("%s", name);
#ifdef YP
if (_use_yp)
warnx("NIS information unchanged");
-----BEGIN PGP SIGNATURE-...
2017 Jan 30
2
[PATCH] drm/nouveau: gk20a: Turn instmem lock into mutex
...em = node->base.imem;
struct nvkm_ltc *ltc = imem->base.subdev.device->ltc;
- unsigned long flags;
- spin_lock_irqsave(&imem->lock, flags);
+ mutex_lock(&imem->lock);
/* we should at least have one user to release... */
if (WARN_ON(node->use_cpt == 0))
@@ -252,7 +250,7 @@ gk20a_instobj_release_iommu(struct nvkm_memory *memory)
list_add_tail(&node->vaddr_node, &imem->vaddr_lru);
out:
- spin_unlock_irqrestore(&imem->lock, flags);
+ mutex_unlock(&imem->lock);
wmb();
nvkm_ltc_invalidate(ltc);
@@ -306,19 +304,18 @@ gk20a_insto...
2020 Feb 06
2
[PATCH 4/4] drm/nouveau: Remove struct nouveau_framebuffer
...??? ret = drm_framebuffer_init(dev, &fb->base,
>>> &nouveau_framebuffer_funcs);
>>> +??? ret = drm_framebuffer_init(dev, fb, &nouveau_framebuffer_funcs);
>>> ????? if (ret)
>>> ????????? kfree(fb);
>>> ????? return ret;
>>> @@ -250,7 +250,7 @@ nouveau_user_framebuffer_create(struct drm_device
>>> *dev,
>>> ????????????????? struct drm_file *file_priv,
>>> ????????????????? const struct drm_mode_fb_cmd2 *mode_cmd)
>>> ? {
>>> -??? struct nouveau_framebuffer *fb;
>>> +???...
2020 Feb 06
2
[PATCH 4/4] drm/nouveau: Remove struct nouveau_framebuffer
...-??? ret = drm_framebuffer_init(dev, &fb->base,
>>> &nouveau_framebuffer_funcs);
>>> +??? ret = drm_framebuffer_init(dev, fb, &nouveau_framebuffer_funcs);
>>> ????? if (ret)
>>> ????????? kfree(fb);
>>> ????? return ret;
>>> @@ -250,7 +250,7 @@ nouveau_user_framebuffer_create(struct drm_device
>>> *dev,
>>> ????????????????? struct drm_file *file_priv,
>>> ????????????????? const struct drm_mode_fb_cmd2 *mode_cmd)
>>> ? {
>>> -??? struct nouveau_framebuffer *fb;
>>> +??? s...
2008 Sep 10
2
Bug#490409: xen-3: diff for NMU version 3.2.1-2.1
...Jackson <ian.jackson at eu.citrix.com>
+xen-unstable changeset: 17606:e3be00bd6aa963aca563692c271af762f9380ba0
+xen-unstable date: Mon May 12 10:09:12 2008 +0100
+
+--- a/tools/ioemu/block.c Tue May 13 15:16:59 2008 +0100
++++ b/tools/ioemu/block.c Tue May 13 15:19:47 2008 +0100
+@@ -250,7 +250,7 @@ static BlockDriver *find_protocol(const
+ #endif
+ p = strchr(filename, ':');
+ if (!p)
+- return &bdrv_raw;
++ return NULL; /* do not ever guess raw, it is a security problem! */
+ len = p - filename;
+ if (len > sizeof(protocol) - 1)
+...
2020 Feb 10
2
[PATCH 4/4] drm/nouveau: Remove struct nouveau_framebuffer
...> >>>> &nouveau_framebuffer_funcs);
> >>>> + ret = drm_framebuffer_init(dev, fb, &nouveau_framebuffer_funcs);
> >>>> if (ret)
> >>>> kfree(fb);
> >>>> return ret;
> >>>> @@ -250,7 +250,7 @@ nouveau_user_framebuffer_create(struct drm_device
> >>>> *dev,
> >>>> struct drm_file *file_priv,
> >>>> const struct drm_mode_fb_cmd2 *mode_cmd)
> >>>> {
> >>>> - stru...
2020 Feb 10
2
[PATCH 4/4] drm/nouveau: Remove struct nouveau_framebuffer
...mebuffer_funcs);
>>>>>>> + ret = drm_framebuffer_init(dev, fb, &nouveau_framebuffer_funcs);
>>>>>>> if (ret)
>>>>>>> kfree(fb);
>>>>>>> return ret;
>>>>>>> @@ -250,7 +250,7 @@ nouveau_user_framebuffer_create(struct drm_device
>>>>>>> *dev,
>>>>>>> struct drm_file *file_priv,
>>>>>>> const struct drm_mode_fb_cmd2 *mode_cmd)
>>>>>>> {...
2020 Feb 06
0
[PATCH 4/4] drm/nouveau: Remove struct nouveau_framebuffer
...>base.obj[0] = gem;
+ drm_helper_mode_fill_fb_struct(dev, fb, mode_cmd);
+ fb->obj[0] = gem;
- ret = drm_framebuffer_init(dev, &fb->base, &nouveau_framebuffer_funcs);
+ ret = drm_framebuffer_init(dev, fb, &nouveau_framebuffer_funcs);
if (ret)
kfree(fb);
return ret;
@@ -250,7 +250,7 @@ nouveau_user_framebuffer_create(struct drm_device *dev,
struct drm_file *file_priv,
const struct drm_mode_fb_cmd2 *mode_cmd)
{
- struct nouveau_framebuffer *fb;
+ struct drm_framebuffer *fb;
struct drm_gem_object *gem;
int ret;
@@ -260,7 +260,7 @@ nouveau_user_framebuff...
2012 Nov 07
4
[PATCH 1/2] 4.1.2 blktap2 cleanup fixes.
...err = tap_ctl_find(type, disk, &tap);
+ if (err < 0) return;
+
+ tap_ctl_destroy(tap.id, tap.minor);
+}
diff -r 700d0f03d50a tools/libxl/libxl_device.c
--- a/tools/libxl/libxl_device.c Mon Oct 29 09:04:48 2012 +0100
+++ b/tools/libxl/libxl_device.c Tue Nov 06 19:52:48 2012 -0600
@@ -250,6 +250,7 @@ int libxl__device_destroy(libxl_ctx *ctx
if (!state)
goto out;
if (atoi(state) != 4) {
+ libxl__device_destroy_tapdisk(&gc, be_path);
xs_rm(ctx->xsh, XBT_NULL, be_path);
goto out;
}
@@ -368,6 +369,7 @@ int libxl__devices_destroy(li...
2012 Nov 07
4
[PATCH 2/2] 4.1.2 blktap2 cleanup fixes.
...l of the tap device.
+ */
+ xs_rm(ctx->xsh, XBT_NULL, be_path);
+
tap_ctl_destroy(tap.id, tap.minor);
}
diff -r b184698e0893 tools/libxl/libxl_device.c
--- a/tools/libxl/libxl_device.c Tue Nov 06 19:53:48 2012 -0600
+++ b/tools/libxl/libxl_device.c Tue Nov 06 19:54:23 2012 -0600
@@ -250,8 +250,7 @@ int libxl__device_destroy(libxl_ctx *ctx
if (!state)
goto out;
if (atoi(state) != 4) {
- libxl__device_destroy_tapdisk(&gc, be_path);
- xs_rm(ctx->xsh, XBT_NULL, be_path);
+ libxl__device_destroy_tapdisk(&gc, be_path);
goto out;...
2020 Feb 06
0
[PATCH 4/4] drm/nouveau: Remove struct nouveau_framebuffer
...t;obj[0] = gem;
>> -??? ret = drm_framebuffer_init(dev, &fb->base,
>> &nouveau_framebuffer_funcs);
>> +??? ret = drm_framebuffer_init(dev, fb, &nouveau_framebuffer_funcs);
>> ????? if (ret)
>> ????????? kfree(fb);
>> ????? return ret;
>> @@ -250,7 +250,7 @@ nouveau_user_framebuffer_create(struct drm_device
>> *dev,
>> ????????????????? struct drm_file *file_priv,
>> ????????????????? const struct drm_mode_fb_cmd2 *mode_cmd)
>> ? {
>> -??? struct nouveau_framebuffer *fb;
>> +??? struct drm_framebuffer *f...
2017 Feb 24
1
[PATCH] drm/nouveau: gk20a: Turn instmem lock into mutex
...ev.device->ltc;
>> - unsigned long flags;
>>
>> - spin_lock_irqsave(&imem->lock, flags);
>> + mutex_lock(&imem->lock);
>>
>> /* we should at least have one user to release... */
>> if (WARN_ON(node->use_cpt == 0))
>> @@ -252,7 +250,7 @@ gk20a_instobj_release_iommu(struct nvkm_memory *memory)
>> list_add_tail(&node->vaddr_node, &imem->vaddr_lru);
>>
>> out:
>> - spin_unlock_irqrestore(&imem->lock, flags);
>> + mutex_unlock(&imem->lock);
>>
>> wmb();
&g...
2020 Feb 06
0
[PATCH 4/4] drm/nouveau: Remove struct nouveau_framebuffer
...;obj[0] = gem;
>> ? -??? ret = drm_framebuffer_init(dev, &fb->base,
>> &nouveau_framebuffer_funcs);
>> +??? ret = drm_framebuffer_init(dev, fb, &nouveau_framebuffer_funcs);
>> ????? if (ret)
>> ????????? kfree(fb);
>> ????? return ret;
>> @@ -250,7 +250,7 @@ nouveau_user_framebuffer_create(struct drm_device
>> *dev,
>> ????????????????? struct drm_file *file_priv,
>> ????????????????? const struct drm_mode_fb_cmd2 *mode_cmd)
>> ? {
>> -??? struct nouveau_framebuffer *fb;
>> +??? struct drm_framebuffer *fb...
2020 Feb 07
0
[PATCH 4/4] drm/nouveau: Remove struct nouveau_framebuffer
...r_init(dev, &fb->base,
>>>> &nouveau_framebuffer_funcs);
>>>> +??? ret = drm_framebuffer_init(dev, fb, &nouveau_framebuffer_funcs);
>>>> ?????? if (ret)
>>>> ?????????? kfree(fb);
>>>> ?????? return ret;
>>>> @@ -250,7 +250,7 @@ nouveau_user_framebuffer_create(struct drm_device
>>>> *dev,
>>>> ?????????????????? struct drm_file *file_priv,
>>>> ?????????????????? const struct drm_mode_fb_cmd2 *mode_cmd)
>>>> ?? {
>>>> -??? struct nouveau_framebuffer *f...