* linux-next: manual merge of the vhost tree with the mm tree
@ 2024-04-23 4:59 Stephen Rothwell
2024-04-23 8:21 ` David Hildenbrand
0 siblings, 1 reply; 6+ messages in thread
From: Stephen Rothwell @ 2024-04-23 4:59 UTC (permalink / raw)
To: Michael S. Tsirkin, Andrew Morton
Cc: David Hildenbrand, Kent Overstreet, Linux Kernel Mailing List,
Linux Next Mailing List, Suren Baghdasaryan
[-- Attachment #1: Type: text/plain, Size: 1099 bytes --]
Hi all,
Today's linux-next merge of the vhost tree got a conflict in:
drivers/virtio/virtio_mem.c
between commit:
c22e503ced5b ("fix missing vmalloc.h includes")
from the mm-unstable branch of the mm tree and commit:
4ba509048975 ("virtio-mem: support suspend+resume")
from the vhost tree.
I fixed it up (see below) and can carry the fix as necessary. This
is now fixed as far as linux-next is concerned, but any non trivial
conflicts should be mentioned to your upstream maintainer when your tree
is submitted for merging. You may also want to consider cooperating
with the maintainer of the conflicting tree to minimise any particularly
complex conflicts.
--
Cheers,
Stephen Rothwell
diff --cc drivers/virtio/virtio_mem.c
index e8355f55a8f7,6d4dfbc53a66..000000000000
--- a/drivers/virtio/virtio_mem.c
+++ b/drivers/virtio/virtio_mem.c
@@@ -21,7 -21,7 +21,8 @@@
#include <linux/bitmap.h>
#include <linux/lockdep.h>
#include <linux/log2.h>
+#include <linux/vmalloc.h>
+ #include <linux/suspend.h>
#include <acpi/acpi_numa.h>
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: linux-next: manual merge of the vhost tree with the mm tree
2024-04-23 4:59 linux-next: manual merge of the vhost tree with the mm tree Stephen Rothwell
@ 2024-04-23 8:21 ` David Hildenbrand
2024-04-23 9:32 ` Michael S. Tsirkin
2024-04-23 12:03 ` Stephen Rothwell
0 siblings, 2 replies; 6+ messages in thread
From: David Hildenbrand @ 2024-04-23 8:21 UTC (permalink / raw)
To: Stephen Rothwell, Michael S. Tsirkin, Andrew Morton
Cc: Kent Overstreet, Linux Kernel Mailing List,
Linux Next Mailing List, Suren Baghdasaryan
On 23.04.24 06:59, Stephen Rothwell wrote:
> Hi all,
>
> Today's linux-next merge of the vhost tree got a conflict in:
>
> drivers/virtio/virtio_mem.c
>
> between commit:
>
> c22e503ced5b ("fix missing vmalloc.h includes")
>
> from the mm-unstable branch of the mm tree and commit:
>
> 4ba509048975 ("virtio-mem: support suspend+resume")
>
> from the vhost tree.
>
> I fixed it up (see below) and can carry the fix as necessary. This
> is now fixed as far as linux-next is concerned, but any non trivial
> conflicts should be mentioned to your upstream maintainer when your tree
> is submitted for merging. You may also want to consider cooperating
> with the maintainer of the conflicting tree to minimise any particularly
> complex conflicts.
>
Easy header conflict. @MST, @Andrew, do we simply want to take that
virtio-mem patch via the MM tree to get rid of the conflict completely?
--
Cheers,
David / dhildenb
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: linux-next: manual merge of the vhost tree with the mm tree
2024-04-23 8:21 ` David Hildenbrand
@ 2024-04-23 9:32 ` Michael S. Tsirkin
2024-04-23 10:05 ` David Hildenbrand
2024-04-23 12:03 ` Stephen Rothwell
1 sibling, 1 reply; 6+ messages in thread
From: Michael S. Tsirkin @ 2024-04-23 9:32 UTC (permalink / raw)
To: David Hildenbrand
Cc: Stephen Rothwell, Andrew Morton, Kent Overstreet,
Linux Kernel Mailing List, Linux Next Mailing List,
Suren Baghdasaryan
On Tue, Apr 23, 2024 at 10:21:55AM +0200, David Hildenbrand wrote:
> On 23.04.24 06:59, Stephen Rothwell wrote:
> > Hi all,
> >
> > Today's linux-next merge of the vhost tree got a conflict in:
> >
> > drivers/virtio/virtio_mem.c
> >
> > between commit:
> >
> > c22e503ced5b ("fix missing vmalloc.h includes")
> >
> > from the mm-unstable branch of the mm tree and commit:
> >
> > 4ba509048975 ("virtio-mem: support suspend+resume")
> >
> > from the vhost tree.
> >
> > I fixed it up (see below) and can carry the fix as necessary. This
> > is now fixed as far as linux-next is concerned, but any non trivial
> > conflicts should be mentioned to your upstream maintainer when your tree
> > is submitted for merging. You may also want to consider cooperating
> > with the maintainer of the conflicting tree to minimise any particularly
> > complex conflicts.
> >
>
> Easy header conflict. @MST, @Andrew, do we simply want to take that
> virtio-mem patch via the MM tree to get rid of the conflict completely?
ok by me:
Acked-by: Michael S. Tsirkin <mst@redhat.com>
Andrew if you pick this let me know pls and I will drop it.
> --
> Cheers,
>
> David / dhildenb
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: linux-next: manual merge of the vhost tree with the mm tree
2024-04-23 9:32 ` Michael S. Tsirkin
@ 2024-04-23 10:05 ` David Hildenbrand
0 siblings, 0 replies; 6+ messages in thread
From: David Hildenbrand @ 2024-04-23 10:05 UTC (permalink / raw)
To: Michael S. Tsirkin
Cc: Stephen Rothwell, Andrew Morton, Kent Overstreet,
Linux Kernel Mailing List, Linux Next Mailing List,
Suren Baghdasaryan
On 23.04.24 11:32, Michael S. Tsirkin wrote:
> On Tue, Apr 23, 2024 at 10:21:55AM +0200, David Hildenbrand wrote:
>> On 23.04.24 06:59, Stephen Rothwell wrote:
>>> Hi all,
>>>
>>> Today's linux-next merge of the vhost tree got a conflict in:
>>>
>>> drivers/virtio/virtio_mem.c
>>>
>>> between commit:
>>>
>>> c22e503ced5b ("fix missing vmalloc.h includes")
>>>
>>> from the mm-unstable branch of the mm tree and commit:
>>>
>>> 4ba509048975 ("virtio-mem: support suspend+resume")
>>>
>>> from the vhost tree.
>>>
>>> I fixed it up (see below) and can carry the fix as necessary. This
>>> is now fixed as far as linux-next is concerned, but any non trivial
>>> conflicts should be mentioned to your upstream maintainer when your tree
>>> is submitted for merging. You may also want to consider cooperating
>>> with the maintainer of the conflicting tree to minimise any particularly
>>> complex conflicts.
>>>
>>
>> Easy header conflict. @MST, @Andrew, do we simply want to take that
>> virtio-mem patch via the MM tree to get rid of the conflict completely?
>
> ok by me:
>
> Acked-by: Michael S. Tsirkin <mst@redhat.com>
>
> Andrew if you pick this let me know pls and I will drop it.
@Andrew, the relevant patch is
https://lore.kernel.org/linux-kernel/20240318120645.105664-1-david@redhat.com/
I could resend, putting you on CC. Whatever you prefer.
--
Cheers,
David / dhildenb
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: linux-next: manual merge of the vhost tree with the mm tree
2024-04-23 8:21 ` David Hildenbrand
2024-04-23 9:32 ` Michael S. Tsirkin
@ 2024-04-23 12:03 ` Stephen Rothwell
2024-04-23 17:42 ` Andrew Morton
1 sibling, 1 reply; 6+ messages in thread
From: Stephen Rothwell @ 2024-04-23 12:03 UTC (permalink / raw)
To: David Hildenbrand
Cc: Michael S. Tsirkin, Andrew Morton, Kent Overstreet,
Linux Kernel Mailing List, Linux Next Mailing List,
Suren Baghdasaryan
[-- Attachment #1: Type: text/plain, Size: 392 bytes --]
Hi all,
On Tue, 23 Apr 2024 10:21:55 +0200 David Hildenbrand <david@redhat.com> wrote:
>
> Easy header conflict. @MST, @Andrew, do we simply want to take that
> virtio-mem patch via the MM tree to get rid of the conflict
> completely?
And because it is so trivial a conflict, you should just mention it to
Linus when you send the merge requests.
--
Cheers,
Stephen Rothwell
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: linux-next: manual merge of the vhost tree with the mm tree
2024-04-23 12:03 ` Stephen Rothwell
@ 2024-04-23 17:42 ` Andrew Morton
0 siblings, 0 replies; 6+ messages in thread
From: Andrew Morton @ 2024-04-23 17:42 UTC (permalink / raw)
To: Stephen Rothwell
Cc: David Hildenbrand, Michael S. Tsirkin, Kent Overstreet,
Linux Kernel Mailing List, Linux Next Mailing List,
Suren Baghdasaryan
On Tue, 23 Apr 2024 22:03:17 +1000 Stephen Rothwell <sfr@canb.auug.org.au> wrote:
> Hi all,
>
> On Tue, 23 Apr 2024 10:21:55 +0200 David Hildenbrand <david@redhat.com> wrote:
> >
> > Easy header conflict. @MST, @Andrew, do we simply want to take that
> > virtio-mem patch via the MM tree to get rid of the conflict
> > completely?
>
> And because it is so trivial a conflict, you should just mention it to
> Linus when you send the merge requests.
Yes, let's leave things as they are. We have to give Linus *something*
to do ;)
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-04-23 17:42 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-23 4:59 linux-next: manual merge of the vhost tree with the mm tree Stephen Rothwell
2024-04-23 8:21 ` David Hildenbrand
2024-04-23 9:32 ` Michael S. Tsirkin
2024-04-23 10:05 ` David Hildenbrand
2024-04-23 12:03 ` Stephen Rothwell
2024-04-23 17:42 ` Andrew Morton
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox