From: Martin Rodriguez Reboredo <yakoyoku@gmail.com>
To: Miguel Ojeda <ojeda@kernel.org>,
Wedson Almeida Filho <wedsonaf@gmail.com>,
Alex Gaynor <alex.gaynor@gmail.com>
Cc: "Boqun Feng" <boqun.feng@gmail.com>,
"Gary Guo" <gary@garyguo.net>,
"Björn Roy Baron" <bjorn3_gh@protonmail.com>,
"Benno Lossin" <benno.lossin@proton.me>,
"Andreas Hindborg" <a.hindborg@samsung.com>,
"Alice Ryhl" <aliceryhl@google.com>,
rust-for-linux@vger.kernel.org, linux-kernel@vger.kernel.org,
patches@lists.linux.dev
Subject: Re: [PATCH 1/2] rust: arc: add explicit `drop()` around `Box::from_raw()`
Date: Wed, 23 Aug 2023 23:28:12 -0300 [thread overview]
Message-ID: <da4cb2c1-8f76-44d1-b997-7565efe57701@gmail.com> (raw)
In-Reply-To: <20230823160244.188033-2-ojeda@kernel.org>
On 8/23/23 13:02, Miguel Ojeda wrote:
> `Box::from_raw()` is `#[must_use]`, which means the result cannot
> go unused.
>
> In Rust 1.71.0, this was not detected because the block expression
> swallows the diagnostic [1]:
>
> unsafe { Box::from_raw(self.ptr.as_ptr()) };
>
> It would have been detected, however, if the line had been instead:
>
> unsafe { Box::from_raw(self.ptr.as_ptr()); }
>
> i.e. the semicolon being inside the `unsafe` block, rather than
> outside.
>
> In Rust 1.72.0, the compiler started warning about this [2], so
> without this patch we will get:
>
> error: unused return value of `alloc::boxed::Box::<T>::from_raw` that must be used
> --> rust/kernel/sync/arc.rs:302:22
> |
> 302 | unsafe { Box::from_raw(self.ptr.as_ptr()) };
> | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> |
> = note: call `drop(Box::from_raw(ptr))` if you intend to drop the `Box`
> = note: `-D unused-must-use` implied by `-D warnings`
> help: use `let _ = ...` to ignore the resulting value
> |
> 302 | unsafe { let _ = Box::from_raw(self.ptr.as_ptr()); };
> | +++++++ +
>
> Thus add an add an explicit `drop()` as the `#[must_use]`'s
> annotation suggests (instead of the more general help line).
>
> Link: https://github.com/rust-lang/rust/issues/104253 [1]
> Link: https://github.com/rust-lang/rust/pull/112529 [2]
> Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
> ---
> [...]
Reviewed-by: Martin Rodriguez Reboredo <yakoyoku@gmail.com>
next prev parent reply other threads:[~2023-08-24 2:29 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-23 16:02 [PATCH 0/2] Rust 1.72.0 upgrade Miguel Ojeda
2023-08-23 16:02 ` [PATCH 1/2] rust: arc: add explicit `drop()` around `Box::from_raw()` Miguel Ojeda
2023-08-23 16:18 ` Björn Roy Baron
2023-08-23 17:35 ` Gary Guo
2023-08-24 2:28 ` Martin Rodriguez Reboredo [this message]
2023-08-24 6:41 ` Andreas Hindborg
2023-08-28 13:15 ` Alice Ryhl
2023-08-23 16:02 ` [PATCH 2/2] rust: upgrade to Rust 1.72.0 Miguel Ojeda
2023-08-23 16:24 ` Björn Roy Baron
2023-08-23 17:41 ` Gary Guo
2023-08-24 2:28 ` Martin Rodriguez Reboredo
2023-08-28 13:17 ` Alice Ryhl
2023-10-05 12:31 ` [PATCH 0/2] Rust 1.72.0 upgrade Miguel Ojeda
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=da4cb2c1-8f76-44d1-b997-7565efe57701@gmail.com \
--to=yakoyoku@gmail.com \
--cc=a.hindborg@samsung.com \
--cc=alex.gaynor@gmail.com \
--cc=aliceryhl@google.com \
--cc=benno.lossin@proton.me \
--cc=bjorn3_gh@protonmail.com \
--cc=boqun.feng@gmail.com \
--cc=gary@garyguo.net \
--cc=linux-kernel@vger.kernel.org \
--cc=ojeda@kernel.org \
--cc=patches@lists.linux.dev \
--cc=rust-for-linux@vger.kernel.org \
--cc=wedsonaf@gmail.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.