]> Git Repo - linux.git/commitdiff
oprofile, x86: Fix wrapping bug in op_x86_get_ctrl()
authorDan Carpenter <[email protected]>
Wed, 10 Oct 2012 07:18:35 +0000 (10:18 +0300)
committerRobert Richter <[email protected]>
Mon, 15 Oct 2012 12:38:24 +0000 (14:38 +0200)
The "event" variable is a u16 so the shift will always wrap to zero
making the line a no-op.

Signed-off-by: Dan Carpenter <[email protected]>
Cc: <[email protected]> v2.6.32..
Signed-off-by: Robert Richter <[email protected]>
arch/x86/oprofile/nmi_int.c

index 26b8a8514ee566e8a7d235a06de1037c2641adec..48768df2471af2bc9e4059fad6eb8c583f93f4d0 100644 (file)
@@ -55,7 +55,7 @@ u64 op_x86_get_ctrl(struct op_x86_model_spec const *model,
        val |= counter_config->extra;
        event &= model->event_mask ? model->event_mask : 0xFF;
        val |= event & 0xFF;
-       val |= (event & 0x0F00) << 24;
+       val |= (u64)(event & 0x0F00) << 24;
 
        return val;
 }
This page took 0.060239 seconds and 4 git commands to generate.