Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kernel_patch_verify: Fix -j cpu_count
If you set the CPUs count (e.g, kernel_patch_verify -j8), then CPUS var is set to 8. However, the assignment to KM_CPUS happens only if CPUS is empty (if [ -z "$CPUS" ]; then) so effectively KM_CPUS is set only if -j switch is not provided. Move the KM_CPUS out of the empty CPUS check. Signed-off-by: Michael Nemanov <[email protected]> Signed-off-by: Nishanth Menon <[email protected]>
- Loading branch information