poky.lists.yoctoproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] bitbake: cooker/runqueue: fix a typo
@ 2022-10-17 20:52 Oliver Lang
  2022-10-18 10:24 ` [poky] " Ross Burton
  0 siblings, 1 reply; 3+ messages in thread
From: Oliver Lang @ 2022-10-17 20:52 UTC (permalink / raw)
  To: poky; +Cc: Oliver Lang

Signed-off-by: Oliver Lang <quantenkeks@gmail.com>
---
 bitbake/lib/bb/cooker.py   | 2 +-
 bitbake/lib/bb/runqueue.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
index 32a529f0f9..1da2f03197 100644
--- a/bitbake/lib/bb/cooker.py
+++ b/bitbake/lib/bb/cooker.py
@@ -250,7 +250,7 @@ class BBCooker:
     def process_inotify_updates(self):
         for n in [self.confignotifier, self.notifier]:
             if n and n.check_events(timeout=0):
-                # read notified events and enqeue them
+                # read notified events and enqueue them
                 n.read_events()
                 n.process_events()
 
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 48e25401ba..338d1fe36f 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -2256,7 +2256,7 @@ class RunQueueExecute:
         if self.sq_deferred:
             deferred_tid = list(self.sq_deferred.keys())[0]
             blocking_tid = self.sq_deferred.pop(deferred_tid)
-            logger.warning("Runqeueue deadlocked on deferred tasks, forcing task %s blocked by %s" % (deferred_tid, blocking_tid))
+            logger.warning("Runqueue deadlocked on deferred tasks, forcing task %s blocked by %s" % (deferred_tid, blocking_tid))
             return True
 
         if self.failed_tids:
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [poky] [PATCH] bitbake: cooker/runqueue: fix a typo
  2022-10-17 20:52 [PATCH] bitbake: cooker/runqueue: fix a typo Oliver Lang
@ 2022-10-18 10:24 ` Ross Burton
  2022-10-18 17:52   ` Oliver Lang
  0 siblings, 1 reply; 3+ messages in thread
From: Ross Burton @ 2022-10-18 10:24 UTC (permalink / raw)
  To: quantenkeks; +Cc: poky

Thanks for the patch, but bitbake changes should go to bitbake@lists.openembedded.org.

Basically, poky@ is only for meta-poky/.  bitbake/ should go to bitbake@ and meta/ should go to openembedded-core@lists.openembedded.org.

Thanks
Ross

> On 17 Oct 2022, at 21:52, Oliver Lang via lists.yoctoproject.org <quantenkeks=gmail.com@lists.yoctoproject.org> wrote:
> 
> Signed-off-by: Oliver Lang <quantenkeks@gmail.com>
> ---
> bitbake/lib/bb/cooker.py   | 2 +-
> bitbake/lib/bb/runqueue.py | 2 +-
> 2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
> index 32a529f0f9..1da2f03197 100644
> --- a/bitbake/lib/bb/cooker.py
> +++ b/bitbake/lib/bb/cooker.py
> @@ -250,7 +250,7 @@ class BBCooker:
>     def process_inotify_updates(self):
>         for n in [self.confignotifier, self.notifier]:
>             if n and n.check_events(timeout=0):
> -                # read notified events and enqeue them
> +                # read notified events and enqueue them
>                 n.read_events()
>                 n.process_events()
> 
> diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
> index 48e25401ba..338d1fe36f 100644
> --- a/bitbake/lib/bb/runqueue.py
> +++ b/bitbake/lib/bb/runqueue.py
> @@ -2256,7 +2256,7 @@ class RunQueueExecute:
>         if self.sq_deferred:
>             deferred_tid = list(self.sq_deferred.keys())[0]
>             blocking_tid = self.sq_deferred.pop(deferred_tid)
> -            logger.warning("Runqeueue deadlocked on deferred tasks, forcing task %s blocked by %s" % (deferred_tid, blocking_tid))
> +            logger.warning("Runqueue deadlocked on deferred tasks, forcing task %s blocked by %s" % (deferred_tid, blocking_tid))
>             return True
> 
>         if self.failed_tids:
> -- 
> 2.25.1
> 
> 
> 
> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [poky] [PATCH] bitbake: cooker/runqueue: fix a typo
  2022-10-18 10:24 ` [poky] " Ross Burton
@ 2022-10-18 17:52   ` Oliver Lang
  0 siblings, 0 replies; 3+ messages in thread
From: Oliver Lang @ 2022-10-18 17:52 UTC (permalink / raw)
  To: Ross Burton; +Cc: poky

[-- Attachment #1: Type: text/plain, Size: 2150 bytes --]

Sorry for the inconvenience.
I am resubmitting it there.

Thank you
Oliver

Am Di., 18. Okt. 2022 um 12:24 Uhr schrieb Ross Burton <Ross.Burton@arm.com
>:

> Thanks for the patch, but bitbake changes should go to
> bitbake@lists.openembedded.org.
>
> Basically, poky@ is only for meta-poky/.  bitbake/ should go to bitbake@
> and meta/ should go to openembedded-core@lists.openembedded.org.
>
> Thanks
> Ross
>
> > On 17 Oct 2022, at 21:52, Oliver Lang via lists.yoctoproject.org
> <quantenkeks=gmail.com@lists.yoctoproject.org> wrote:
> >
> > Signed-off-by: Oliver Lang <quantenkeks@gmail.com>
> > ---
> > bitbake/lib/bb/cooker.py   | 2 +-
> > bitbake/lib/bb/runqueue.py | 2 +-
> > 2 files changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py
> > index 32a529f0f9..1da2f03197 100644
> > --- a/bitbake/lib/bb/cooker.py
> > +++ b/bitbake/lib/bb/cooker.py
> > @@ -250,7 +250,7 @@ class BBCooker:
> >     def process_inotify_updates(self):
> >         for n in [self.confignotifier, self.notifier]:
> >             if n and n.check_events(timeout=0):
> > -                # read notified events and enqeue them
> > +                # read notified events and enqueue them
> >                 n.read_events()
> >                 n.process_events()
> >
> > diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
> > index 48e25401ba..338d1fe36f 100644
> > --- a/bitbake/lib/bb/runqueue.py
> > +++ b/bitbake/lib/bb/runqueue.py
> > @@ -2256,7 +2256,7 @@ class RunQueueExecute:
> >         if self.sq_deferred:
> >             deferred_tid = list(self.sq_deferred.keys())[0]
> >             blocking_tid = self.sq_deferred.pop(deferred_tid)
> > -            logger.warning("Runqeueue deadlocked on deferred tasks,
> forcing task %s blocked by %s" % (deferred_tid, blocking_tid))
> > +            logger.warning("Runqueue deadlocked on deferred tasks,
> forcing task %s blocked by %s" % (deferred_tid, blocking_tid))
> >             return True
> >
> >         if self.failed_tids:
> > --
> > 2.25.1
> >
> >
> > 
> >
>
>

[-- Attachment #2: Type: text/html, Size: 3153 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-10-18 17:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-10-17 20:52 [PATCH] bitbake: cooker/runqueue: fix a typo Oliver Lang
2022-10-18 10:24 ` [poky] " Ross Burton
2022-10-18 17:52   ` Oliver Lang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).