From: Richard Purdie <richard.purdie@linuxfoundation.org>
To: Alex DAMIAN <alexandru.damian@intel.com>
Cc: bitbake-devel@lists.openembedded.org
Subject: Re: [PATCH 1/1] bitbake: cooker: clear up state on stateShutdown command
Date: Sat, 14 Sep 2013 09:33:02 +0100 [thread overview]
Message-ID: <1379147582.3484.284.camel@ted> (raw)
In-Reply-To: <1379076430.3484.266.camel@ted>
On Fri, 2013-09-13 at 13:47 +0100, Richard Purdie wrote:
> On Tue, 2013-09-10 at 16:48 +0100, Alex DAMIAN wrote:
> > From: Alexandru DAMIAN <alexandru.damian@intel.com>
> >
> > On resident bitbake server, a stateShutdown command (first
> > Ctrl-C in client) will leave the server in an unusable state.
> >
> > This patch forces the server to reload data and begin
> > processing commands again, coping correctly with Ctrl-C commands.
> >
> > Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com>
> >
> > diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
> > index c3721aa..42eec2c 100644
> > --- a/bitbake/lib/bb/cooker.py
> > +++ b/bitbake/lib/bb/cooker.py
> > @@ -1101,6 +1101,7 @@ class BBCooker:
> > rq.finish_runqueue(True)
> > elif self.state == state.shutdown:
> > rq.finish_runqueue(False)
> > + self.state = state.initial
> > failures = 0
> > try:
> > retval = rq.execute_runqueue()
> > @@ -1191,7 +1192,7 @@ class BBCooker:
> > if self.state == state.running:
> > return
> >
> > - if self.state in (state.shutdown, state.stop):
> > + if self.state == state.stop:
> > self.parser.shutdown(clean=False, force = True)
> > sys.exit(1)
>
> This doesn't seem very intuitive. As I read the code above, "shutdown"
> means it sits and does nothing, "stop" means it exits? Surely these
> should be the other way around?
For completeness, my patch series addresses the above problems in
different ways. The underlying problems were the server not being reset
to state.initial after a command failed and the sys.exit() call causing
the server to exit.
Cheers,
Richard
prev parent reply other threads:[~2013-09-14 8:33 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-10 15:48 [PATCH 1/1] bitbake: cooker: clear up state on stateShutdown command Alex DAMIAN
2013-09-13 12:47 ` Richard Purdie
2013-09-14 8:33 ` Richard Purdie [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1379147582.3484.284.camel@ted \
--to=richard.purdie@linuxfoundation.org \
--cc=alexandru.damian@intel.com \
--cc=bitbake-devel@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox