[Xen-devel] [PATCH] 'dom' error handled, by raising ENOMEM if failure occurs. 'xs_fd' leak handled in success path.

2015-10-27 Thread Lasya
Signed-off-by: Lasya Venneti --- tools/xenstore/init-xenstore-domain.c | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tools/xenstore/init-xenstore-domain.c b/tools/xenstore/init-xenstore-domain.c index 0d12169..b413b09 100644 --- a/tools/xenstore/init-xenstore

[Xen-devel] [PATCH v3] dom variable error handled in Xenstore

2015-10-27 Thread Lasya
xc_dom_allocate function in build function in init-xenstore-domain.c returns NULL on failure. In that case, variable rv is set to ENOMEM and directed to failure path err. Signed-off-by: Lasya Venneti --- tools/xenstore/init-xenstore-domain.c | 4 1 file changed, 4 insertions(+) diff

[Xen-devel] [PATCH v3] Leaking of xs_fd fixed in Xenstore

2015-10-27 Thread Lasya
The success path isn't closed xs_fd in build function in init-xenstore-domain.c . Added that line before return 0. Signed-off-by: Lasya Venneti --- tools/xenstore/init-xenstore-domain.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/xenstore/init-xenstore-domain.c b/tools/xen

Re: [Xen-devel] Outreachy Application

2016-03-21 Thread Lasya Venneti
Hello, My initial contribution can be found at: http://lists.xen.org/archives/html/xen-devel/2015-10/msg02921.html On Mon, Mar 21, 2016 at 4:56 PM, Lars Kurth wrote: > Hi Lasya, (adding xen-devel@) > > On 21 Mar 2016, at 11:17, Lasya Venneti wrote: > > Hi Lars, Jesus! > &g

[Xen-devel] Newbie

2015-09-17 Thread Lasya Venneti
Hi everyone, I'm Lasya a student studying in IIIT-H, Hyderabad, India. I wish to participate in round 11 of Outreachy this time. I would be grateful if someone would direct me as to how I am supposed to start contributing to Xen Project for this Outreachy round. Sincerely, La

Re: [Xen-devel] Newbie - OutreachY round 11 (Dec 7 to March 7)

2015-09-18 Thread Lasya Venneti
Hi everyone, Thanks for your prompt reply. @Lars- I think I would like to work in a Mirage OS related project as of now. Because I'm fairly new to it, request you to give me a few small bugs to solve. Sincerely, Lasya V On 18 September 2015 at 01:44, Konrad Rzeszutek Wilk wrote: >

[Xen-devel] Credit scheduler

2015-10-21 Thread Lasya Venneti
. Thanks! Sincerely, Lasya V ___ Xen-devel mailing list Xen-devel@lists.xen.org http://lists.xen.org/xen-devel

[Xen-devel] Task for OPW

2015-10-22 Thread Lasya Venneti
Hello :-) Could you please give me a small task I can complete for Outreachy/OPW, before the deadline? Thanks Lasya V ___ Xen-devel mailing list Xen-devel@lists.xen.org http://lists.xen.org/xen-devel

[Xen-devel] Fwd: Work on a project: Refactor Linux hotplug scripts

2015-10-24 Thread Lasya Venneti
Hello, I want to take up this bug CID1311511. xc_dom_allocate assigns return value to variable dom which is of type *struct xc_dom_image* dom = xc_dom_allocate(xch, cmdline, NULL); what kind of error checking is supposed to be implemented here? Kindly advise. Thanks Lasya V wh On 23 October

[Xen-devel] [PATCH] Handles the error returned by the xc_dom_allocate function

2015-10-25 Thread Lasya Venneti
--- tools/xenstore/init-xenstore-domain.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/xenstore/init-xenstore-domain.c b/tools/xenstore/init-xenstore-domain.c index 0d12169..d17aab5 100644 --- a/tools/xenstore/init-xenstore-domain.c +++ b/tools/xenstore/init-xenstore-domain.c @@ -4

[Xen-devel] [PATCH] Fixing coverity bug CID1311511

2015-10-25 Thread Lasya Venneti
anges have been made in the build function in init-xenstore-domain.c *I have taken these discussions for reference: https://www.choon.net/forum/read.php?22,3805351,3805351 Signed-off: Lasya Venneti ___ Xen-devel mailing list Xen-devel@lists.xe

Re: [Xen-devel] [PATCH] Fixing coverity bug CID1311511

2015-10-26 Thread Lasya Venneti
Hello, I just wanted to submit this as one of the bugs, the one which George assigned to me is still pending(it's a patch series), I will submit that ASAP. As for this bug, if I have incorrectly handled it, can you please point out my mistake, I will correct it and re-submit. Thanks La

Re: [Xen-devel] [PATCH] Fixing coverity bug CID1311511

2015-10-26 Thread Lasya Venneti
Thank you for pointing out the changelog errors to me, I will definitely keep those in mind and be careful next time. Thanks Lasya V On 26 October 2015 at 14:48, Lasya Venneti wrote: > Hello, > > I just wanted to submit this as one of the bugs, the one which George > assigned to

Re: [Xen-devel] [PATCH] 'dom' error handled, by raising ENOMEM if failure occurs. 'xs_fd' leak handled in success path.

2015-10-27 Thread Lasya Venneti
On 27 October 2015 at 16:25, Dario Faggioli wrote: > On Wed, 2015-10-28 at 03:49 +0530, Lasya wrote: > > The description of the patch, that you previously put in a separate > email, should live here. > Oh, I had thought no cover letter was needed. Hence, I didn't put in a

Re: [Xen-devel] [PATCH] 'dom' error handled, by raising ENOMEM if failure occurs. 'xs_fd' leak handled in success path.

2015-10-27 Thread Lasya Venneti
On 27 October 2015 at 16:37, George Dunlap wrote: > On 27/10/15 11:04, Lasya Venneti wrote: > > On 27 October 2015 at 16:25, Dario Faggioli > > wrote: > > > >> On Wed, 2015-10-28 at 03:49 +0530, Lasya wrote: > >> > >> The description of

Re: [Xen-devel] [PATCH v3] dom variable error handled in Xenstore

2015-10-28 Thread Lasya Venneti
On 28 October 2015 at 06:30, Dario Faggioli wrote: > On Wed, 2015-10-28 at 05:42 +0530, Lasya wrote: > > xc_dom_allocate function in build function in init-xenstore-domain.c > > returns NULL on failure. > > In that case, variable rv is set to ENOMEM and directed to

Re: [Xen-devel] [PATCH v3] dom variable error handled in Xenstore

2015-10-29 Thread Lasya Venneti
On 29 October 2015 at 15:41, Dario Faggioli wrote: > On Thu, 2015-10-29 at 10:07 +, Wei Liu wrote: > > On Thu, Oct 29, 2015 at 12:42:18AM +0530, Lasya Venneti wrote: > > > > I must also add errno.h header to the file, I forgot to do that. I > > > shall &