> On 11 Jul 2025, at 08:43, Andreas Hindborg <a.hindborg@xxxxxxxxxx> wrote: > > Remove the trait bound `T:Operations` from `mq::Request`. The bound is not > required, so remove it to reduce complexity. > > Reviewed-by: Alice Ryhl <aliceryhl@xxxxxxxxxx> > Signed-off-by: Andreas Hindborg <a.hindborg@xxxxxxxxxx> > --- > rust/kernel/block/mq/request.rs | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/rust/kernel/block/mq/request.rs b/rust/kernel/block/mq/request.rs > index 4a5b7ec914ef..2d14a6261a31 100644 > --- a/rust/kernel/block/mq/request.rs > +++ b/rust/kernel/block/mq/request.rs > @@ -53,7 +53,7 @@ > /// [`struct request`]: srctree/include/linux/blk-mq.h > /// > #[repr(transparent)] > -pub struct Request<T: Operations>(Opaque<bindings::request>, PhantomData<T>); > +pub struct Request<T>(Opaque<bindings::request>, PhantomData<T>); > > impl<T: Operations> Request<T> { > /// Create an [`ARef<Request>`] from a [`struct request`] pointer. > > -- > 2.47.2 > > > Reviewed-by: Daniel Almeida <daniel.almeida@xxxxxxxxxxxxx>