rust: uaccess: name the correct function

Correctly refer to `reserve` rather than `try_reserve` in a comment. This
comment has been incorrect since inception in commit 1b580e7b9ba2 ("rust:
uaccess: add userspace pointers").

Fixes: 1b580e7b9ba2 ("rust: uaccess: add userspace pointers")
Signed-off-by: Tamir Duberstein <tamird@gmail.com>
Reviewed-by: Alice Ryhl <aliceryhl@google.com>
Reviewed-by: Benno Lossin <benno.lossin@proton.me>
Reviewed-by: Charalampos Mitrodimas <charmitro@posteo.net>
Link: https://lore.kernel.org/r/20250317-uaccess-typo-reserve-v1-1-bbfcb45121f3@gmail.com
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>

authored by Tamir Duberstein and committed by Miguel Ojeda 4e72a62e f6be7af4

+1 -2
+1 -2
rust/kernel/uaccess.rs
··· 285 285 let len = self.length; 286 286 buf.reserve(len, flags)?; 287 287 288 - // The call to `try_reserve` was successful, so the spare capacity is at least `len` bytes 289 - // long. 288 + // The call to `reserve` was successful, so the spare capacity is at least `len` bytes long. 290 289 self.read_raw(&mut buf.spare_capacity_mut()[..len])?; 291 290 292 291 // SAFETY: Since the call to `read_raw` was successful, so the next `len` bytes of the