search for: segooon

Displaying 6 results from an estimated 6 matches for "segooon".

Did you mean: segoon
2010 Jul 26
2
[PATCH] btrfs: set task state with schedule_timeout_uninterruptible()
worker_loop() uses schedule_timeout() without setting state to STATE_(UN)INTERRUPTIBLE. As it is called in cycle without checking of pending signals, use schedule_timeout_uninterruptible(). Signed-off-by: Kulikov Vasiliy <segooon@gmail.com> --- fs/btrfs/async-thread.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fs/btrfs/async-thread.c b/fs/btrfs/async-thread.c index 7ec1409..54eb070 100644 --- a/fs/btrfs/async-thread.c +++ b/fs/btrfs/async-thread.c @@ -362,7 +362,7 @@ again: * worker-...
2010 Oct 28
1
[PATCH] xen: xenfs: privcmd: check put_user() return code
put_user() may fail. In this case propagate error code from privcmd_ioctl_mmap_batch(). Signed-off-by: Vasiliy Kulikov <segooon at gmail.com> --- Compile tested. drivers/xen/xenfs/privcmd.c | 8 ++------ 1 files changed, 2 insertions(+), 6 deletions(-) diff --git a/drivers/xen/xenfs/privcmd.c b/drivers/xen/xenfs/privcmd.c index f80be7f..2eb04c8 100644 --- a/drivers/xen/xenfs/privcmd.c +++ b/drivers/xen/xenfs/privc...
2010 Oct 28
1
[PATCH] xen: xenfs: privcmd: check put_user() return code
put_user() may fail. In this case propagate error code from privcmd_ioctl_mmap_batch(). Signed-off-by: Vasiliy Kulikov <segooon at gmail.com> --- Compile tested. drivers/xen/xenfs/privcmd.c | 8 ++------ 1 files changed, 2 insertions(+), 6 deletions(-) diff --git a/drivers/xen/xenfs/privcmd.c b/drivers/xen/xenfs/privcmd.c index f80be7f..2eb04c8 100644 --- a/drivers/xen/xenfs/privcmd.c +++ b/drivers/xen/xenfs/privc...
2013 Aug 29
0
[linux-linus test] 18805: regressions - FAIL
...Vasant Hegde <hegdevasant@linux.vnet.ibm.com> Vasanth Ananthan <vasanth.a@samsung.com> Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com> Vasilis Liaskovitis <vasilis.liaskovitis@profitbricks.com> Vasiliy Kulikov <segoon@openwall.com> Vasiliy Kulikov <segooon@gmail.com> Vasily Averin <vvs@openvz.org> Vasily Khoruzhick <anarsoul@gmail.com> Vasily Kulikov <segoon@openwall.com> Vasu Dev <vasu.dev@intel.com> Vasundhara Volam <vasundhara.volam@emulex.com> Veaceslav Falico <vfalico@redhat.com> Veli-Pekka Pe...
2013 Aug 29
0
[linux-linus test] 18844: regressions - FAIL
...Vasant Hegde <hegdevasant@linux.vnet.ibm.com> Vasanth Ananthan <vasanth.a@samsung.com> Vasanthakumar Thiagarajan <vthiagar@qca.qualcomm.com> Vasilis Liaskovitis <vasilis.liaskovitis@profitbricks.com> Vasiliy Kulikov <segoon@openwall.com> Vasiliy Kulikov <segooon@gmail.com> Vasily Averin <vvs@openvz.org> Vasily Khoruzhick <anarsoul@gmail.com> Vasily Kulikov <segoon@openwall.com> Vasu Dev <vasu.dev@intel.com> Vasundhara Volam <vasundhara.volam@emulex.com> Veaceslav Falico <vfalico@redhat.com> Veli-Pekka Pe...
2010 Jul 29
1
[Bug] check return of kmalloc()
Hi, I''ve discovered that some btrfs code doesn''t check whether kmalloc() call succeeded. I poorly understand what this code does and how it can be changed, maybe it would be happy with __GFP_NOFAIL. Also there are BUG_ON() after kmalloc()''s, if they could be changed not to panic it would be great. --- ./fs/btrfs/compression.c 2010-07-06 16:45:48.000000000 +0400 +++