]> git.pld-linux.org Git - packages/kernel.git/blame - kernel-small_fixes.patch
- 4.4.162
[packages/kernel.git] / kernel-small_fixes.patch
CommitLineData
08aa9d92 1--- linux-2.6.33/scripts/mod/modpost.c~ 2010-02-24 19:52:17.000000000 +0100
2+++ linux-2.6.33/scripts/mod/modpost.c 2010-03-07 14:26:47.242168558 +0100
3@@ -15,7 +15,8 @@
4 #include <stdio.h>
5 #include <ctype.h>
6 #include "modpost.h"
7-#include "../../include/generated/autoconf.h"
8+// PLD architectures don't use CONFIG_SYMBOL_PREFIX
9+//#include "../../include/generated/autoconf.h"
10 #include "../../include/linux/license.h"
11
12 /* Some toolchains use a `_' prefix for all user symbols. */
13
2136e199
AM
14--- linux-3.0/scripts/kconfig/lxdialog/check-lxdialog.sh~ 2011-07-22 04:17:23.000000000 +0200
15+++ linux-3.0/scripts/kconfig/lxdialog/check-lxdialog.sh 2011-08-25 21:26:04.799150642 +0200
16@@ -9,6 +9,12 @@
17 $cc -print-file-name=lib${lib}.${ext} | grep -q /
18 if [ $? -eq 0 ]; then
19 echo "-l${lib}"
20+ for libt in tinfow tinfo ; do
21+ $cc -print-file-name=lib${libt}.${ext} | grep -q /
22+ if [ $? -eq 0 ]; then
23+ echo "-l${libt}"
24+ fi
25+ done
26 exit
27 fi
28 done
464edd60
JR
29--- a/Makefile 2016-11-10 20:41:43.646224629 +0100
30+++ b/Makefile 2016-11-10 20:40:35.640323501 +0100
31@@ -784,6 +774,9 @@
32 # Prohibit date/time macros, which would make the build non-deterministic
33 KBUILD_CFLAGS += $(call cc-option,-Werror=date-time)
34
35+# enforce correct pointer usage
36+KBUILD_CFLAGS += $(call cc-option,-Werror=incompatible-pointer-types)
37+
38 # use the deterministic mode of AR if available
39 KBUILD_ARFLAGS := $(call ar-option,D)
40
595544e4
AM
41From 5d12f71723762a39435d054d02bbf5fb87c5cd14 Mon Sep 17 00:00:00 2001
42From: =?UTF-8?q?Arkadiusz=20Mi=C5=9Bkiewicz?= <arekm@maven.pl>
43Date: Mon, 6 Feb 2017 14:45:15 +0100
44Subject: [PATCH] mac80211: Print text for disassociation reason
45MIME-Version: 1.0
46Content-Type: text/plain; charset=UTF-8
47Content-Transfer-Encoding: 8bit
a4020fca 48
595544e4
AM
49When disassociation happens only numeric reason is printed
50in ieee80211_rx_mgmt_disassoc(). Add text variant, too.
a4020fca 51
595544e4 52Signed-off-by: Arkadiusz Miśkiewicz <arekm@maven.pl>
a4020fca 53---
595544e4
AM
54 net/mac80211/mlme.c | 5 +++--
55 1 file changed, 3 insertions(+), 2 deletions(-)
a4020fca 56
595544e4
AM
57diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c
58index 098ce9b179ee..fcf8d0aa66ec 100644
59--- a/net/mac80211/mlme.c
60+++ b/net/mac80211/mlme.c
61@@ -2801,8 +2801,9 @@ static void ieee80211_rx_mgmt_disassoc(struct ieee80211_sub_if_data *sdata,
62
63 reason_code = le16_to_cpu(mgmt->u.disassoc.reason_code);
a4020fca 64
595544e4
AM
65- sdata_info(sdata, "disassociated from %pM (Reason: %u)\n",
66- mgmt->sa, reason_code);
67+ sdata_info(sdata, "disassociated from %pM (Reason: %u=%s)\n",
68+ mgmt->sa, reason_code,
69+ ieee80211_get_reason_code_string(reason_code));
a4020fca 70
595544e4 71 ieee80211_set_disassoc(sdata, 0, 0, false, NULL);
a4020fca
AM
72
73--
595544e4 742.11.0
a4020fca 75
This page took 0.227427 seconds and 4 git commands to generate.