File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
Documentation/admin-guide Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 287
287
do not want to use tracing_snapshot_alloc() as it needs
288
288
to be done where GFP_KERNEL allocations are allowed.
289
289
290
+ allow_mismatched_32bit_el0 [ARM64]
291
+ Allow execve() of 32-bit applications and setting of the
292
+ PER_LINUX32 personality on systems where only a strict
293
+ subset of the CPUs support 32-bit EL0. When this
294
+ parameter is present, the set of CPUs supporting 32-bit
295
+ EL0 is indicated by /sys/devices/system/cpu/aarch32_el0
296
+ and hot-unplug operations may be restricted.
297
+
290
298
amd_iommu= [HW,X86-64]
291
299
Pass parameters to the AMD IOMMU driver in the system.
292
300
Possible values are:
Original file line number Diff line number Diff line change @@ -1322,6 +1322,13 @@ const struct cpumask *system_32bit_el0_cpumask(void)
1322
1322
return cpu_possible_mask ;
1323
1323
}
1324
1324
1325
+ static int __init parse_32bit_el0_param (char * str )
1326
+ {
1327
+ allow_mismatched_32bit_el0 = true;
1328
+ return 0 ;
1329
+ }
1330
+ early_param ("allow_mismatched_32bit_el0" , parse_32bit_el0_param );
1331
+
1325
1332
static ssize_t aarch32_el0_show (struct device * dev ,
1326
1333
struct device_attribute * attr , char * buf )
1327
1334
{
You can’t perform that action at this time.
0 commit comments