@@ -112,12 +112,6 @@ static inline u64 hv_do_hypercall(u64 control, void *input, void *output)
112
112
return hv_status ;
113
113
}
114
114
115
- /* Hypercall to the L0 hypervisor */
116
- static inline u64 hv_do_nested_hypercall (u64 control , void * input , void * output )
117
- {
118
- return hv_do_hypercall (control | HV_HYPERCALL_NESTED , input , output );
119
- }
120
-
121
115
/* Fast hypercall with 8 bytes of input and no output */
122
116
static inline u64 _hv_do_fast_hypercall8 (u64 control , u64 input1 )
123
117
{
@@ -165,13 +159,6 @@ static inline u64 hv_do_fast_hypercall8(u16 code, u64 input1)
165
159
return _hv_do_fast_hypercall8 (control , input1 );
166
160
}
167
161
168
- static inline u64 hv_do_fast_nested_hypercall8 (u16 code , u64 input1 )
169
- {
170
- u64 control = (u64 )code | HV_HYPERCALL_FAST_BIT | HV_HYPERCALL_NESTED ;
171
-
172
- return _hv_do_fast_hypercall8 (control , input1 );
173
- }
174
-
175
162
/* Fast hypercall with 16 bytes of input */
176
163
static inline u64 _hv_do_fast_hypercall16 (u64 control , u64 input1 , u64 input2 )
177
164
{
@@ -223,13 +210,6 @@ static inline u64 hv_do_fast_hypercall16(u16 code, u64 input1, u64 input2)
223
210
return _hv_do_fast_hypercall16 (control , input1 , input2 );
224
211
}
225
212
226
- static inline u64 hv_do_fast_nested_hypercall16 (u16 code , u64 input1 , u64 input2 )
227
- {
228
- u64 control = (u64 )code | HV_HYPERCALL_FAST_BIT | HV_HYPERCALL_NESTED ;
229
-
230
- return _hv_do_fast_hypercall16 (control , input1 , input2 );
231
- }
232
-
233
213
extern struct hv_vp_assist_page * * hv_vp_assist_page ;
234
214
235
215
static inline struct hv_vp_assist_page * hv_get_vp_assist_page (unsigned int cpu )
0 commit comments