| summaryrefslogtreecommitdiff |
| author | Egbert Eich <eich@suse.de> | 2011-04-11 15:39:05 (GMT) |
|---|---|---|
| committer | Egbert Eich <eich@suse.de> | 2011-04-14 08:12:31 (GMT) |
| commit | e62945ccc213207b58df9e2a1fea86bc0adfdfe7 (patch) (side-by-side diff) | |
| tree | 09da205dce1261666950c0747ce04591f908d1dc | |
| parent | d615f66c951f36ec77e25d81c51e60607e2a9ef2 (diff) | |
- patches.kabi/drm_device-guard.patch:rpm-2.6.32.36-0.5
Refresh. The type change to num_crtcs is not required from a secruity point
of view.
| -rw-r--r-- | kernel-source.changes | 7 | ||||
| -rw-r--r-- | patches.kabi/drm_device-guard.patch | 15 |
2 files changed, 15 insertions, 7 deletions
diff --git a/kernel-source.changes b/kernel-source.changes index 227f6d7..8963c76 100644 --- a/kernel-source.changes +++ b/kernel-source.changes @@ -57,6 +57,13 @@ Tue Apr 12 08:46:47 CEST 2011 - jbeulich@novell.com - Refresh other Xen patches. ------------------------------------------------------------------- +Mon Apr 11 17:38:04 CEST 2011 - eich@suse.de + +- patches.kabi/drm_device-guard.patch: + Refresh. The type change to num_crtcs is not required from a secruity point + of view. + +------------------------------------------------------------------- Mon Apr 11 09:28:32 CEST 2011 - nfbrown@suse.de - patches.fixes/nfs-sync-writes: Restore use of stable writes diff --git a/patches.kabi/drm_device-guard.patch b/patches.kabi/drm_device-guard.patch index 9885389..12c3537 100644 --- a/patches.kabi/drm_device-guard.patch +++ b/patches.kabi/drm_device-guard.patch @@ -6,24 +6,25 @@ silence kABI checker. It's only signedness what changed and nobody should ever touch the member outside the DRM core. +Update: The type change is not required from a secrurity point of view. +Signed-off-by: Egbert Eich <eich@suse.de> Signed-off-by: Jiri Slaby <jslaby@suse.cz> --- --- include/drm/drmP.h | 4 ++++ 1 file changed, 4 insertions(+) ---- a/include/drm/drmP.h -+++ b/include/drm/drmP.h -@@ -1025,7 +1025,11 @@ struct drm_device { +Index: linux-2.6.32-SLE11-SP1/include/drm/drmP.h +=================================================================== +--- linux-2.6.32-SLE11-SP1.orig/include/drm/drmP.h ++++ linux-2.6.32-SLE11-SP1/include/drm/drmP.h +@@ -1016,7 +1016,7 @@ struct drm_device { struct pci_controller *hose; #endif struct drm_sg_mem *sg; /**< Scatter gather memory */ -+#ifdef __GENKSYMS__ +- unsigned int num_crtcs; /**< Number of CRTCs on this device */ + int num_crtcs; /**< Number of CRTCs on this device */ -+#else - unsigned int num_crtcs; /**< Number of CRTCs on this device */ -+#endif void *dev_private; /**< device private data */ void *mm_private; struct address_space *dev_mapping; |