summaryrefslogtreecommitdiff
path: root/debian/patches/debian
diff options
context:
space:
mode:
authorBen Hutchings <benh@debian.org>2014-07-21 16:08:39 +0000
committerBen Hutchings <benh@debian.org>2014-07-21 16:08:39 +0000
commit659b610ffd73b73b9fb43e05744bc9cdbc05697a (patch)
treedd9e092f1a16cc90140505f982486aa161deeb0c /debian/patches/debian
parente16e245a690e401a2d02e768ecc3db60cf2f7f11 (diff)
parent87dd323ecc97078894a376b9817323b8e3aca6e5 (diff)
Merge changes from sid up to 3.14.13-1
svn path=/dists/trunk/linux/; revision=21607
Diffstat (limited to 'debian/patches/debian')
-rw-r--r--debian/patches/debian/alsa-avoid-abi-change-for-cve-2014-4652-fix.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/debian/patches/debian/alsa-avoid-abi-change-for-cve-2014-4652-fix.patch b/debian/patches/debian/alsa-avoid-abi-change-for-cve-2014-4652-fix.patch
deleted file mode 100644
index 8543612ac..000000000
--- a/debian/patches/debian/alsa-avoid-abi-change-for-cve-2014-4652-fix.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From: Ben Hutchings <ben@decadent.org.uk>
-Date: Sun, 29 Jun 2014 02:05:57 +0100
-Subject: ALSA: Avoid ABI change for CVE-2014-4652 fix
-Forwarded: not-needed
-
-Move the new member snd_card::user_ctl_lock to the end of the structure
-and hide it from genksyms. struct snd_card is always allocated by
-snd_card_create() in sound/core/init.c and user_ctl_lock is used in
-sound/core/control.c, and these are part of the same module so they
-are sure to be consistent.
-
---- a/include/sound/core.h
-+++ b/include/sound/core.h
-@@ -121,8 +121,6 @@ struct snd_card {
- int user_ctl_count; /* count of all user controls */
- struct list_head controls; /* all controls for this card */
- struct list_head ctl_files; /* active control files */
-- struct mutex user_ctl_lock; /* protects user controls against
-- concurrent access */
-
- struct snd_info_entry *proc_root; /* root for soundcard specific files */
- struct snd_info_entry *proc_id; /* the card id */
-@@ -149,6 +147,10 @@ struct snd_card {
- struct snd_mixer_oss *mixer_oss;
- int mixer_oss_change_count;
- #endif
-+#ifndef __GENKSYMS__
-+ struct mutex user_ctl_lock; /* protects user controls against
-+ concurrent access */
-+#endif
- };
-
- #ifdef CONFIG_PM