* [PULL 0/1] Imp 202210 patches
@ 2022-10-28 17:45 Warner Losh
2022-10-28 17:45 ` [PULL 1/1] bsd-user: Catch up with sys/param.h requirement for machine/pmap.h Warner Losh
` (2 more replies)
0 siblings, 3 replies; 7+ messages in thread
From: Warner Losh @ 2022-10-28 17:45 UTC (permalink / raw)
To: qemu-devel; +Cc: Kyle Evans, Warner Losh, Richard Henderson, John Baldwin
The following changes since commit 344744e148e6e865f5a57e745b02a87e5ea534ad:
Merge tag 'dump-pull-request' of https://gitlab.com/marcandre.lureau/qemu into staging (2022-10-26 10:53:49 -0400)
are available in the Git repository at:
ssh://git@github.com/qemu-bsd-user/qemu-bsd-user.git tags/imp-202210-pull-request
for you to fetch changes up to 41bf9322a0f8378b1194324cf7c6048253673046:
bsd-user: Catch up with sys/param.h requirement for machine/pmap.h (2022-10-26 14:09:17 -0600)
----------------------------------------------------------------
bsd-user: 7.2 misc fixes
Light quarter: only one fix due to header file shuffling in FreeBSD
----------------------------------------------------------------
Muhammad Moinur Rahman (1):
bsd-user: Catch up with sys/param.h requirement for machine/pmap.h
bsd-user/host/i386/host-signal.h | 1 +
bsd-user/host/x86_64/host-signal.h | 1 +
2 files changed, 2 insertions(+)
--
2.33.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PULL 1/1] bsd-user: Catch up with sys/param.h requirement for machine/pmap.h
2022-10-28 17:45 [PULL 0/1] Imp 202210 patches Warner Losh
@ 2022-10-28 17:45 ` Warner Losh
2022-10-31 10:33 ` [PULL 0/1] Imp 202210 patches Stefan Hajnoczi
2022-10-31 18:38 ` Stefan Hajnoczi
2 siblings, 0 replies; 7+ messages in thread
From: Warner Losh @ 2022-10-28 17:45 UTC (permalink / raw)
To: qemu-devel
Cc: Kyle Evans, Warner Losh, Richard Henderson, John Baldwin,
Muhammad Moinur Rahman
From: Muhammad Moinur Rahman <bofh@FreeBSD.org>
Some versions of FreeBSD now require sys/param.h for machine/pmap.h on
x86. Include them here to meet that requirement. It does no harm on
older versions, so there's no need to #ifdef it.
Signed-off-by: Muhammad Moinur Rahman <bofh@FreeBSD.org>
Reviewed-by: John Baldwin <jhb@FreeBSD.org>
Signed-off-by: Warner Losh <imp@bsdimp.com>
---
bsd-user/host/i386/host-signal.h | 1 +
bsd-user/host/x86_64/host-signal.h | 1 +
2 files changed, 2 insertions(+)
diff --git a/bsd-user/host/i386/host-signal.h b/bsd-user/host/i386/host-signal.h
index 169e61b154c..ffdfaba534a 100644
--- a/bsd-user/host/i386/host-signal.h
+++ b/bsd-user/host/i386/host-signal.h
@@ -9,6 +9,7 @@
#ifndef I386_HOST_SIGNAL_H
#define I386_HOST_SIGNAL_H
+#include <sys/param.h>
#include <sys/ucontext.h>
#include <machine/trap.h>
#include <vm/pmap.h>
diff --git a/bsd-user/host/x86_64/host-signal.h b/bsd-user/host/x86_64/host-signal.h
index 47ca19f8814..32ac4e41803 100644
--- a/bsd-user/host/x86_64/host-signal.h
+++ b/bsd-user/host/x86_64/host-signal.h
@@ -9,6 +9,7 @@
#ifndef X86_64_HOST_SIGNAL_H
#define X86_64_HOST_SIGNAL_H
+#include <sys/param.h>
#include <sys/ucontext.h>
#include <machine/trap.h>
#include <vm/pmap.h>
--
2.33.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PULL 0/1] Imp 202210 patches
2022-10-28 17:45 [PULL 0/1] Imp 202210 patches Warner Losh
2022-10-28 17:45 ` [PULL 1/1] bsd-user: Catch up with sys/param.h requirement for machine/pmap.h Warner Losh
@ 2022-10-31 10:33 ` Stefan Hajnoczi
2022-10-31 13:19 ` Warner Losh
2022-10-31 18:38 ` Stefan Hajnoczi
2 siblings, 1 reply; 7+ messages in thread
From: Stefan Hajnoczi @ 2022-10-31 10:33 UTC (permalink / raw)
To: Warner Losh; +Cc: qemu-devel, Kyle Evans, Richard Henderson, John Baldwin
On Fri, 28 Oct 2022 at 13:46, Warner Losh <imp@bsdimp.com> wrote:
>
> The following changes since commit 344744e148e6e865f5a57e745b02a87e5ea534ad:
>
> Merge tag 'dump-pull-request' of https://gitlab.com/marcandre.lureau/qemu into staging (2022-10-26 10:53:49 -0400)
>
> are available in the Git repository at:
>
> ssh://git@github.com/qemu-bsd-user/qemu-bsd-user.git tags/imp-202210-pull-request
Hi Warner,
Please use https://github.com/qemu-bsd-user/qemu-bsd-user.git instead
of an ssh URL. That way anonymous fetching works for people without
GitHub accounts. Thanks!
Stefan
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PULL 0/1] Imp 202210 patches
2022-10-31 10:33 ` [PULL 0/1] Imp 202210 patches Stefan Hajnoczi
@ 2022-10-31 13:19 ` Warner Losh
2022-10-31 14:17 ` Stefan Hajnoczi
0 siblings, 1 reply; 7+ messages in thread
From: Warner Losh @ 2022-10-31 13:19 UTC (permalink / raw)
To: Stefan Hajnoczi
Cc: QEMU Developers, Kyle Evans, Richard Henderson, John Baldwin
[-- Attachment #1: Type: text/plain, Size: 823 bytes --]
On Mon, Oct 31, 2022, 4:34 AM Stefan Hajnoczi <stefanha@gmail.com> wrote:
> On Fri, 28 Oct 2022 at 13:46, Warner Losh <imp@bsdimp.com> wrote:
> >
> > The following changes since commit
> 344744e148e6e865f5a57e745b02a87e5ea534ad:
> >
> > Merge tag 'dump-pull-request' of
> https://gitlab.com/marcandre.lureau/qemu into staging (2022-10-26
> 10:53:49 -0400)
> >
> > are available in the Git repository at:
> >
> > ssh://git@github.com/qemu-bsd-user/qemu-bsd-user.git
> tags/imp-202210-pull-request
>
> Hi Warner,
> Please use https://github.com/qemu-bsd-user/qemu-bsd-user.git instead
> of an ssh URL. That way anonymous fetching works for people without
> GitHub accounts. Thanks!
>
Will do in the future. It's trivial to convert. Do I need to resubmit this
pull request for something so trivial?
Warner
> Stefan
>
[-- Attachment #2: Type: text/html, Size: 1855 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PULL 0/1] Imp 202210 patches
2022-10-31 13:19 ` Warner Losh
@ 2022-10-31 14:17 ` Stefan Hajnoczi
2022-10-31 14:39 ` Warner Losh
0 siblings, 1 reply; 7+ messages in thread
From: Stefan Hajnoczi @ 2022-10-31 14:17 UTC (permalink / raw)
To: Warner Losh; +Cc: QEMU Developers, Kyle Evans, Richard Henderson, John Baldwin
On Mon, 31 Oct 2022 at 09:19, Warner Losh <imp@bsdimp.com> wrote:
>
>
>
> On Mon, Oct 31, 2022, 4:34 AM Stefan Hajnoczi <stefanha@gmail.com> wrote:
>>
>> On Fri, 28 Oct 2022 at 13:46, Warner Losh <imp@bsdimp.com> wrote:
>> >
>> > The following changes since commit 344744e148e6e865f5a57e745b02a87e5ea534ad:
>> >
>> > Merge tag 'dump-pull-request' of https://gitlab.com/marcandre.lureau/qemu into staging (2022-10-26 10:53:49 -0400)
>> >
>> > are available in the Git repository at:
>> >
>> > ssh://git@github.com/qemu-bsd-user/qemu-bsd-user.git tags/imp-202210-pull-request
>>
>> Hi Warner,
>> Please use https://github.com/qemu-bsd-user/qemu-bsd-user.git instead
>> of an ssh URL. That way anonymous fetching works for people without
>> GitHub accounts. Thanks!
>
>
>
> Will do in the future. It's trivial to convert. Do I need to resubmit this pull request for something so trivial?
No, that's not necessary. I have already merged it into the staging
branch. Thanks!
Stefan
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PULL 0/1] Imp 202210 patches
2022-10-31 14:17 ` Stefan Hajnoczi
@ 2022-10-31 14:39 ` Warner Losh
0 siblings, 0 replies; 7+ messages in thread
From: Warner Losh @ 2022-10-31 14:39 UTC (permalink / raw)
To: Stefan Hajnoczi
Cc: QEMU Developers, Kyle Evans, Richard Henderson, John Baldwin
[-- Attachment #1: Type: text/plain, Size: 1142 bytes --]
On Mon, Oct 31, 2022 at 8:17 AM Stefan Hajnoczi <stefanha@gmail.com> wrote:
> On Mon, 31 Oct 2022 at 09:19, Warner Losh <imp@bsdimp.com> wrote:
> >
> >
> >
> > On Mon, Oct 31, 2022, 4:34 AM Stefan Hajnoczi <stefanha@gmail.com>
> wrote:
> >>
> >> On Fri, 28 Oct 2022 at 13:46, Warner Losh <imp@bsdimp.com> wrote:
> >> >
> >> > The following changes since commit
> 344744e148e6e865f5a57e745b02a87e5ea534ad:
> >> >
> >> > Merge tag 'dump-pull-request' of
> https://gitlab.com/marcandre.lureau/qemu into staging (2022-10-26
> 10:53:49 -0400)
> >> >
> >> > are available in the Git repository at:
> >> >
> >> > ssh://git@github.com/qemu-bsd-user/qemu-bsd-user.git
> tags/imp-202210-pull-request
> >>
> >> Hi Warner,
> >> Please use https://github.com/qemu-bsd-user/qemu-bsd-user.git instead
> >> of an ssh URL. That way anonymous fetching works for people without
> >> GitHub accounts. Thanks!
> >
> >
> >
> > Will do in the future. It's trivial to convert. Do I need to resubmit
> this pull request for something so trivial?
>
> No, that's not necessary. I have already merged it into the staging
> branch. Thanks!
>
Great! Thanks!
Warner
[-- Attachment #2: Type: text/html, Size: 2184 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PULL 0/1] Imp 202210 patches
2022-10-28 17:45 [PULL 0/1] Imp 202210 patches Warner Losh
2022-10-28 17:45 ` [PULL 1/1] bsd-user: Catch up with sys/param.h requirement for machine/pmap.h Warner Losh
2022-10-31 10:33 ` [PULL 0/1] Imp 202210 patches Stefan Hajnoczi
@ 2022-10-31 18:38 ` Stefan Hajnoczi
2 siblings, 0 replies; 7+ messages in thread
From: Stefan Hajnoczi @ 2022-10-31 18:38 UTC (permalink / raw)
To: Warner Losh
Cc: qemu-devel, Kyle Evans, Warner Losh, Richard Henderson,
John Baldwin
[-- Attachment #1: Type: text/plain, Size: 115 bytes --]
Applied, thanks.
Please update the changelog at https://wiki.qemu.org/ChangeLog/7.2 for any user-visible changes.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2022-10-31 18:55 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-10-28 17:45 [PULL 0/1] Imp 202210 patches Warner Losh
2022-10-28 17:45 ` [PULL 1/1] bsd-user: Catch up with sys/param.h requirement for machine/pmap.h Warner Losh
2022-10-31 10:33 ` [PULL 0/1] Imp 202210 patches Stefan Hajnoczi
2022-10-31 13:19 ` Warner Losh
2022-10-31 14:17 ` Stefan Hajnoczi
2022-10-31 14:39 ` Warner Losh
2022-10-31 18:38 ` Stefan Hajnoczi
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).