Skip to content

Use &raw rather than addr_of macros #655

Use &raw rather than addr_of macros

Use &raw rather than addr_of macros #655

GitHub Actions / clippy succeeded Dec 6, 2024 in 0s

clippy

5 warnings

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 5
Note 0
Help 0

Versions

  • rustc 1.83.0 (90b35a623 2024-11-26)
  • cargo 1.83.0 (5ffbef321 2024-10-29)
  • clippy 0.1.83 (90b35a6 2024-11-26)

Annotations

Check warning on line 125 in src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

manually reimplementing `div_ceil`

warning: manually reimplementing `div_ceil`
   --> src/lib.rs:125:5
    |
125 |     (size + PAGE_SIZE - 1) / PAGE_SIZE
    |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using `.div_ceil()`: `size.div_ceil(PAGE_SIZE)`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_div_ceil
    = note: `#[warn(clippy::manual_div_ceil)]` on by default

Check warning on line 489 in src/transport/pci/bus.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'a

warning: the following explicit lifetimes could be elided: 'a
   --> src/transport/pci/bus.rs:489:6
    |
489 | impl<'a, C: ConfigurationAccess> Iterator for CapabilityIterator<'a, C> {
    |      ^^                                                          ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
    |
489 - impl<'a, C: ConfigurationAccess> Iterator for CapabilityIterator<'a, C> {
489 + impl<C: ConfigurationAccess> Iterator for CapabilityIterator<'_, C> {
    |

Check warning on line 814 in src/queue.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

the following explicit lifetimes could be elided: 'a, 'b

warning: the following explicit lifetimes could be elided: 'a, 'b
   --> src/queue.rs:814:6
    |
814 | impl<'a, 'b> Iterator for InputOutputIter<'a, 'b> {
    |      ^^  ^^                               ^^  ^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
    = note: `#[warn(clippy::needless_lifetimes)]` on by default
help: elide the lifetimes
    |
814 - impl<'a, 'b> Iterator for InputOutputIter<'a, 'b> {
814 + impl Iterator for InputOutputIter<'_, '_> {
    |

Check warning on line 374 in src/device/sound.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

this function has too many arguments (8/7)

warning: this function has too many arguments (8/7)
   --> src/device/sound.rs:365:5
    |
365 | /     pub fn pcm_set_params(
366 | |         &mut self,
367 | |         stream_id: u32,
368 | |         buffer_bytes: u32,
...   |
373 | |         rate: PcmRate,
374 | |     ) -> Result {
    | |_______________^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments

Check warning on line 264 in src/device/gpu.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

this function has too many arguments (8/7)

warning: this function has too many arguments (8/7)
   --> src/device/gpu.rs:255:5
    |
255 | /     fn update_cursor(
256 | |         &mut self,
257 | |         resource_id: u32,
258 | |         scanout_id: u32,
...   |
263 | |         is_move: bool,
264 | |     ) -> Result {
    | |_______________^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments
    = note: `#[warn(clippy::too_many_arguments)]` on by default