Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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

+3 -1
+3 -1
drivers/gpu/drm/vmwgfx/vmwgfx_msg.c
··· 28 28 #include <linux/slab.h> 29 29 #include <linux/module.h> 30 30 #include <linux/kernel.h> 31 + #include <linux/frame.h> 31 32 #include <asm/hypervisor.h> 32 33 #include "drmP.h" 33 34 #include "vmwgfx_msg.h" ··· 195 194 196 195 return -EINVAL; 197 196 } 198 - 197 + STACK_FRAME_NON_STANDARD(vmw_send_msg); 199 198 200 199 201 200 /** ··· 305 304 306 305 return 0; 307 306 } 307 + STACK_FRAME_NON_STANDARD(vmw_recv_msg); 308 308 309 309 310 310 /**