mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: kernel test robot <lkp@intel.com>
To: Asahi Lina <lina@asahilina.net>
Cc: oe-kbuild-all@lists.linux.dev, linux-kernel@vger.kernel.org,
	Danilo Krummrich <dakr@kernel.org>,
	Maxime Ripard <mripard@kernel.org>,
	Alyssa Rosenzweig <alyssa@rosenzweig.io>,
	Lyude Paul <lyude@redhat.com>
Subject: error[E0560]: struct `drm_driver` has no field named `load`
Date: Tue, 2 Dec 2025 13:52:48 +0800	[thread overview]
Message-ID: <202512021332.9K0lgZb0-lkp@intel.com> (raw)

tree:   https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head:   1b5dd29869b1e63f7e5c37d7552e2dcf22de3c26
commit: 1e4b8896c0f3cb305a32870e1d8624f1155072d5 rust: drm: add device abstraction
date:   7 months ago
config: arm-randconfig-r121-20251201 (https://download.01.org/0day-ci/archive/20251202/202512021332.9K0lgZb0-lkp@intel.com/config)
compiler: clang version 22.0.0git (https://github.com/llvm/llvm-project b3428bb966f1de8aa48375ffee0eba04ede133b7)
rustc: rustc 1.88.0 (6b00bc388 2025-06-23)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20251202/202512021332.9K0lgZb0-lkp@intel.com/reproduce)

If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202512021332.9K0lgZb0-lkp@intel.com/

All errors (new ones prefixed by >>):

>> error[E0560]: struct `drm_driver` has no field named `load`
   --> rust/kernel/drm/device.rs:65:9
   |
   65 |         load: None,
   |         ^^^^ `drm_driver` does not have this field
   |
   = note: all struct fields are already assigned
--
>> error[E0560]: struct `drm_driver` has no field named `open`
   --> rust/kernel/drm/device.rs:66:9
   |
   66 |         open: None, // TODO: File abstraction
   |         ^^^^ `drm_driver` does not have this field
   |
   = note: all struct fields are already assigned
--
>> error[E0560]: struct `drm_driver` has no field named `postclose`
   --> rust/kernel/drm/device.rs:67:9
   |
   67 |         postclose: None, // TODO: File abstraction
   |         ^^^^^^^^^ `drm_driver` does not have this field
   |
   = note: all struct fields are already assigned
--
>> error[E0560]: struct `drm_driver` has no field named `unload`
   --> rust/kernel/drm/device.rs:68:9
   |
   68 |         unload: None,
   |         ^^^^^^ `drm_driver` does not have this field
   |
   = note: all struct fields are already assigned
--
>> error[E0560]: struct `drm_driver` has no field named `release`
   --> rust/kernel/drm/device.rs:69:9
   |
   69 |         release: None,
   |         ^^^^^^^ `drm_driver` does not have this field
   |
   = note: all struct fields are already assigned
--
>> error[E0560]: struct `drm_driver` has no field named `master_set`
   --> rust/kernel/drm/device.rs:70:9
   |
   70 |         master_set: None,
   |         ^^^^^^^^^^ `drm_driver` does not have this field
   |
   = note: all struct fields are already assigned
--
>> error[E0560]: struct `drm_driver` has no field named `master_drop`
   --> rust/kernel/drm/device.rs:71:9
   |
   71 |         master_drop: None,
   |         ^^^^^^^^^^^ `drm_driver` does not have this field
   |
   = note: all struct fields are already assigned
--
>> error[E0560]: struct `drm_driver` has no field named `debugfs_init`
   --> rust/kernel/drm/device.rs:72:9
   |
   72 |         debugfs_init: None,
   |         ^^^^^^^^^^^^ `drm_driver` does not have this field
   |
   = note: all struct fields are already assigned
--
>> error[E0560]: struct `drm_driver` has no field named `gem_create_object`
   --> rust/kernel/drm/device.rs:73:9
   |
   73 |         gem_create_object: T::Object::ALLOC_OPS.gem_create_object,
   |         ^^^^^^^^^^^^^^^^^ `drm_driver` does not have this field
   |
   = note: all struct fields are already assigned
--
>> error[E0560]: struct `drm_driver` has no field named `prime_handle_to_fd`
   --> rust/kernel/drm/device.rs:74:9
   |
   74 |         prime_handle_to_fd: T::Object::ALLOC_OPS.prime_handle_to_fd,
   |         ^^^^^^^^^^^^^^^^^^ `drm_driver` does not have this field
   |
   = note: all struct fields are already assigned
--
>> error[E0560]: struct `drm_driver` has no field named `prime_fd_to_handle`
   --> rust/kernel/drm/device.rs:75:9
   |
   75 |         prime_fd_to_handle: T::Object::ALLOC_OPS.prime_fd_to_handle,
   |         ^^^^^^^^^^^^^^^^^^ `drm_driver` does not have this field
   |
   = note: all struct fields are already assigned
..

-- 
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki

                 reply	other threads:[~2025-12-02  5:53 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=202512021332.9K0lgZb0-lkp@intel.com \
    --to=lkp@intel.com \
    --cc=alyssa@rosenzweig.io \
    --cc=dakr@kernel.org \
    --cc=lina@asahilina.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lyude@redhat.com \
    --cc=mripard@kernel.org \
    --cc=oe-kbuild-all@lists.linux.dev \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®