linux-next: manual merge of the rust tree with the drm-nova tree

Mark Brown posted 1 patch 1 week, 1 day ago
linux-next: manual merge of the rust tree with the drm-nova tree
Posted by Mark Brown 1 week, 1 day ago
Hi all,

Today's linux-next merge of the rust tree got a conflict in:

  drivers/gpu/nova-core/vbios.rs

between commit:

  93296e9d9528f ("gpu: nova-core: vbios: store reference to Device where relevant")

from the drm-nova tree and commit:

  f3f6b3664302e ("gpu: nova-core: use Alignment for alignment-related operations")

from the rust 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.

diff --cc drivers/gpu/nova-core/vbios.rs
index e6a0607142056,091642d6a5a15..0000000000000
--- a/drivers/gpu/nova-core/vbios.rs
+++ b/drivers/gpu/nova-core/vbios.rs
@@@ -8,8 -8,9 +8,9 @@@ use crate::firmware::FalconUCodeDescV3
  use core::convert::TryFrom;
  use kernel::device;
  use kernel::error::Result;
 -use kernel::pci;
  use kernel::prelude::*;
+ use kernel::ptr::{Alignable, Alignment};
 +use kernel::types::ARef;
  
  /// The offset of the VBIOS ROM in the BAR0 space.
  const ROM_OFFSET: usize = 0x300000;
Re: linux-next: manual merge of the rust tree with the drm-nova tree
Posted by Miguel Ojeda 1 week, 1 day ago
On Tue, Sep 23, 2025 at 6:42 PM Mark Brown <broonie@kernel.org> wrote:
>
> I fixed it up (see below) and can carry the fix as necessary. This

Looks good from inspection -- I will confirm in my CI runs.

Thanks!

Cheers,
Miguel