mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-07 04:09:21 +00:00
Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip: perf tools: Fix sample type size calculation in 32 bits archs profile: Use vzalloc() rather than vmalloc() & memset()
This commit is contained in:
commit
5214638384
2 changed files with 3 additions and 5 deletions
|
@ -126,11 +126,9 @@ int __ref profile_init(void)
|
|||
if (prof_buffer)
|
||||
return 0;
|
||||
|
||||
prof_buffer = vmalloc(buffer_bytes);
|
||||
if (prof_buffer) {
|
||||
memset(prof_buffer, 0, buffer_bytes);
|
||||
prof_buffer = vzalloc(buffer_bytes);
|
||||
if (prof_buffer)
|
||||
return 0;
|
||||
}
|
||||
|
||||
free_cpumask_var(prof_cpu_mask);
|
||||
return -ENOMEM;
|
||||
|
|
|
@ -42,7 +42,7 @@ int perf_sample_size(u64 sample_type)
|
|||
int i;
|
||||
|
||||
for (i = 0; i < 64; i++) {
|
||||
if (mask & (1UL << i))
|
||||
if (mask & (1ULL << i))
|
||||
size++;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue