Re: [RFC PATCH 03/11] rust: block: introduce `kernel::block::mq` module

From: Sergio González Collado
Date: Thu May 11 2023 - 02:53:00 EST


+ /// Call to tell the block layer the capcacity of the device
+ pub fn set_capacity(&self, sectors: u64) {
+ unsafe { bindings::set_capacity(self.gendisk, sectors) };
+ }

Nit in the comment: capcacity -> capacity

Cheers,
Sergio