Lines 283-294
Link Here
|
283 |
if (RTCpuSetCount(&OnlineSet) > 1) |
283 |
if (RTCpuSetCount(&OnlineSet) > 1) |
284 |
{ |
284 |
{ |
285 |
/* Fire the function on all other CPUs without waiting for completion. */ |
285 |
/* Fire the function on all other CPUs without waiting for completion. */ |
286 |
# if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27) |
286 |
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 3, 0) |
|
|
287 |
smp_call_function(rtmpLinuxAllWrapper, &Args, 0 /* wait */); |
288 |
#elif LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27) |
287 |
int rc = smp_call_function(rtmpLinuxAllWrapper, &Args, 0 /* wait */); |
289 |
int rc = smp_call_function(rtmpLinuxAllWrapper, &Args, 0 /* wait */); |
288 |
# else |
290 |
#else |
289 |
int rc = smp_call_function(rtmpLinuxAllWrapper, &Args, 0 /* retry */, 0 /* wait */); |
291 |
int rc = smp_call_function(rtmpLinuxAllWrapper, &Args, 0 /* retry */, 0 /* wait */); |
290 |
# endif |
292 |
# endif |
|
|
293 |
# if LINUX_VERSION_CODE < KERNEL_VERSION(5, 3, 0) |
291 |
Assert(!rc); NOREF(rc); |
294 |
Assert(!rc); NOREF(rc); |
|
|
295 |
#endif |
292 |
} |
296 |
} |
293 |
#endif |
297 |
#endif |
294 |
|
298 |
|
Lines 326-332
Link Here
|
326 |
{ |
330 |
{ |
327 |
#ifdef CONFIG_SMP |
331 |
#ifdef CONFIG_SMP |
328 |
IPRT_LINUX_SAVE_EFL_AC(); |
332 |
IPRT_LINUX_SAVE_EFL_AC(); |
|
|
333 |
#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 3, 0) |
329 |
int rc; |
334 |
int rc; |
|
|
335 |
#endif |
330 |
RTMPARGS Args; |
336 |
RTMPARGS Args; |
331 |
|
337 |
|
332 |
RTTHREADPREEMPTSTATE PreemptState = RTTHREADPREEMPTSTATE_INITIALIZER; |
338 |
RTTHREADPREEMPTSTATE PreemptState = RTTHREADPREEMPTSTATE_INITIALIZER; |
Lines 337-350
Link Here
|
337 |
Args.cHits = 0; |
343 |
Args.cHits = 0; |
338 |
|
344 |
|
339 |
RTThreadPreemptDisable(&PreemptState); |
345 |
RTThreadPreemptDisable(&PreemptState); |
340 |
# if LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27) |
346 |
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 3, 0) |
|
|
347 |
smp_call_function(rtmpLinuxWrapper, &Args, 1 /* wait */); |
348 |
#elif LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27) |
341 |
rc = smp_call_function(rtmpLinuxWrapper, &Args, 1 /* wait */); |
349 |
rc = smp_call_function(rtmpLinuxWrapper, &Args, 1 /* wait */); |
342 |
# else /* older kernels */ |
350 |
#else /* older kernels */ |
343 |
rc = smp_call_function(rtmpLinuxWrapper, &Args, 0 /* retry */, 1 /* wait */); |
351 |
rc = smp_call_function(rtmpLinuxWrapper, &Args, 0 /* retry */, 1 /* wait */); |
344 |
# endif /* older kernels */ |
352 |
#endif /* older kernels */ |
345 |
RTThreadPreemptRestore(&PreemptState); |
353 |
RTThreadPreemptRestore(&PreemptState); |
346 |
|
354 |
|
|
|
355 |
#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 3, 0) |
347 |
Assert(rc == 0); NOREF(rc); |
356 |
Assert(rc == 0); NOREF(rc); |
|
|
357 |
#endif |
348 |
IPRT_LINUX_RESTORE_EFL_AC(); |
358 |
IPRT_LINUX_RESTORE_EFL_AC(); |
349 |
#else |
359 |
#else |
350 |
RT_NOREF(pfnWorker, pvUser1, pvUser2); |
360 |
RT_NOREF(pfnWorker, pvUser1, pvUser2); |