File tree 2 files changed +2
-0
lines changed
2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,7 @@ impl Iterator for QueryIter {
46
46
Some ( Ok ( Region {
47
47
base : entry. kve_start as * const _ ,
48
48
protection : Protection :: from_native ( entry. kve_protection as i32 ) ,
49
+ max_protection : Protection :: from_native ( entry. kve_max_protection as i32 ) ,
49
50
shared : ( entry. kve_flags & KVME_FLAG_COW as u32 ) == 0 ,
50
51
size : ( entry. kve_end - entry. kve_start ) as _ ,
51
52
..Default :: default ( )
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ impl Iterator for QueryIter {
58
58
let region = Region {
59
59
base : self . vmentry . kve_start as * const _ ,
60
60
protection : Protection :: from_native ( self . vmentry . kve_protection ) ,
61
+ max_protection : Protection :: from_native ( self . vmentry . max_kve_protection ) ,
61
62
shared : ( self . vmentry . kve_etype & KVE_ET_COPYONWRITE ) == 0 ,
62
63
size : ( self . vmentry . kve_end - self . vmentry . kve_start ) as _ ,
63
64
..Default :: default ( )
You can’t perform that action at this time.
0 commit comments