File tree 3 files changed +20
-14
lines changed
3 files changed +20
-14
lines changed Original file line number Diff line number Diff line change 4
4
//!
5
5
//! C header: [`include/uapi/asm-generic/errno-base.h`](../../../include/uapi/asm-generic/errno-base.h)
6
6
7
- use core:: num:: TryFromIntError ;
8
- use core:: str:: Utf8Error ;
9
-
10
- use alloc:: alloc:: AllocError ;
11
-
12
- use crate :: bindings;
13
- use crate :: c_types;
7
+ use crate :: { bindings, c_types} ;
8
+ use alloc:: { alloc:: AllocError , collections:: TryReserveError } ;
9
+ use core:: { num:: TryFromIntError , str:: Utf8Error } ;
14
10
15
11
/// Generic integer kernel error.
16
12
///
@@ -72,6 +68,12 @@ impl From<Utf8Error> for Error {
72
68
}
73
69
}
74
70
71
+ impl From < TryReserveError > for Error {
72
+ fn from ( _: TryReserveError ) -> Error {
73
+ Error :: ENOMEM
74
+ }
75
+ }
76
+
75
77
/// A [`Result`] with an [`Error`] error type.
76
78
///
77
79
/// To be used as the return type for functions that may fail.
Original file line number Diff line number Diff line change 12
12
//! do so first instead of bypassing this crate.
13
13
14
14
#![ no_std]
15
- #![ feature( allocator_api, alloc_error_handler, const_fn, const_mut_refs) ]
15
+ #![ feature(
16
+ allocator_api,
17
+ alloc_error_handler,
18
+ const_fn,
19
+ const_mut_refs,
20
+ try_reserve
21
+ ) ]
16
22
#![ deny( clippy:: complexity) ]
17
23
#![ deny( clippy:: correctness) ]
18
24
#![ deny( clippy:: perf) ]
Original file line number Diff line number Diff line change 4
4
//!
5
5
//! C header: [`include/linux/uaccess.h`](../../../../include/linux/uaccess.h)
6
6
7
- use alloc :: vec ;
7
+ use crate :: { c_types , error } ;
8
8
use alloc:: vec:: Vec ;
9
- use core:: u32;
10
-
11
- use crate :: c_types;
12
- use crate :: error;
13
9
14
10
extern "C" {
15
11
fn rust_helper_access_ok ( addr : * const c_types:: c_void , len : c_types:: c_ulong )
@@ -134,7 +130,9 @@ impl UserSlicePtrReader {
134
130
/// Returns `EFAULT` if the address does not currently point to
135
131
/// mapped, readable memory.
136
132
pub fn read_all ( & mut self ) -> error:: KernelResult < Vec < u8 > > {
137
- let mut data = vec ! [ 0 ; self . 1 ] ;
133
+ let mut data = Vec :: < u8 > :: new ( ) ;
134
+ data. try_reserve_exact ( self . 1 ) ?;
135
+ data. resize ( self . 1 , 0 ) ;
138
136
self . read ( & mut data) ?;
139
137
Ok ( data)
140
138
}
You can’t perform that action at this time.
0 commit comments