diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-06-10 13:37:01 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-06-10 13:37:01 -0400 |
commit | 94fcad6932e5eec50b3e5d82c5ce53bca11a2fa2 (patch) | |
tree | 7d71af14358c9e5a38a80c2691b90eb24a2508bf | |
parent | 698ea54dde6768d4a96080d0fb796cb3a4eadaf8 (diff) | |
parent | 0b0d81e3b7334897da9b2e3ffee860c2046f7bc0 (diff) |
Merge branch 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull objtool fix from Ingo Molnar:
"Addresses a false positive warning in the GPU/DRM code"
[ Technically it's not a "false positive", but it's the virtual GPU
interface that needs the frame pointer for its own internal purposes ]
* 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
objtool, drm/vmwgfx: Fix "duplicate frame pointer save" warning
-rw-r--r-- | drivers/gpu/drm/vmwgfx/vmwgfx_msg.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_msg.c b/drivers/gpu/drm/vmwgfx/vmwgfx_msg.c index 6de283c8fa3e..f0374f9b56ca 100644 --- a/drivers/gpu/drm/vmwgfx/vmwgfx_msg.c +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_msg.c | |||
@@ -28,6 +28,7 @@ | |||
28 | #include <linux/slab.h> | 28 | #include <linux/slab.h> |
29 | #include <linux/module.h> | 29 | #include <linux/module.h> |
30 | #include <linux/kernel.h> | 30 | #include <linux/kernel.h> |
31 | #include <linux/frame.h> | ||
31 | #include <asm/hypervisor.h> | 32 | #include <asm/hypervisor.h> |
32 | #include "drmP.h" | 33 | #include "drmP.h" |
33 | #include "vmwgfx_msg.h" | 34 | #include "vmwgfx_msg.h" |
@@ -194,7 +195,7 @@ static int vmw_send_msg(struct rpc_channel *channel, const char *msg) | |||
194 | 195 | ||
195 | return -EINVAL; | 196 | return -EINVAL; |
196 | } | 197 | } |
197 | 198 | STACK_FRAME_NON_STANDARD(vmw_send_msg); | |
198 | 199 | ||
199 | 200 | ||
200 | /** | 201 | /** |
@@ -304,6 +305,7 @@ static int vmw_recv_msg(struct rpc_channel *channel, void **msg, | |||
304 | 305 | ||
305 | return 0; | 306 | return 0; |
306 | } | 307 | } |
308 | STACK_FRAME_NON_STANDARD(vmw_recv_msg); | ||
307 | 309 | ||
308 | 310 | ||
309 | /** | 311 | /** |