@@ -7,6 +7,7 @@ use crate::helpers::AlignedBuffer;
7
7
use crate :: proto:: unsafe_protocol;
8
8
use crate :: StatusExt ;
9
9
use core:: alloc:: LayoutError ;
10
+ use core:: marker:: PhantomData ;
10
11
use core:: ptr;
11
12
use uefi_raw:: protocol:: scsi:: {
12
13
ExtScsiPassThruMode , ExtScsiPassThruProtocol , SCSI_TARGET_MAX_BYTES ,
@@ -121,8 +122,9 @@ impl ExtScsiPassThru {
121
122
/// You have to probe for availability before doing anything meaningful with it.
122
123
#[ derive( Clone , Debug ) ]
123
124
pub struct ScsiDevice < ' a > {
124
- proto : & ' a ExtScsiPassThruProtocol ,
125
+ proto : * const ExtScsiPassThruProtocol ,
125
126
target_lun : ScsiTargetLun ,
127
+ _phantom : PhantomData < & ' a ( ) >
126
128
}
127
129
impl ScsiDevice < ' _ > {
128
130
/// Returns the SCSI target address of the potential device.
@@ -155,9 +157,9 @@ impl ScsiDevice<'_> {
155
157
/// specified by `Target` and `Lun`.
156
158
/// - [`Status::TIMEOUT`] A timeout occurred while attempting to reset the SCSI device specified
157
159
/// by `Target` and `Lun`.
158
- pub fn reset ( & self ) -> crate :: Result < ( ) > {
160
+ pub fn reset ( & mut self ) -> crate :: Result < ( ) > {
159
161
unsafe {
160
- ( self . proto . reset_target_lun ) ( self . proto , self . target_lun . 0 . as_ptr ( ) , self . lun ( ) )
162
+ ( ( * self . proto ) . reset_target_lun ) ( self . proto . cast_mut ( ) , self . target_lun . 0 . as_ptr ( ) , self . lun ( ) )
161
163
. to_result ( )
162
164
}
163
165
}
@@ -196,12 +198,12 @@ impl ScsiDevice<'_> {
196
198
/// - [`Status::TIMEOUT`] A timeout occurred while executing the SCSI Request Packet. Additional status
197
199
/// information is available in `HostAdapterStatus`, `TargetStatus`, `SenseDataLength`, and `SenseData`.
198
200
pub fn execute_command < ' req > (
199
- & self ,
201
+ & mut self ,
200
202
mut scsi_req : ScsiRequest < ' req > ,
201
203
) -> crate :: Result < ScsiResponse < ' req > > {
202
204
unsafe {
203
- ( self . proto . pass_thru ) (
204
- self . proto ,
205
+ ( ( * self . proto ) . pass_thru ) (
206
+ self . proto . cast_mut ( ) ,
205
207
self . target_lun . 0 . as_ptr ( ) ,
206
208
self . target_lun . 1 ,
207
209
& mut scsi_req. packet ,
@@ -236,6 +238,7 @@ impl<'a> Iterator for ScsiTargetLunIterator<'a> {
236
238
let scsi_device = ScsiDevice {
237
239
proto : self . proto ,
238
240
target_lun : self . prev . clone ( ) ,
241
+ _phantom : Default :: default ( )
239
242
} ;
240
243
match result {
241
244
Status :: SUCCESS => Some ( scsi_device) ,
0 commit comments