* [Qemu-devel] [PATCH 0/4] Header cleanups @ 2019-04-09 15:56 Aruna Jayasena 2019-04-09 15:56 ` Aruna Jayasena ` (2 more replies) 0 siblings, 3 replies; 22+ messages in thread From: Aruna Jayasena @ 2019-04-09 15:56 UTC (permalink / raw) To: qemu-devel; +Cc: qemu-stable, Aruna Jayasena Removed unwanted includes from cpu-common.h This task was under https://wiki.qemu.org/Contribute/BiteSizedTasks Signed-off-by: Aruna Jayasena <aruna.15@cse.mrt.ac.lk> --- include/exec/cpu-common.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h index cef8b88a2a..a3594f3f50 100644 --- a/include/exec/cpu-common.h +++ b/include/exec/cpu-common.h @@ -7,8 +7,6 @@ #include "exec/hwaddr.h" #endif -#include "qemu/bswap.h" -#include "qemu/queue.h" #include "qemu/fprintf-fn.h" /** -- 2.17.1 ^ permalink raw reply related [flat|nested] 22+ messages in thread
* [Qemu-devel] [PATCH 0/4] Header cleanups 2019-04-09 15:56 [Qemu-devel] [PATCH 0/4] Header cleanups Aruna Jayasena @ 2019-04-09 15:56 ` Aruna Jayasena 2019-04-09 16:40 ` Peter Maydell 2019-04-09 17:06 ` [Qemu-devel] " Thomas Huth 2 siblings, 0 replies; 22+ messages in thread From: Aruna Jayasena @ 2019-04-09 15:56 UTC (permalink / raw) To: qemu-devel; +Cc: Aruna Jayasena, qemu-stable Removed unwanted includes from cpu-common.h This task was under https://wiki.qemu.org/Contribute/BiteSizedTasks Signed-off-by: Aruna Jayasena <aruna.15@cse.mrt.ac.lk> --- include/exec/cpu-common.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h index cef8b88a2a..a3594f3f50 100644 --- a/include/exec/cpu-common.h +++ b/include/exec/cpu-common.h @@ -7,8 +7,6 @@ #include "exec/hwaddr.h" #endif -#include "qemu/bswap.h" -#include "qemu/queue.h" #include "qemu/fprintf-fn.h" /** -- 2.17.1 ^ permalink raw reply related [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH 0/4] Header cleanups 2019-04-09 15:56 [Qemu-devel] [PATCH 0/4] Header cleanups Aruna Jayasena 2019-04-09 15:56 ` Aruna Jayasena @ 2019-04-09 16:40 ` Peter Maydell 2019-04-09 16:40 ` Peter Maydell 2019-04-09 16:42 ` Aruna Jayasena 2019-04-09 17:06 ` [Qemu-devel] " Thomas Huth 2 siblings, 2 replies; 22+ messages in thread From: Peter Maydell @ 2019-04-09 16:40 UTC (permalink / raw) To: Aruna Jayasena; +Cc: QEMU Developers, qemu-stable On Tue, 9 Apr 2019 at 16:58, Aruna Jayasena <aruna.15@cse.mrt.ac.lk> wrote: > > Removed unwanted includes from cpu-common.h > This task was under https://wiki.qemu.org/Contribute/BiteSizedTasks > > Signed-off-by: Aruna Jayasena <aruna.15@cse.mrt.ac.lk> > > --- > include/exec/cpu-common.h | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h > index cef8b88a2a..a3594f3f50 100644 > --- a/include/exec/cpu-common.h > +++ b/include/exec/cpu-common.h > @@ -7,8 +7,6 @@ > #include "exec/hwaddr.h" > #endif > > -#include "qemu/bswap.h" > -#include "qemu/queue.h" > #include "qemu/fprintf-fn.h" > I was surprised that no .c files are implicitly relying on these includes, but apparently none are, so we can safely remove them. A couple of notes: * this doesn't need to go to qemu-stable as it's just a code cleanup * did something go wrong with your sending of this patch? Its subject is "PATCH 0/4" which would usually indicate a cover letter for a four-patch series, but this seems to be a stand-alone patch. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> thanks -- PMM ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH 0/4] Header cleanups 2019-04-09 16:40 ` Peter Maydell @ 2019-04-09 16:40 ` Peter Maydell 2019-04-09 16:42 ` Aruna Jayasena 1 sibling, 0 replies; 22+ messages in thread From: Peter Maydell @ 2019-04-09 16:40 UTC (permalink / raw) To: Aruna Jayasena; +Cc: QEMU Developers, qemu-stable On Tue, 9 Apr 2019 at 16:58, Aruna Jayasena <aruna.15@cse.mrt.ac.lk> wrote: > > Removed unwanted includes from cpu-common.h > This task was under https://wiki.qemu.org/Contribute/BiteSizedTasks > > Signed-off-by: Aruna Jayasena <aruna.15@cse.mrt.ac.lk> > > --- > include/exec/cpu-common.h | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h > index cef8b88a2a..a3594f3f50 100644 > --- a/include/exec/cpu-common.h > +++ b/include/exec/cpu-common.h > @@ -7,8 +7,6 @@ > #include "exec/hwaddr.h" > #endif > > -#include "qemu/bswap.h" > -#include "qemu/queue.h" > #include "qemu/fprintf-fn.h" > I was surprised that no .c files are implicitly relying on these includes, but apparently none are, so we can safely remove them. A couple of notes: * this doesn't need to go to qemu-stable as it's just a code cleanup * did something go wrong with your sending of this patch? Its subject is "PATCH 0/4" which would usually indicate a cover letter for a four-patch series, but this seems to be a stand-alone patch. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> thanks -- PMM ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH 0/4] Header cleanups 2019-04-09 16:40 ` Peter Maydell 2019-04-09 16:40 ` Peter Maydell @ 2019-04-09 16:42 ` Aruna Jayasena 2019-04-09 16:42 ` Aruna Jayasena ` (2 more replies) 1 sibling, 3 replies; 22+ messages in thread From: Aruna Jayasena @ 2019-04-09 16:42 UTC (permalink / raw) To: Peter Maydell; +Cc: QEMU Developers, qemu-stable Yeah this is a stand alone patch. On Tue, Apr 9, 2019 at 10:10 PM, Peter Maydell <peter.maydell@linaro.org> wrote: > On Tue, 9 Apr 2019 at 16:58, Aruna Jayasena <aruna.15@cse.mrt.ac.lk> > wrote: > > > > Removed unwanted includes from cpu-common.h > > This task was under https://wiki.qemu.org/Contribute/BiteSizedTasks > > > > Signed-off-by: Aruna Jayasena <aruna.15@cse.mrt.ac.lk> > > > > --- > > include/exec/cpu-common.h | 2 -- > > 1 file changed, 2 deletions(-) > > > > diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h > > index cef8b88a2a..a3594f3f50 100644 > > --- a/include/exec/cpu-common.h > > +++ b/include/exec/cpu-common.h > > @@ -7,8 +7,6 @@ > > #include "exec/hwaddr.h" > > #endif > > > > -#include "qemu/bswap.h" > > -#include "qemu/queue.h" > > #include "qemu/fprintf-fn.h" > > > > I was surprised that no .c files are implicitly relying > on these includes, but apparently none are, so we can > safely remove them. > > A couple of notes: > * this doesn't need to go to qemu-stable as it's just a > code cleanup > * did something go wrong with your sending of this patch? > Its subject is "PATCH 0/4" which would usually indicate > a cover letter for a four-patch series, but this seems > to be a stand-alone patch. > > Reviewed-by: Peter Maydell <peter.maydell@linaro.org> > > thanks > -- PMM > -- *Aruna* Jayasena Embedded Systems and Computer Science Engineering Undergraduate University of Moratuwa *✆ **+94719872152 * ✉ <aruna.15@cse.mrt.ac.lk> ⌨ <http://archfx.github.io> in <https://www.linkedin.com/in/arunajayasena/> ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH 0/4] Header cleanups 2019-04-09 16:42 ` Aruna Jayasena @ 2019-04-09 16:42 ` Aruna Jayasena 2019-04-09 16:42 ` Aruna Jayasena 2019-04-09 16:50 ` Peter Maydell 2 siblings, 0 replies; 22+ messages in thread From: Aruna Jayasena @ 2019-04-09 16:42 UTC (permalink / raw) To: Peter Maydell; +Cc: QEMU Developers, qemu-stable Yeah this is a stand alone patch. On Tue, Apr 9, 2019 at 10:10 PM, Peter Maydell <peter.maydell@linaro.org> wrote: > On Tue, 9 Apr 2019 at 16:58, Aruna Jayasena <aruna.15@cse.mrt.ac.lk> > wrote: > > > > Removed unwanted includes from cpu-common.h > > This task was under https://wiki.qemu.org/Contribute/BiteSizedTasks > > > > Signed-off-by: Aruna Jayasena <aruna.15@cse.mrt.ac.lk> > > > > --- > > include/exec/cpu-common.h | 2 -- > > 1 file changed, 2 deletions(-) > > > > diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h > > index cef8b88a2a..a3594f3f50 100644 > > --- a/include/exec/cpu-common.h > > +++ b/include/exec/cpu-common.h > > @@ -7,8 +7,6 @@ > > #include "exec/hwaddr.h" > > #endif > > > > -#include "qemu/bswap.h" > > -#include "qemu/queue.h" > > #include "qemu/fprintf-fn.h" > > > > I was surprised that no .c files are implicitly relying > on these includes, but apparently none are, so we can > safely remove them. > > A couple of notes: > * this doesn't need to go to qemu-stable as it's just a > code cleanup > * did something go wrong with your sending of this patch? > Its subject is "PATCH 0/4" which would usually indicate > a cover letter for a four-patch series, but this seems > to be a stand-alone patch. > > Reviewed-by: Peter Maydell <peter.maydell@linaro.org> > > thanks > -- PMM > -- *Aruna* Jayasena Embedded Systems and Computer Science Engineering Undergraduate University of Moratuwa *✆ **+94719872152 * ✉ <aruna.15@cse.mrt.ac.lk> ⌨ <http://archfx.github.io> in <https://www.linkedin.com/in/arunajayasena/> ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH 0/4] Header cleanups 2019-04-09 16:42 ` Aruna Jayasena 2019-04-09 16:42 ` Aruna Jayasena @ 2019-04-09 16:42 ` Aruna Jayasena 2019-04-09 16:42 ` Aruna Jayasena 2019-04-09 16:50 ` Peter Maydell 2 siblings, 1 reply; 22+ messages in thread From: Aruna Jayasena @ 2019-04-09 16:42 UTC (permalink / raw) To: Peter Maydell; +Cc: QEMU Developers, qemu-stable Thank you On Tue, Apr 9, 2019 at 10:12 PM, Aruna Jayasena <aruna.15@cse.mrt.ac.lk> wrote: > Yeah this is a stand alone patch. > > On Tue, Apr 9, 2019 at 10:10 PM, Peter Maydell <peter.maydell@linaro.org> > wrote: > >> On Tue, 9 Apr 2019 at 16:58, Aruna Jayasena <aruna.15@cse.mrt.ac.lk> >> wrote: >> > >> > Removed unwanted includes from cpu-common.h >> > This task was under https://wiki.qemu.org/Contribute/BiteSizedTasks >> > >> > Signed-off-by: Aruna Jayasena <aruna.15@cse.mrt.ac.lk> >> > >> > --- >> > include/exec/cpu-common.h | 2 -- >> > 1 file changed, 2 deletions(-) >> > >> > diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h >> > index cef8b88a2a..a3594f3f50 100644 >> > --- a/include/exec/cpu-common.h >> > +++ b/include/exec/cpu-common.h >> > @@ -7,8 +7,6 @@ >> > #include "exec/hwaddr.h" >> > #endif >> > >> > -#include "qemu/bswap.h" >> > -#include "qemu/queue.h" >> > #include "qemu/fprintf-fn.h" >> > >> >> I was surprised that no .c files are implicitly relying >> on these includes, but apparently none are, so we can >> safely remove them. >> >> A couple of notes: >> * this doesn't need to go to qemu-stable as it's just a >> code cleanup >> * did something go wrong with your sending of this patch? >> Its subject is "PATCH 0/4" which would usually indicate >> a cover letter for a four-patch series, but this seems >> to be a stand-alone patch. >> >> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> >> >> thanks >> -- PMM >> > -- > *Aruna* Jayasena > Embedded Systems and Computer Science Engineering Undergraduate > University of Moratuwa > *✆ **+94719872152 * > ✉ <aruna.15@cse.mrt.ac.lk> ⌨ <http://archfx.github.io> in > <https://www.linkedin.com/in/arunajayasena/> > > > -- *Aruna* Jayasena Embedded Systems and Computer Science Engineering Undergraduate University of Moratuwa *✆ **+94719872152 * ✉ <aruna.15@cse.mrt.ac.lk> ⌨ <http://archfx.github.io> in <https://www.linkedin.com/in/arunajayasena/> ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH 0/4] Header cleanups 2019-04-09 16:42 ` Aruna Jayasena @ 2019-04-09 16:42 ` Aruna Jayasena 0 siblings, 0 replies; 22+ messages in thread From: Aruna Jayasena @ 2019-04-09 16:42 UTC (permalink / raw) To: Peter Maydell; +Cc: QEMU Developers, qemu-stable Thank you On Tue, Apr 9, 2019 at 10:12 PM, Aruna Jayasena <aruna.15@cse.mrt.ac.lk> wrote: > Yeah this is a stand alone patch. > > On Tue, Apr 9, 2019 at 10:10 PM, Peter Maydell <peter.maydell@linaro.org> > wrote: > >> On Tue, 9 Apr 2019 at 16:58, Aruna Jayasena <aruna.15@cse.mrt.ac.lk> >> wrote: >> > >> > Removed unwanted includes from cpu-common.h >> > This task was under https://wiki.qemu.org/Contribute/BiteSizedTasks >> > >> > Signed-off-by: Aruna Jayasena <aruna.15@cse.mrt.ac.lk> >> > >> > --- >> > include/exec/cpu-common.h | 2 -- >> > 1 file changed, 2 deletions(-) >> > >> > diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h >> > index cef8b88a2a..a3594f3f50 100644 >> > --- a/include/exec/cpu-common.h >> > +++ b/include/exec/cpu-common.h >> > @@ -7,8 +7,6 @@ >> > #include "exec/hwaddr.h" >> > #endif >> > >> > -#include "qemu/bswap.h" >> > -#include "qemu/queue.h" >> > #include "qemu/fprintf-fn.h" >> > >> >> I was surprised that no .c files are implicitly relying >> on these includes, but apparently none are, so we can >> safely remove them. >> >> A couple of notes: >> * this doesn't need to go to qemu-stable as it's just a >> code cleanup >> * did something go wrong with your sending of this patch? >> Its subject is "PATCH 0/4" which would usually indicate >> a cover letter for a four-patch series, but this seems >> to be a stand-alone patch. >> >> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> >> >> thanks >> -- PMM >> > -- > *Aruna* Jayasena > Embedded Systems and Computer Science Engineering Undergraduate > University of Moratuwa > *✆ **+94719872152 * > ✉ <aruna.15@cse.mrt.ac.lk> ⌨ <http://archfx.github.io> in > <https://www.linkedin.com/in/arunajayasena/> > > > -- *Aruna* Jayasena Embedded Systems and Computer Science Engineering Undergraduate University of Moratuwa *✆ **+94719872152 * ✉ <aruna.15@cse.mrt.ac.lk> ⌨ <http://archfx.github.io> in <https://www.linkedin.com/in/arunajayasena/> ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH 0/4] Header cleanups 2019-04-09 16:42 ` Aruna Jayasena 2019-04-09 16:42 ` Aruna Jayasena 2019-04-09 16:42 ` Aruna Jayasena @ 2019-04-09 16:50 ` Peter Maydell 2019-04-09 16:50 ` Peter Maydell ` (2 more replies) 2 siblings, 3 replies; 22+ messages in thread From: Peter Maydell @ 2019-04-09 16:50 UTC (permalink / raw) To: Aruna Jayasena; +Cc: QEMU Developers, QEMU Trivial On Tue, 9 Apr 2019 at 17:42, Aruna Jayasena <aruna.15@cse.mrt.ac.lk> wrote: > > Yeah this is a stand alone patch. OK, thanks -- just wanted to check there wasn't a missing bit. I think this could go in via the qemu-trivial tree so I have cc'd them. We're in the middle of a release at the moment, but we should reopen for development in a couple of weeks. If this patch still hasn't gone anywhere by a week or so after that then please follow up with a 'ping' to check it hasn't been forgotten by accident. > On Tue, Apr 9, 2019 at 10:10 PM, Peter Maydell <peter.maydell@linaro.org> wrote: >> On Tue, 9 Apr 2019 at 16:58, Aruna Jayasena <aruna.15@cse.mrt.ac.lk> wrote: >> > >> > Removed unwanted includes from cpu-common.h >> > This task was under https://wiki.qemu.org/Contribute/BiteSizedTasks >> > >> > Signed-off-by: Aruna Jayasena <aruna.15@cse.mrt.ac.lk> >> > >> > --- >> > include/exec/cpu-common.h | 2 -- >> > 1 file changed, 2 deletions(-) >> > >> > diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h >> > index cef8b88a2a..a3594f3f50 100644 >> > --- a/include/exec/cpu-common.h >> > +++ b/include/exec/cpu-common.h >> > @@ -7,8 +7,6 @@ >> > #include "exec/hwaddr.h" >> > #endif >> > >> > -#include "qemu/bswap.h" >> > -#include "qemu/queue.h" >> > #include "qemu/fprintf-fn.h" >> > >> >> I was surprised that no .c files are implicitly relying >> on these includes, but apparently none are, so we can >> safely remove them. >> >> A couple of notes: >> * this doesn't need to go to qemu-stable as it's just a >> code cleanup >> * did something go wrong with your sending of this patch? >> Its subject is "PATCH 0/4" which would usually indicate >> a cover letter for a four-patch series, but this seems >> to be a stand-alone patch. >> >> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> thanks -- PMM ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH 0/4] Header cleanups 2019-04-09 16:50 ` Peter Maydell @ 2019-04-09 16:50 ` Peter Maydell 2019-04-09 16:51 ` Aruna Jayasena 2019-04-10 5:17 ` Markus Armbruster 2 siblings, 0 replies; 22+ messages in thread From: Peter Maydell @ 2019-04-09 16:50 UTC (permalink / raw) To: Aruna Jayasena; +Cc: QEMU Trivial, QEMU Developers On Tue, 9 Apr 2019 at 17:42, Aruna Jayasena <aruna.15@cse.mrt.ac.lk> wrote: > > Yeah this is a stand alone patch. OK, thanks -- just wanted to check there wasn't a missing bit. I think this could go in via the qemu-trivial tree so I have cc'd them. We're in the middle of a release at the moment, but we should reopen for development in a couple of weeks. If this patch still hasn't gone anywhere by a week or so after that then please follow up with a 'ping' to check it hasn't been forgotten by accident. > On Tue, Apr 9, 2019 at 10:10 PM, Peter Maydell <peter.maydell@linaro.org> wrote: >> On Tue, 9 Apr 2019 at 16:58, Aruna Jayasena <aruna.15@cse.mrt.ac.lk> wrote: >> > >> > Removed unwanted includes from cpu-common.h >> > This task was under https://wiki.qemu.org/Contribute/BiteSizedTasks >> > >> > Signed-off-by: Aruna Jayasena <aruna.15@cse.mrt.ac.lk> >> > >> > --- >> > include/exec/cpu-common.h | 2 -- >> > 1 file changed, 2 deletions(-) >> > >> > diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h >> > index cef8b88a2a..a3594f3f50 100644 >> > --- a/include/exec/cpu-common.h >> > +++ b/include/exec/cpu-common.h >> > @@ -7,8 +7,6 @@ >> > #include "exec/hwaddr.h" >> > #endif >> > >> > -#include "qemu/bswap.h" >> > -#include "qemu/queue.h" >> > #include "qemu/fprintf-fn.h" >> > >> >> I was surprised that no .c files are implicitly relying >> on these includes, but apparently none are, so we can >> safely remove them. >> >> A couple of notes: >> * this doesn't need to go to qemu-stable as it's just a >> code cleanup >> * did something go wrong with your sending of this patch? >> Its subject is "PATCH 0/4" which would usually indicate >> a cover letter for a four-patch series, but this seems >> to be a stand-alone patch. >> >> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> thanks -- PMM ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH 0/4] Header cleanups 2019-04-09 16:50 ` Peter Maydell 2019-04-09 16:50 ` Peter Maydell @ 2019-04-09 16:51 ` Aruna Jayasena 2019-04-09 16:51 ` Aruna Jayasena 2019-04-10 5:17 ` Markus Armbruster 2 siblings, 1 reply; 22+ messages in thread From: Aruna Jayasena @ 2019-04-09 16:51 UTC (permalink / raw) To: Peter Maydell; +Cc: QEMU Developers, QEMU Trivial Ok, thanks On Tue, Apr 9, 2019 at 10:20 PM, Peter Maydell <peter.maydell@linaro.org> wrote: > On Tue, 9 Apr 2019 at 17:42, Aruna Jayasena <aruna.15@cse.mrt.ac.lk> > wrote: > > > > Yeah this is a stand alone patch. > > OK, thanks -- just wanted to check there wasn't a missing > bit. I think this could go in via the qemu-trivial tree > so I have cc'd them. > > We're in the middle of a release at the moment, but we > should reopen for development in a couple of weeks. If > this patch still hasn't gone anywhere by a week or so after > that then please follow up with a 'ping' to check it hasn't > been forgotten by accident. > > > On Tue, Apr 9, 2019 at 10:10 PM, Peter Maydell <peter.maydell@linaro.org> > wrote: > >> On Tue, 9 Apr 2019 at 16:58, Aruna Jayasena <aruna.15@cse.mrt.ac.lk> > wrote: > >> > > >> > Removed unwanted includes from cpu-common.h > >> > This task was under https://wiki.qemu.org/Contribute/BiteSizedTasks > >> > > >> > Signed-off-by: Aruna Jayasena <aruna.15@cse.mrt.ac.lk> > >> > > >> > --- > >> > include/exec/cpu-common.h | 2 -- > >> > 1 file changed, 2 deletions(-) > >> > > >> > diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h > >> > index cef8b88a2a..a3594f3f50 100644 > >> > --- a/include/exec/cpu-common.h > >> > +++ b/include/exec/cpu-common.h > >> > @@ -7,8 +7,6 @@ > >> > #include "exec/hwaddr.h" > >> > #endif > >> > > >> > -#include "qemu/bswap.h" > >> > -#include "qemu/queue.h" > >> > #include "qemu/fprintf-fn.h" > >> > > >> > >> I was surprised that no .c files are implicitly relying > >> on these includes, but apparently none are, so we can > >> safely remove them. > >> > >> A couple of notes: > >> * this doesn't need to go to qemu-stable as it's just a > >> code cleanup > >> * did something go wrong with your sending of this patch? > >> Its subject is "PATCH 0/4" which would usually indicate > >> a cover letter for a four-patch series, but this seems > >> to be a stand-alone patch. > >> > >> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> > > thanks > -- PMM > -- *Aruna* Jayasena Embedded Systems and Computer Science Engineering Undergraduate University of Moratuwa *✆ **+94719872152 * ✉ <aruna.15@cse.mrt.ac.lk> ⌨ <http://archfx.github.io> in <https://www.linkedin.com/in/arunajayasena/> ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH 0/4] Header cleanups 2019-04-09 16:51 ` Aruna Jayasena @ 2019-04-09 16:51 ` Aruna Jayasena 0 siblings, 0 replies; 22+ messages in thread From: Aruna Jayasena @ 2019-04-09 16:51 UTC (permalink / raw) To: Peter Maydell; +Cc: QEMU Trivial, QEMU Developers Ok, thanks On Tue, Apr 9, 2019 at 10:20 PM, Peter Maydell <peter.maydell@linaro.org> wrote: > On Tue, 9 Apr 2019 at 17:42, Aruna Jayasena <aruna.15@cse.mrt.ac.lk> > wrote: > > > > Yeah this is a stand alone patch. > > OK, thanks -- just wanted to check there wasn't a missing > bit. I think this could go in via the qemu-trivial tree > so I have cc'd them. > > We're in the middle of a release at the moment, but we > should reopen for development in a couple of weeks. If > this patch still hasn't gone anywhere by a week or so after > that then please follow up with a 'ping' to check it hasn't > been forgotten by accident. > > > On Tue, Apr 9, 2019 at 10:10 PM, Peter Maydell <peter.maydell@linaro.org> > wrote: > >> On Tue, 9 Apr 2019 at 16:58, Aruna Jayasena <aruna.15@cse.mrt.ac.lk> > wrote: > >> > > >> > Removed unwanted includes from cpu-common.h > >> > This task was under https://wiki.qemu.org/Contribute/BiteSizedTasks > >> > > >> > Signed-off-by: Aruna Jayasena <aruna.15@cse.mrt.ac.lk> > >> > > >> > --- > >> > include/exec/cpu-common.h | 2 -- > >> > 1 file changed, 2 deletions(-) > >> > > >> > diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h > >> > index cef8b88a2a..a3594f3f50 100644 > >> > --- a/include/exec/cpu-common.h > >> > +++ b/include/exec/cpu-common.h > >> > @@ -7,8 +7,6 @@ > >> > #include "exec/hwaddr.h" > >> > #endif > >> > > >> > -#include "qemu/bswap.h" > >> > -#include "qemu/queue.h" > >> > #include "qemu/fprintf-fn.h" > >> > > >> > >> I was surprised that no .c files are implicitly relying > >> on these includes, but apparently none are, so we can > >> safely remove them. > >> > >> A couple of notes: > >> * this doesn't need to go to qemu-stable as it's just a > >> code cleanup > >> * did something go wrong with your sending of this patch? > >> Its subject is "PATCH 0/4" which would usually indicate > >> a cover letter for a four-patch series, but this seems > >> to be a stand-alone patch. > >> > >> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> > > thanks > -- PMM > -- *Aruna* Jayasena Embedded Systems and Computer Science Engineering Undergraduate University of Moratuwa *✆ **+94719872152 * ✉ <aruna.15@cse.mrt.ac.lk> ⌨ <http://archfx.github.io> in <https://www.linkedin.com/in/arunajayasena/> ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH 0/4] Header cleanups 2019-04-09 16:50 ` Peter Maydell 2019-04-09 16:50 ` Peter Maydell 2019-04-09 16:51 ` Aruna Jayasena @ 2019-04-10 5:17 ` Markus Armbruster 2019-04-10 5:17 ` Markus Armbruster 2019-04-11 20:15 ` [Qemu-devel] [Qemu-trivial] " Laurent Vivier 2 siblings, 2 replies; 22+ messages in thread From: Markus Armbruster @ 2019-04-10 5:17 UTC (permalink / raw) To: Peter Maydell; +Cc: Aruna Jayasena, QEMU Trivial, QEMU Developers Peter Maydell <peter.maydell@linaro.org> writes: > On Tue, 9 Apr 2019 at 17:42, Aruna Jayasena <aruna.15@cse.mrt.ac.lk> wrote: >> >> Yeah this is a stand alone patch. > > OK, thanks -- just wanted to check there wasn't a missing > bit. I think this could go in via the qemu-trivial tree > so I have cc'd them. > > We're in the middle of a release at the moment, but we > should reopen for development in a couple of weeks. If > this patch still hasn't gone anywhere by a week or so after > that then please follow up with a 'ping' to check it hasn't > been forgotten by accident. Hopefully, qemu-trivial won't wait for the next development cycle to begin just to queue patches for it. Regardless, patch submitters should watch their patches and inquire when they don't get up within a reasonable time frame. Normally, waiting for two weeks feels about right. Perhaps give it an extra week or so when the release circus is in town (like now). ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH 0/4] Header cleanups 2019-04-10 5:17 ` Markus Armbruster @ 2019-04-10 5:17 ` Markus Armbruster 2019-04-11 20:15 ` [Qemu-devel] [Qemu-trivial] " Laurent Vivier 1 sibling, 0 replies; 22+ messages in thread From: Markus Armbruster @ 2019-04-10 5:17 UTC (permalink / raw) To: Peter Maydell; +Cc: Aruna Jayasena, QEMU Trivial, QEMU Developers Peter Maydell <peter.maydell@linaro.org> writes: > On Tue, 9 Apr 2019 at 17:42, Aruna Jayasena <aruna.15@cse.mrt.ac.lk> wrote: >> >> Yeah this is a stand alone patch. > > OK, thanks -- just wanted to check there wasn't a missing > bit. I think this could go in via the qemu-trivial tree > so I have cc'd them. > > We're in the middle of a release at the moment, but we > should reopen for development in a couple of weeks. If > this patch still hasn't gone anywhere by a week or so after > that then please follow up with a 'ping' to check it hasn't > been forgotten by accident. Hopefully, qemu-trivial won't wait for the next development cycle to begin just to queue patches for it. Regardless, patch submitters should watch their patches and inquire when they don't get up within a reasonable time frame. Normally, waiting for two weeks feels about right. Perhaps give it an extra week or so when the release circus is in town (like now). ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [Qemu-trivial] [PATCH 0/4] Header cleanups 2019-04-10 5:17 ` Markus Armbruster 2019-04-10 5:17 ` Markus Armbruster @ 2019-04-11 20:15 ` Laurent Vivier 2019-04-11 20:15 ` Laurent Vivier 2019-04-12 3:30 ` Aruna Jayasena 1 sibling, 2 replies; 22+ messages in thread From: Laurent Vivier @ 2019-04-11 20:15 UTC (permalink / raw) To: Markus Armbruster, Peter Maydell Cc: Aruna Jayasena, QEMU Trivial, QEMU Developers On 10/04/2019 07:17, Markus Armbruster wrote: > Peter Maydell <peter.maydell@linaro.org> writes: > >> On Tue, 9 Apr 2019 at 17:42, Aruna Jayasena <aruna.15@cse.mrt.ac.lk> wrote: >>> >>> Yeah this is a stand alone patch. >> >> OK, thanks -- just wanted to check there wasn't a missing >> bit. I think this could go in via the qemu-trivial tree >> so I have cc'd them. >> >> We're in the middle of a release at the moment, but we >> should reopen for development in a couple of weeks. If >> this patch still hasn't gone anywhere by a week or so after >> that then please follow up with a 'ping' to check it hasn't >> been forgotten by accident. > > Hopefully, qemu-trivial won't wait for the next development cycle to > begin just to queue patches for it. > > Regardless, patch submitters should watch their patches and inquire when > they don't get up within a reasonable time frame. Normally, waiting for > two weeks feels about right. Perhaps give it an extra week or so when > the release circus is in town (like now). > Applied to my trivial-patches branch. Thanks, Laurent ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [Qemu-trivial] [PATCH 0/4] Header cleanups 2019-04-11 20:15 ` [Qemu-devel] [Qemu-trivial] " Laurent Vivier @ 2019-04-11 20:15 ` Laurent Vivier 2019-04-12 3:30 ` Aruna Jayasena 1 sibling, 0 replies; 22+ messages in thread From: Laurent Vivier @ 2019-04-11 20:15 UTC (permalink / raw) To: Markus Armbruster, Peter Maydell Cc: Aruna Jayasena, QEMU Trivial, QEMU Developers On 10/04/2019 07:17, Markus Armbruster wrote: > Peter Maydell <peter.maydell@linaro.org> writes: > >> On Tue, 9 Apr 2019 at 17:42, Aruna Jayasena <aruna.15@cse.mrt.ac.lk> wrote: >>> >>> Yeah this is a stand alone patch. >> >> OK, thanks -- just wanted to check there wasn't a missing >> bit. I think this could go in via the qemu-trivial tree >> so I have cc'd them. >> >> We're in the middle of a release at the moment, but we >> should reopen for development in a couple of weeks. If >> this patch still hasn't gone anywhere by a week or so after >> that then please follow up with a 'ping' to check it hasn't >> been forgotten by accident. > > Hopefully, qemu-trivial won't wait for the next development cycle to > begin just to queue patches for it. > > Regardless, patch submitters should watch their patches and inquire when > they don't get up within a reasonable time frame. Normally, waiting for > two weeks feels about right. Perhaps give it an extra week or so when > the release circus is in town (like now). > Applied to my trivial-patches branch. Thanks, Laurent ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [Qemu-trivial] [PATCH 0/4] Header cleanups 2019-04-11 20:15 ` [Qemu-devel] [Qemu-trivial] " Laurent Vivier 2019-04-11 20:15 ` Laurent Vivier @ 2019-04-12 3:30 ` Aruna Jayasena 2019-04-12 3:30 ` Aruna Jayasena 1 sibling, 1 reply; 22+ messages in thread From: Aruna Jayasena @ 2019-04-12 3:30 UTC (permalink / raw) To: Laurent Vivier Cc: Markus Armbruster, Peter Maydell, QEMU Developers, QEMU Trivial Thanks! On Fri, Apr 12, 2019 at 1:50 AM, Laurent Vivier <laurent@vivier.eu> wrote: > On 10/04/2019 07:17, Markus Armbruster wrote: > > Peter Maydell <peter.maydell@linaro.org> writes: > > > >> On Tue, 9 Apr 2019 at 17:42, Aruna Jayasena <aruna.15@cse.mrt.ac.lk> > wrote: > >>> > >>> Yeah this is a stand alone patch. > >> > >> OK, thanks -- just wanted to check there wasn't a missing > >> bit. I think this could go in via the qemu-trivial tree > >> so I have cc'd them. > >> > >> We're in the middle of a release at the moment, but we > >> should reopen for development in a couple of weeks. If > >> this patch still hasn't gone anywhere by a week or so after > >> that then please follow up with a 'ping' to check it hasn't > >> been forgotten by accident. > > > > Hopefully, qemu-trivial won't wait for the next development cycle to > > begin just to queue patches for it. > > > > Regardless, patch submitters should watch their patches and inquire when > > they don't get up within a reasonable time frame. Normally, waiting for > > two weeks feels about right. Perhaps give it an extra week or so when > > the release circus is in town (like now). > > > > Applied to my trivial-patches branch. > > Thanks, > Laurent > -- *Aruna* Jayasena Embedded Systems and Computer Science Engineering Undergraduate University of Moratuwa *✆ **+94719872152 * ✉ <aruna.15@cse.mrt.ac.lk> ⌨ <http://archfx.github.io> in <https://www.linkedin.com/in/arunajayasena/> ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [Qemu-trivial] [PATCH 0/4] Header cleanups 2019-04-12 3:30 ` Aruna Jayasena @ 2019-04-12 3:30 ` Aruna Jayasena 0 siblings, 0 replies; 22+ messages in thread From: Aruna Jayasena @ 2019-04-12 3:30 UTC (permalink / raw) To: Laurent Vivier Cc: QEMU Trivial, Peter Maydell, Markus Armbruster, QEMU Developers Thanks! On Fri, Apr 12, 2019 at 1:50 AM, Laurent Vivier <laurent@vivier.eu> wrote: > On 10/04/2019 07:17, Markus Armbruster wrote: > > Peter Maydell <peter.maydell@linaro.org> writes: > > > >> On Tue, 9 Apr 2019 at 17:42, Aruna Jayasena <aruna.15@cse.mrt.ac.lk> > wrote: > >>> > >>> Yeah this is a stand alone patch. > >> > >> OK, thanks -- just wanted to check there wasn't a missing > >> bit. I think this could go in via the qemu-trivial tree > >> so I have cc'd them. > >> > >> We're in the middle of a release at the moment, but we > >> should reopen for development in a couple of weeks. If > >> this patch still hasn't gone anywhere by a week or so after > >> that then please follow up with a 'ping' to check it hasn't > >> been forgotten by accident. > > > > Hopefully, qemu-trivial won't wait for the next development cycle to > > begin just to queue patches for it. > > > > Regardless, patch submitters should watch their patches and inquire when > > they don't get up within a reasonable time frame. Normally, waiting for > > two weeks feels about right. Perhaps give it an extra week or so when > > the release circus is in town (like now). > > > > Applied to my trivial-patches branch. > > Thanks, > Laurent > -- *Aruna* Jayasena Embedded Systems and Computer Science Engineering Undergraduate University of Moratuwa *✆ **+94719872152 * ✉ <aruna.15@cse.mrt.ac.lk> ⌨ <http://archfx.github.io> in <https://www.linkedin.com/in/arunajayasena/> ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH 0/4] Header cleanups 2019-04-09 15:56 [Qemu-devel] [PATCH 0/4] Header cleanups Aruna Jayasena 2019-04-09 15:56 ` Aruna Jayasena 2019-04-09 16:40 ` Peter Maydell @ 2019-04-09 17:06 ` Thomas Huth 2019-04-09 17:06 ` Thomas Huth 2019-04-09 17:07 ` Aruna Jayasena 2 siblings, 2 replies; 22+ messages in thread From: Thomas Huth @ 2019-04-09 17:06 UTC (permalink / raw) To: Aruna Jayasena, qemu-devel; +Cc: qemu-trivial On 09/04/2019 17.56, Aruna Jayasena wrote: > Removed unwanted includes from cpu-common.h > This task was under https://wiki.qemu.org/Contribute/BiteSizedTasks > > Signed-off-by: Aruna Jayasena <aruna.15@cse.mrt.ac.lk> > > --- > include/exec/cpu-common.h | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h > index cef8b88a2a..a3594f3f50 100644 > --- a/include/exec/cpu-common.h > +++ b/include/exec/cpu-common.h > @@ -7,8 +7,6 @@ > #include "exec/hwaddr.h" > #endif > > -#include "qemu/bswap.h" > -#include "qemu/queue.h" > #include "qemu/fprintf-fn.h" > > /** > Reviewed-by: Thomas Huth <thuth@redhat.com> ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH 0/4] Header cleanups 2019-04-09 17:06 ` [Qemu-devel] " Thomas Huth @ 2019-04-09 17:06 ` Thomas Huth 2019-04-09 17:07 ` Aruna Jayasena 1 sibling, 0 replies; 22+ messages in thread From: Thomas Huth @ 2019-04-09 17:06 UTC (permalink / raw) To: Aruna Jayasena, qemu-devel; +Cc: qemu-trivial On 09/04/2019 17.56, Aruna Jayasena wrote: > Removed unwanted includes from cpu-common.h > This task was under https://wiki.qemu.org/Contribute/BiteSizedTasks > > Signed-off-by: Aruna Jayasena <aruna.15@cse.mrt.ac.lk> > > --- > include/exec/cpu-common.h | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h > index cef8b88a2a..a3594f3f50 100644 > --- a/include/exec/cpu-common.h > +++ b/include/exec/cpu-common.h > @@ -7,8 +7,6 @@ > #include "exec/hwaddr.h" > #endif > > -#include "qemu/bswap.h" > -#include "qemu/queue.h" > #include "qemu/fprintf-fn.h" > > /** > Reviewed-by: Thomas Huth <thuth@redhat.com> ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH 0/4] Header cleanups 2019-04-09 17:06 ` [Qemu-devel] " Thomas Huth 2019-04-09 17:06 ` Thomas Huth @ 2019-04-09 17:07 ` Aruna Jayasena 2019-04-09 17:07 ` Aruna Jayasena 1 sibling, 1 reply; 22+ messages in thread From: Aruna Jayasena @ 2019-04-09 17:07 UTC (permalink / raw) To: Thomas Huth; +Cc: qemu-devel, qemu-trivial Thanks! On Tue, Apr 9, 2019 at 10:36 PM, Thomas Huth <thuth@redhat.com> wrote: > On 09/04/2019 17.56, Aruna Jayasena wrote: > > Removed unwanted includes from cpu-common.h > > This task was under https://wiki.qemu.org/Contribute/BiteSizedTasks > > > > Signed-off-by: Aruna Jayasena <aruna.15@cse.mrt.ac.lk> > > > > --- > > include/exec/cpu-common.h | 2 -- > > 1 file changed, 2 deletions(-) > > > > diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h > > index cef8b88a2a..a3594f3f50 100644 > > --- a/include/exec/cpu-common.h > > +++ b/include/exec/cpu-common.h > > @@ -7,8 +7,6 @@ > > #include "exec/hwaddr.h" > > #endif > > > > -#include "qemu/bswap.h" > > -#include "qemu/queue.h" > > #include "qemu/fprintf-fn.h" > > > > /** > > > > Reviewed-by: Thomas Huth <thuth@redhat.com> > -- *Aruna* Jayasena Embedded Systems and Computer Science Engineering Undergraduate University of Moratuwa *✆ **+94719872152 * ✉ <aruna.15@cse.mrt.ac.lk> ⌨ <http://archfx.github.io> in <https://www.linkedin.com/in/arunajayasena/> ^ permalink raw reply [flat|nested] 22+ messages in thread
* Re: [Qemu-devel] [PATCH 0/4] Header cleanups 2019-04-09 17:07 ` Aruna Jayasena @ 2019-04-09 17:07 ` Aruna Jayasena 0 siblings, 0 replies; 22+ messages in thread From: Aruna Jayasena @ 2019-04-09 17:07 UTC (permalink / raw) To: Thomas Huth; +Cc: qemu-trivial, qemu-devel Thanks! On Tue, Apr 9, 2019 at 10:36 PM, Thomas Huth <thuth@redhat.com> wrote: > On 09/04/2019 17.56, Aruna Jayasena wrote: > > Removed unwanted includes from cpu-common.h > > This task was under https://wiki.qemu.org/Contribute/BiteSizedTasks > > > > Signed-off-by: Aruna Jayasena <aruna.15@cse.mrt.ac.lk> > > > > --- > > include/exec/cpu-common.h | 2 -- > > 1 file changed, 2 deletions(-) > > > > diff --git a/include/exec/cpu-common.h b/include/exec/cpu-common.h > > index cef8b88a2a..a3594f3f50 100644 > > --- a/include/exec/cpu-common.h > > +++ b/include/exec/cpu-common.h > > @@ -7,8 +7,6 @@ > > #include "exec/hwaddr.h" > > #endif > > > > -#include "qemu/bswap.h" > > -#include "qemu/queue.h" > > #include "qemu/fprintf-fn.h" > > > > /** > > > > Reviewed-by: Thomas Huth <thuth@redhat.com> > -- *Aruna* Jayasena Embedded Systems and Computer Science Engineering Undergraduate University of Moratuwa *✆ **+94719872152 * ✉ <aruna.15@cse.mrt.ac.lk> ⌨ <http://archfx.github.io> in <https://www.linkedin.com/in/arunajayasena/> ^ permalink raw reply [flat|nested] 22+ messages in thread
end of thread, other threads:[~2019-04-12 3:32 UTC | newest] Thread overview: 22+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-04-09 15:56 [Qemu-devel] [PATCH 0/4] Header cleanups Aruna Jayasena 2019-04-09 15:56 ` Aruna Jayasena 2019-04-09 16:40 ` Peter Maydell 2019-04-09 16:40 ` Peter Maydell 2019-04-09 16:42 ` Aruna Jayasena 2019-04-09 16:42 ` Aruna Jayasena 2019-04-09 16:42 ` Aruna Jayasena 2019-04-09 16:42 ` Aruna Jayasena 2019-04-09 16:50 ` Peter Maydell 2019-04-09 16:50 ` Peter Maydell 2019-04-09 16:51 ` Aruna Jayasena 2019-04-09 16:51 ` Aruna Jayasena 2019-04-10 5:17 ` Markus Armbruster 2019-04-10 5:17 ` Markus Armbruster 2019-04-11 20:15 ` [Qemu-devel] [Qemu-trivial] " Laurent Vivier 2019-04-11 20:15 ` Laurent Vivier 2019-04-12 3:30 ` Aruna Jayasena 2019-04-12 3:30 ` Aruna Jayasena 2019-04-09 17:06 ` [Qemu-devel] " Thomas Huth 2019-04-09 17:06 ` Thomas Huth 2019-04-09 17:07 ` Aruna Jayasena 2019-04-09 17:07 ` Aruna Jayasena
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).