Linux v3.15-7218-g3f17ea6dea8b
- Reenable debugging options.
This commit is contained in:
parent
2a04f7df27
commit
a7fb62873e
File diff suppressed because it is too large
Load Diff
@ -1,102 +0,0 @@
|
|||||||
Bugzilla: 1089583
|
|
||||||
Upstream-status: Sent for 3.15
|
|
||||||
|
|
||||||
From 4cebb979af8d7bd1ec463406eaf57a44bd5b9f04 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Benjamin Tissoires <benjamin.tissoires@redhat.com>
|
|
||||||
Date: Tue, 22 Apr 2014 11:21:00 -0400
|
|
||||||
Subject: [PATCH] HID: rmi: do not handle touchscreens through hid-rmi
|
|
||||||
|
|
||||||
Currently, hid-rmi drives every Synaptics product, but the touchscreens
|
|
||||||
on the Windows tablets should be handled through hid-multitouch.
|
|
||||||
|
|
||||||
Instead of providing a long list of PIDs, rely on the scan_report
|
|
||||||
capability to detect which should go to hid-multitouch, and which
|
|
||||||
should not go to hid-rmi.
|
|
||||||
|
|
||||||
We introduce a generic HID_GROUP_HAVE_SPECIAL_DRIVER which can be reused
|
|
||||||
amoung other drivers if they want to have a catch rule but still
|
|
||||||
have multitouch devices handled through hid-multitouch.
|
|
||||||
|
|
||||||
related bug:
|
|
||||||
https://bugzilla.kernel.org/show_bug.cgi?id=74241
|
|
||||||
https://bugzilla.redhat.com/show_bug.cgi?id=1089583
|
|
||||||
|
|
||||||
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
|
|
||||||
---
|
|
||||||
drivers/hid/hid-core.c | 10 ++++++++--
|
|
||||||
drivers/hid/hid-rmi.c | 6 ++++--
|
|
||||||
include/linux/hid.h | 13 +++++++++++++
|
|
||||||
3 files changed, 25 insertions(+), 4 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c
|
|
||||||
index 6ba2fd0..ea18639 100644
|
|
||||||
--- a/drivers/hid/hid-core.c
|
|
||||||
+++ b/drivers/hid/hid-core.c
|
|
||||||
@@ -776,6 +776,14 @@ static int hid_scan_report(struct hid_device *hid)
|
|
||||||
(hid->group == HID_GROUP_MULTITOUCH))
|
|
||||||
hid->group = HID_GROUP_MULTITOUCH_WIN_8;
|
|
||||||
|
|
||||||
+ /*
|
|
||||||
+ * Vendor specific handlings
|
|
||||||
+ */
|
|
||||||
+ if ((hid->vendor == USB_VENDOR_ID_SYNAPTICS) &&
|
|
||||||
+ (hid->group == HID_GROUP_GENERIC))
|
|
||||||
+ /* hid-rmi should take care of them, not hid-generic */
|
|
||||||
+ hid->group = HID_GROUP_HAVE_SPECIAL_DRIVER;
|
|
||||||
+
|
|
||||||
vfree(parser);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
@@ -1840,8 +1848,6 @@ static const struct hid_device_id hid_have_special_driver[] = {
|
|
||||||
{ HID_USB_DEVICE(USB_VENDOR_ID_SONY, USB_DEVICE_ID_SONY_VAIO_VGP_MOUSE) },
|
|
||||||
{ HID_USB_DEVICE(USB_VENDOR_ID_STEELSERIES, USB_DEVICE_ID_STEELSERIES_SRWS1) },
|
|
||||||
{ HID_USB_DEVICE(USB_VENDOR_ID_SUNPLUS, USB_DEVICE_ID_SUNPLUS_WDESKTOP) },
|
|
||||||
- { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, HID_ANY_ID) },
|
|
||||||
- { HID_I2C_DEVICE(USB_VENDOR_ID_SYNAPTICS, HID_ANY_ID) },
|
|
||||||
{ HID_USB_DEVICE(USB_VENDOR_ID_THINGM, USB_DEVICE_ID_BLINK1) },
|
|
||||||
{ HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb300) },
|
|
||||||
{ HID_USB_DEVICE(USB_VENDOR_ID_THRUSTMASTER, 0xb304) },
|
|
||||||
diff --git a/drivers/hid/hid-rmi.c b/drivers/hid/hid-rmi.c
|
|
||||||
index a4f04d4..a97a373 100644
|
|
||||||
--- a/drivers/hid/hid-rmi.c
|
|
||||||
+++ b/drivers/hid/hid-rmi.c
|
|
||||||
@@ -863,8 +863,10 @@ static void rmi_remove(struct hid_device *hdev)
|
|
||||||
}
|
|
||||||
|
|
||||||
static const struct hid_device_id rmi_id[] = {
|
|
||||||
- { HID_I2C_DEVICE(USB_VENDOR_ID_SYNAPTICS, HID_ANY_ID) },
|
|
||||||
- { HID_USB_DEVICE(USB_VENDOR_ID_SYNAPTICS, HID_ANY_ID) },
|
|
||||||
+ { HID_DEVICE(BUS_I2C, HID_GROUP_HAVE_SPECIAL_DRIVER,
|
|
||||||
+ USB_VENDOR_ID_SYNAPTICS, HID_ANY_ID) },
|
|
||||||
+ { HID_DEVICE(BUS_USB, HID_GROUP_HAVE_SPECIAL_DRIVER,
|
|
||||||
+ USB_VENDOR_ID_SYNAPTICS, HID_ANY_ID) },
|
|
||||||
{ }
|
|
||||||
};
|
|
||||||
MODULE_DEVICE_TABLE(hid, rmi_id);
|
|
||||||
diff --git a/include/linux/hid.h b/include/linux/hid.h
|
|
||||||
index 1b5f1e9..2fdd612 100644
|
|
||||||
--- a/include/linux/hid.h
|
|
||||||
+++ b/include/linux/hid.h
|
|
||||||
@@ -299,6 +299,19 @@ struct hid_item {
|
|
||||||
#define HID_GROUP_MULTITOUCH 0x0002
|
|
||||||
#define HID_GROUP_SENSOR_HUB 0x0003
|
|
||||||
#define HID_GROUP_MULTITOUCH_WIN_8 0x0004
|
|
||||||
+#define HID_GROUP_HAVE_SPECIAL_DRIVER 0xffff
|
|
||||||
+/*
|
|
||||||
+ * HID_GROUP_HAVE_SPECIAL_DRIVER should be used when the device needs to be
|
|
||||||
+ * scanned in case it is handled by either hid-multitouch, hid-generic,
|
|
||||||
+ * hid-sensor-hub or any other generic hid driver.
|
|
||||||
+ *
|
|
||||||
+ * Devices declared in hid_have_special_driver[] in hid-core.c can use
|
|
||||||
+ * HID_GROUP_ANY instead because there will be not overlap between their
|
|
||||||
+ * specific driver and a generic one.
|
|
||||||
+ *
|
|
||||||
+ * Note: HID_GROUP_ANY is declared in linux/mod_devicetable.h
|
|
||||||
+ * and has a value of 0x0000
|
|
||||||
+ */
|
|
||||||
|
|
||||||
/*
|
|
||||||
* This is the global environment of the parser. This information is
|
|
||||||
--
|
|
||||||
1.9.0
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
@ -1,60 +0,0 @@
|
|||||||
Bugzilla: 1090161
|
|
||||||
Upstream-status: sent https://patchwork.kernel.org/patch/4055781/
|
|
||||||
|
|
||||||
From patchwork Thu Apr 24 22:26:38 2014
|
|
||||||
Content-Type: text/plain; charset="utf-8"
|
|
||||||
MIME-Version: 1.0
|
|
||||||
Content-Transfer-Encoding: 7bit
|
|
||||||
Subject: HID: rmi: do not fetch more than 16 bytes in a query
|
|
||||||
From: Benjamin Tissoires <benjamin.tissoires@redhat.com>
|
|
||||||
X-Patchwork-Id: 4055781
|
|
||||||
Message-Id: <1398378398-24825-1-git-send-email-benjamin.tissoires@redhat.com>
|
|
||||||
To: Andrew Duggan <aduggan@synaptics.com>,
|
|
||||||
Christopher Heiny <cheiny@synaptics.com>,
|
|
||||||
Jiri Kosina <jkosina@suse.cz>, linux-input@vger.kernel.org,
|
|
||||||
linux-kernel@vger.kernel.org
|
|
||||||
Date: Thu, 24 Apr 2014 18:26:38 -0400
|
|
||||||
|
|
||||||
A firmware bug is present on the XPS Haswell edition which silently
|
|
||||||
split the request in two responses when the caller ask for a read of
|
|
||||||
more than 16 bytes.
|
|
||||||
The FW sends the first 16 then the 4 next, but it says that it answered
|
|
||||||
the 20 bytes in the first report.
|
|
||||||
|
|
||||||
This occurs only on the retrieving of the min/max of X and Y of the F11
|
|
||||||
function.
|
|
||||||
We only use the first 10 bytes of the Ctrl register, so we can get only
|
|
||||||
those 10 bytes to prevent the bug from happening.
|
|
||||||
|
|
||||||
Resolves:
|
|
||||||
https://bugzilla.redhat.com/show_bug.cgi?id=1090161
|
|
||||||
|
|
||||||
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
|
|
||||||
|
|
||||||
---
|
|
||||||
drivers/hid/hid-rmi.c | 11 ++++++++---
|
|
||||||
1 file changed, 8 insertions(+), 3 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/drivers/hid/hid-rmi.c b/drivers/hid/hid-rmi.c
|
|
||||||
index 7da9509..cee89c9 100644
|
|
||||||
--- a/drivers/hid/hid-rmi.c
|
|
||||||
+++ b/drivers/hid/hid-rmi.c
|
|
||||||
@@ -613,10 +613,15 @@ static int rmi_populate_f11(struct hid_device *hdev)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
- /* retrieve the ctrl registers */
|
|
||||||
- ret = rmi_read_block(hdev, data->f11.control_base_addr, buf, 20);
|
|
||||||
+ /*
|
|
||||||
+ * retrieve the ctrl registers
|
|
||||||
+ * the ctrl register has a size of 20 but a fw bug split it into 16 + 4,
|
|
||||||
+ * and there is no way to know if the first 20 bytes are here or not.
|
|
||||||
+ * We use only the first 10 bytes, so get only them.
|
|
||||||
+ */
|
|
||||||
+ ret = rmi_read_block(hdev, data->f11.control_base_addr, buf, 10);
|
|
||||||
if (ret) {
|
|
||||||
- hid_err(hdev, "can not read ctrl block of size 20: %d.\n", ret);
|
|
||||||
+ hid_err(hdev, "can not read ctrl block of size 10: %d.\n", ret);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
|
|
1
Makefile
1
Makefile
@ -47,6 +47,7 @@ debug:
|
|||||||
@perl -pi -e 's/# CONFIG_FAULT_INJECTION_DEBUG_FS is not set/CONFIG_FAULT_INJECTION_DEBUG_FS=y/' config-nodebug
|
@perl -pi -e 's/# CONFIG_FAULT_INJECTION_DEBUG_FS is not set/CONFIG_FAULT_INJECTION_DEBUG_FS=y/' config-nodebug
|
||||||
@perl -pi -e 's/# CONFIG_FAULT_INJECTION_STACKTRACE_FILTER is not set/CONFIG_FAULT_INJECTION_STACKTRACE_FILTER=y/' config-nodebug
|
@perl -pi -e 's/# CONFIG_FAULT_INJECTION_STACKTRACE_FILTER is not set/CONFIG_FAULT_INJECTION_STACKTRACE_FILTER=y/' config-nodebug
|
||||||
@perl -pi -e 's/# CONFIG_DEBUG_SG is not set/CONFIG_DEBUG_SG=y/' config-nodebug
|
@perl -pi -e 's/# CONFIG_DEBUG_SG is not set/CONFIG_DEBUG_SG=y/' config-nodebug
|
||||||
|
@perl -pi -e 's/# CONFIG_DEBUG_PI_LIST is not set/CONFIG_DEBUG_PI_LIST=y/' config-nodebug
|
||||||
@perl -pi -e 's/# CONFIG_DEBUG_WRITECOUNT is not set/CONFIG_DEBUG_WRITECOUNT=y/' config-nodebug
|
@perl -pi -e 's/# CONFIG_DEBUG_WRITECOUNT is not set/CONFIG_DEBUG_WRITECOUNT=y/' config-nodebug
|
||||||
@perl -pi -e 's/# CONFIG_DEBUG_OBJECTS is not set/CONFIG_DEBUG_OBJECTS=y/' config-nodebug
|
@perl -pi -e 's/# CONFIG_DEBUG_OBJECTS is not set/CONFIG_DEBUG_OBJECTS=y/' config-nodebug
|
||||||
@perl -pi -e 's/# CONFIG_DEBUG_OBJECTS_FREE is not set/CONFIG_DEBUG_OBJECTS_FREE=y/' config-nodebug
|
@perl -pi -e 's/# CONFIG_DEBUG_OBJECTS_FREE is not set/CONFIG_DEBUG_OBJECTS_FREE=y/' config-nodebug
|
||||||
|
@ -27,6 +27,7 @@ config-release:
|
|||||||
@perl -pi -e 's/CONFIG_FAULT_INJECTION_DEBUG_FS=y/# CONFIG_FAULT_INJECTION_DEBUG_FS is not set/' config-nodebug
|
@perl -pi -e 's/CONFIG_FAULT_INJECTION_DEBUG_FS=y/# CONFIG_FAULT_INJECTION_DEBUG_FS is not set/' config-nodebug
|
||||||
@perl -pi -e 's/CONFIG_FAULT_INJECTION_STACKTRACE_FILTER=y/# CONFIG_FAULT_INJECTION_STACKTRACE_FILTER is not set/' config-nodebug
|
@perl -pi -e 's/CONFIG_FAULT_INJECTION_STACKTRACE_FILTER=y/# CONFIG_FAULT_INJECTION_STACKTRACE_FILTER is not set/' config-nodebug
|
||||||
@perl -pi -e 's/CONFIG_DEBUG_SG=y/# CONFIG_DEBUG_SG is not set/' config-nodebug
|
@perl -pi -e 's/CONFIG_DEBUG_SG=y/# CONFIG_DEBUG_SG is not set/' config-nodebug
|
||||||
|
@perl -pi -e 's/CONFIG_DEBUG_PI_LIST=y/# CONFIG_DEBUG_PI_LIST is not set/' config-nodebug
|
||||||
@perl -pi -e 's/CONFIG_DEBUG_WRITECOUNT=y/# CONFIG_DEBUG_WRITECOUNT is not set/' config-nodebug
|
@perl -pi -e 's/CONFIG_DEBUG_WRITECOUNT=y/# CONFIG_DEBUG_WRITECOUNT is not set/' config-nodebug
|
||||||
@perl -pi -e 's/CONFIG_DEBUG_OBJECTS=y/# CONFIG_DEBUG_OBJECTS is not set/' config-nodebug
|
@perl -pi -e 's/CONFIG_DEBUG_OBJECTS=y/# CONFIG_DEBUG_OBJECTS is not set/' config-nodebug
|
||||||
@perl -pi -e 's/CONFIG_DEBUG_OBJECTS_FREE=y/# CONFIG_DEBUG_OBJECTS_FREE is not set/' config-nodebug
|
@perl -pi -e 's/CONFIG_DEBUG_OBJECTS_FREE=y/# CONFIG_DEBUG_OBJECTS_FREE is not set/' config-nodebug
|
||||||
|
@ -1,40 +0,0 @@
|
|||||||
Bugzilla: 1012674
|
|
||||||
Upstream-status: Queued for 3.16
|
|
||||||
|
|
||||||
From a94de796cd769fc5c4a9c57ebe99c0ae74b9c8a1 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Hans de Goede <hdegoede@redhat.com>
|
|
||||||
Date: Mon, 2 Jun 2014 17:41:06 +0200
|
|
||||||
Subject: [PATCH 09/14] acer-wmi: Add Aspire 5741 to video_vendor_dmi_table
|
|
||||||
|
|
||||||
The Aspire 5741 has broken acpi-video backlight control, so add it to the
|
|
||||||
quirk table.
|
|
||||||
|
|
||||||
https://bugzilla.redhat.com/show_bug.cgi?id=1012674
|
|
||||||
|
|
||||||
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
|
|
||||||
---
|
|
||||||
drivers/platform/x86/acer-wmi.c | 8 ++++++++
|
|
||||||
1 file changed, 8 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c
|
|
||||||
index 3a746998f92a..bbf78b2d6d93 100644
|
|
||||||
--- a/drivers/platform/x86/acer-wmi.c
|
|
||||||
+++ b/drivers/platform/x86/acer-wmi.c
|
|
||||||
@@ -570,6 +570,14 @@ static const struct dmi_system_id video_vendor_dmi_table[] = {
|
|
||||||
DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5750"),
|
|
||||||
},
|
|
||||||
},
|
|
||||||
+ {
|
|
||||||
+ .callback = video_set_backlight_video_vendor,
|
|
||||||
+ .ident = "Acer Aspire 5741",
|
|
||||||
+ .matches = {
|
|
||||||
+ DMI_MATCH(DMI_BOARD_VENDOR, "Acer"),
|
|
||||||
+ DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 5741"),
|
|
||||||
+ },
|
|
||||||
+ },
|
|
||||||
{}
|
|
||||||
};
|
|
||||||
|
|
||||||
--
|
|
||||||
1.9.0
|
|
||||||
|
|
@ -1,64 +0,0 @@
|
|||||||
Bugzilla: 1012674
|
|
||||||
Upstream-status: Queued for 3.16
|
|
||||||
|
|
||||||
From d8aceabf18681a92e8031c43d3917f6826ac6691 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Hans de Goede <hdegoede@redhat.com>
|
|
||||||
Date: Mon, 2 Jun 2014 17:41:05 +0200
|
|
||||||
Subject: [PATCH 08/14] acer-wmi: Switch to acpi_video_unregister_backlight
|
|
||||||
|
|
||||||
Switch from acpi_video_unregister(), to acpi_video_unregister_backlight(),
|
|
||||||
so that the hotkeys handler registered by acpi-video stays in place.
|
|
||||||
|
|
||||||
Since there are no mappings for the atkbd raw codes for the brightness
|
|
||||||
keys used by newer Acer models in /lib/udev/hwdb.d/60-keyboard.hwdb, and
|
|
||||||
since we map the wmi events with a code of KE_IGNORE, we rely on acpi-video
|
|
||||||
to do the hotkey handling for us.
|
|
||||||
|
|
||||||
For laptops such as the Acer Aspire 5750 which uses intel gfx this works
|
|
||||||
despite us calling acpi_video_unregister() because the following happens:
|
|
||||||
|
|
||||||
1) acpi-video module gets loaded (as it is a dependency of acer-wmi and i915)
|
|
||||||
2) acpi-video does NOT call acpi_video_register()
|
|
||||||
3) acer-wmi loads (assume it loads before i915), calls
|
|
||||||
acpi_video_dmi_promote_vendor(); which sets ACPI_VIDEO_BACKLIGHT_DMI_VENDOR
|
|
||||||
4) calls acpi_video_unregister -> not registered, nop
|
|
||||||
5) i915 loads, calls acpi_video_register
|
|
||||||
6) acpi_video_register registers the acpi_notifier for the hotkeys,
|
|
||||||
does NOT register a backlight device because of ACPI_VIDEO_BACKLIGHT_DMI_VENDOR
|
|
||||||
|
|
||||||
But on the Acer Aspire 5750G, which uses nvidia graphics the following happens:
|
|
||||||
1) acpi-video module gets loaded (as it is a dependency of acer-wmi)
|
|
||||||
2) acpi-video calls acpi_video_register()
|
|
||||||
3) acpi_video_register registers the acpi_notifier for the hotkeys,
|
|
||||||
and a backlight device
|
|
||||||
4) acer-wmi loads, calls acpi_video_dmi_promote_vendor()
|
|
||||||
5) calls acpi_video_unregister, this unregisters BOTH the acpi_notifier for
|
|
||||||
the hotkeys AND the backlight device
|
|
||||||
|
|
||||||
And we end up without any handler for the brightness hotkeys. This patch fixes
|
|
||||||
this by switching over to acpi_video_unregister_backlight() which keeps the
|
|
||||||
hotkey handler in place.
|
|
||||||
|
|
||||||
https://bugzilla.kernel.org/show_bug.cgi?id=35622
|
|
||||||
|
|
||||||
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
|
|
||||||
---
|
|
||||||
drivers/platform/x86/acer-wmi.c | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/drivers/platform/x86/acer-wmi.c b/drivers/platform/x86/acer-wmi.c
|
|
||||||
index c91f69b39db4..3a746998f92a 100644
|
|
||||||
--- a/drivers/platform/x86/acer-wmi.c
|
|
||||||
+++ b/drivers/platform/x86/acer-wmi.c
|
|
||||||
@@ -2228,7 +2228,7 @@ static int __init acer_wmi_init(void)
|
|
||||||
pr_info("Brightness must be controlled by acpi video driver\n");
|
|
||||||
} else {
|
|
||||||
pr_info("Disabling ACPI video driver\n");
|
|
||||||
- acpi_video_unregister();
|
|
||||||
+ acpi_video_unregister_backlight();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (wmi_has_guid(WMID_GUID3)) {
|
|
||||||
--
|
|
||||||
1.9.0
|
|
||||||
|
|
@ -1,112 +0,0 @@
|
|||||||
Bugzilla: 1012674
|
|
||||||
Upstream-status: Queued for 3.16
|
|
||||||
|
|
||||||
From 4cf3eac89ed731d7cdb7d9d815a97109472af824 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Hans de Goede <hdegoede@redhat.com>
|
|
||||||
Date: Mon, 2 Jun 2014 17:41:04 +0200
|
|
||||||
Subject: [PATCH 07/14] acpi-video: Add an acpi_video_unregister_backlight
|
|
||||||
function
|
|
||||||
|
|
||||||
Add an acpi_video_unregister_backlight function, which only unregisters
|
|
||||||
the backlight device, and leaves the acpi_notifier in place. Some acpi_vendor
|
|
||||||
driver need this as they don't want the acpi_video# backlight device, but do
|
|
||||||
need the acpi-video driver for hotkey handling.
|
|
||||||
|
|
||||||
Chances are that this new acpi_video_unregister_backlight() is actually
|
|
||||||
what existing acpi_vendor drivers have wanted all along. Currently acpi_vendor
|
|
||||||
drivers which want to disable the acpi_video# backlight device, make 2 calls:
|
|
||||||
|
|
||||||
acpi_video_dmi_promote_vendor();
|
|
||||||
acpi_video_unregister();
|
|
||||||
|
|
||||||
The intention here is to make things independent of when acpi_video_register()
|
|
||||||
gets called. As acpi_video_register() will get called on acpi-video load time
|
|
||||||
on non intel gfx machines, while it gets called on i915 load time on intel
|
|
||||||
gfx machines.
|
|
||||||
|
|
||||||
This leads to the following 2 interesting scenarios:
|
|
||||||
|
|
||||||
a) intel gfx:
|
|
||||||
1) acpi-video module gets loaded (as it is a dependency of acpi_vendor and i915)
|
|
||||||
2) acpi-video does NOT call acpi_video_register()
|
|
||||||
3) acpi_vendor loads (lets assume it loads before i915), calls
|
|
||||||
acpi_video_dmi_promote_vendor(); which sets ACPI_VIDEO_BACKLIGHT_DMI_VENDOR
|
|
||||||
4) calls acpi_video_unregister -> not registered, nop
|
|
||||||
5) i915 loads, calls acpi_video_register
|
|
||||||
6) acpi_video_register registers the acpi_notifier for the hotkeys,
|
|
||||||
does NOT register a backlight device because of ACPI_VIDEO_BACKLIGHT_DMI_VENDOR
|
|
||||||
|
|
||||||
b) non intel gfx
|
|
||||||
1) acpi-video module gets loaded (as it is a dependency acpi_vendor)
|
|
||||||
2) acpi-video calls acpi_video_register()
|
|
||||||
3) acpi_video_register registers the acpi_notifier for the hotkeys,
|
|
||||||
and a backlight device
|
|
||||||
4) acpi_vendor loads, calls acpi_video_dmi_promote_vendor()
|
|
||||||
5) calls acpi_video_unregister, this unregisters BOTH the acpi_notifier for
|
|
||||||
the hotkeys AND the backlight device
|
|
||||||
|
|
||||||
So here we have possibly the same acpi_vendor module, making the same calls,
|
|
||||||
but with different results, in one cases acpi-video does handle hotkeys,
|
|
||||||
in the other it does not.
|
|
||||||
|
|
||||||
Note that the a) scenario turns into b) if we assume the i915 module loads
|
|
||||||
before the vendor_acpi module, so we also have different behavior depending
|
|
||||||
on module loading order!
|
|
||||||
|
|
||||||
So as said I believe that quite a few existing acpi_vendor modules really
|
|
||||||
always want the behavior of a), hence this patch adds a new
|
|
||||||
acpi_video_unregister_backlight() which gives the behavior of a) independent
|
|
||||||
of module loading order.
|
|
||||||
|
|
||||||
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
|
|
||||||
---
|
|
||||||
drivers/acpi/video.c | 14 ++++++++++++++
|
|
||||||
include/acpi/video.h | 2 ++
|
|
||||||
2 files changed, 16 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c
|
|
||||||
index a68313720c9c..d4d6ea3ac77a 100644
|
|
||||||
--- a/drivers/acpi/video.c
|
|
||||||
+++ b/drivers/acpi/video.c
|
|
||||||
@@ -2070,6 +2070,20 @@ void acpi_video_unregister(void)
|
|
||||||
}
|
|
||||||
EXPORT_SYMBOL(acpi_video_unregister);
|
|
||||||
|
|
||||||
+void acpi_video_unregister_backlight(void)
|
|
||||||
+{
|
|
||||||
+ struct acpi_video_bus *video;
|
|
||||||
+
|
|
||||||
+ if (!register_count)
|
|
||||||
+ return;
|
|
||||||
+
|
|
||||||
+ mutex_lock(&video_list_lock);
|
|
||||||
+ list_for_each_entry(video, &video_bus_head, entry)
|
|
||||||
+ acpi_video_bus_unregister_backlight(video);
|
|
||||||
+ mutex_unlock(&video_list_lock);
|
|
||||||
+}
|
|
||||||
+EXPORT_SYMBOL(acpi_video_unregister_backlight);
|
|
||||||
+
|
|
||||||
/*
|
|
||||||
* This is kind of nasty. Hardware using Intel chipsets may require
|
|
||||||
* the video opregion code to be run first in order to initialise
|
|
||||||
diff --git a/include/acpi/video.h b/include/acpi/video.h
|
|
||||||
index 61109f2609fc..ea4c7bbded4d 100644
|
|
||||||
--- a/include/acpi/video.h
|
|
||||||
+++ b/include/acpi/video.h
|
|
||||||
@@ -19,11 +19,13 @@ struct acpi_device;
|
|
||||||
#if (defined CONFIG_ACPI_VIDEO || defined CONFIG_ACPI_VIDEO_MODULE)
|
|
||||||
extern int acpi_video_register(void);
|
|
||||||
extern void acpi_video_unregister(void);
|
|
||||||
+extern void acpi_video_unregister_backlight(void);
|
|
||||||
extern int acpi_video_get_edid(struct acpi_device *device, int type,
|
|
||||||
int device_id, void **edid);
|
|
||||||
#else
|
|
||||||
static inline int acpi_video_register(void) { return 0; }
|
|
||||||
static inline void acpi_video_unregister(void) { return; }
|
|
||||||
+static inline void acpi_video_unregister_backlight(void) { return; }
|
|
||||||
static inline int acpi_video_get_edid(struct acpi_device *device, int type,
|
|
||||||
int device_id, void **edid)
|
|
||||||
{
|
|
||||||
--
|
|
||||||
1.9.0
|
|
||||||
|
|
@ -1,214 +0,0 @@
|
|||||||
Bugzilla: 1012674
|
|
||||||
Upstream-status: Queued for 3.16
|
|
||||||
|
|
||||||
From 5d9b5801af7cbeaab060fa07576ca6cd7dc3be89 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Hans de Goede <hdegoede@redhat.com>
|
|
||||||
Date: Mon, 2 Jun 2014 17:41:03 +0200
|
|
||||||
Subject: [PATCH 06/14] acpi-video: Don't register acpi_video_resume notifier
|
|
||||||
without backlight devices
|
|
||||||
|
|
||||||
If we're not going to be registering any backlight devices then
|
|
||||||
acpi_video_resume is always nop, so don't register it in that case.
|
|
||||||
|
|
||||||
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
|
|
||||||
|
|
||||||
--
|
|
||||||
|
|
||||||
Note to reviewers the changes to acpi_video_dev_register_backlight() only
|
|
||||||
remove the "if (!acpi_video_verify_backlight_support()) {" which surrounded
|
|
||||||
the entire body of the function, as that is checked earlier now.
|
|
||||||
---
|
|
||||||
drivers/acpi/video.c | 139 +++++++++++++++++++++++++++------------------------
|
|
||||||
1 file changed, 74 insertions(+), 65 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c
|
|
||||||
index f8bc5a755dda..a68313720c9c 100644
|
|
||||||
--- a/drivers/acpi/video.c
|
|
||||||
+++ b/drivers/acpi/video.c
|
|
||||||
@@ -150,6 +150,7 @@ struct acpi_video_enumerated_device {
|
|
||||||
|
|
||||||
struct acpi_video_bus {
|
|
||||||
struct acpi_device *device;
|
|
||||||
+ bool backlight_registered;
|
|
||||||
u8 dos_setting;
|
|
||||||
struct acpi_video_enumerated_device *attached_array;
|
|
||||||
u8 attached_count;
|
|
||||||
@@ -1658,88 +1659,89 @@ acpi_video_bus_match(acpi_handle handle, u32 level, void *context,
|
|
||||||
|
|
||||||
static void acpi_video_dev_register_backlight(struct acpi_video_device *device)
|
|
||||||
{
|
|
||||||
- if (acpi_video_verify_backlight_support()) {
|
|
||||||
- struct backlight_properties props;
|
|
||||||
- struct pci_dev *pdev;
|
|
||||||
- acpi_handle acpi_parent;
|
|
||||||
- struct device *parent = NULL;
|
|
||||||
- int result;
|
|
||||||
- static int count;
|
|
||||||
- char *name;
|
|
||||||
-
|
|
||||||
- result = acpi_video_init_brightness(device);
|
|
||||||
- if (result)
|
|
||||||
- return;
|
|
||||||
- name = kasprintf(GFP_KERNEL, "acpi_video%d", count);
|
|
||||||
- if (!name)
|
|
||||||
- return;
|
|
||||||
- count++;
|
|
||||||
+ struct backlight_properties props;
|
|
||||||
+ struct pci_dev *pdev;
|
|
||||||
+ acpi_handle acpi_parent;
|
|
||||||
+ struct device *parent = NULL;
|
|
||||||
+ int result;
|
|
||||||
+ static int count;
|
|
||||||
+ char *name;
|
|
||||||
|
|
||||||
- acpi_get_parent(device->dev->handle, &acpi_parent);
|
|
||||||
+ result = acpi_video_init_brightness(device);
|
|
||||||
+ if (result)
|
|
||||||
+ return;
|
|
||||||
+ name = kasprintf(GFP_KERNEL, "acpi_video%d", count);
|
|
||||||
+ if (!name)
|
|
||||||
+ return;
|
|
||||||
+ count++;
|
|
||||||
|
|
||||||
- pdev = acpi_get_pci_dev(acpi_parent);
|
|
||||||
- if (pdev) {
|
|
||||||
- parent = &pdev->dev;
|
|
||||||
- pci_dev_put(pdev);
|
|
||||||
- }
|
|
||||||
+ acpi_get_parent(device->dev->handle, &acpi_parent);
|
|
||||||
|
|
||||||
- memset(&props, 0, sizeof(struct backlight_properties));
|
|
||||||
- props.type = BACKLIGHT_FIRMWARE;
|
|
||||||
- props.max_brightness = device->brightness->count - 3;
|
|
||||||
- device->backlight = backlight_device_register(name,
|
|
||||||
- parent,
|
|
||||||
- device,
|
|
||||||
- &acpi_backlight_ops,
|
|
||||||
- &props);
|
|
||||||
- kfree(name);
|
|
||||||
- if (IS_ERR(device->backlight))
|
|
||||||
- return;
|
|
||||||
+ pdev = acpi_get_pci_dev(acpi_parent);
|
|
||||||
+ if (pdev) {
|
|
||||||
+ parent = &pdev->dev;
|
|
||||||
+ pci_dev_put(pdev);
|
|
||||||
+ }
|
|
||||||
|
|
||||||
- /*
|
|
||||||
- * Save current brightness level in case we have to restore it
|
|
||||||
- * before acpi_video_device_lcd_set_level() is called next time.
|
|
||||||
- */
|
|
||||||
- device->backlight->props.brightness =
|
|
||||||
- acpi_video_get_brightness(device->backlight);
|
|
||||||
+ memset(&props, 0, sizeof(struct backlight_properties));
|
|
||||||
+ props.type = BACKLIGHT_FIRMWARE;
|
|
||||||
+ props.max_brightness = device->brightness->count - 3;
|
|
||||||
+ device->backlight = backlight_device_register(name,
|
|
||||||
+ parent,
|
|
||||||
+ device,
|
|
||||||
+ &acpi_backlight_ops,
|
|
||||||
+ &props);
|
|
||||||
+ kfree(name);
|
|
||||||
+ if (IS_ERR(device->backlight))
|
|
||||||
+ return;
|
|
||||||
|
|
||||||
- device->cooling_dev = thermal_cooling_device_register("LCD",
|
|
||||||
- device->dev, &video_cooling_ops);
|
|
||||||
- if (IS_ERR(device->cooling_dev)) {
|
|
||||||
- /*
|
|
||||||
- * Set cooling_dev to NULL so we don't crash trying to
|
|
||||||
- * free it.
|
|
||||||
- * Also, why the hell we are returning early and
|
|
||||||
- * not attempt to register video output if cooling
|
|
||||||
- * device registration failed?
|
|
||||||
- * -- dtor
|
|
||||||
- */
|
|
||||||
- device->cooling_dev = NULL;
|
|
||||||
- return;
|
|
||||||
- }
|
|
||||||
+ /*
|
|
||||||
+ * Save current brightness level in case we have to restore it
|
|
||||||
+ * before acpi_video_device_lcd_set_level() is called next time.
|
|
||||||
+ */
|
|
||||||
+ device->backlight->props.brightness =
|
|
||||||
+ acpi_video_get_brightness(device->backlight);
|
|
||||||
|
|
||||||
- dev_info(&device->dev->dev, "registered as cooling_device%d\n",
|
|
||||||
- device->cooling_dev->id);
|
|
||||||
- result = sysfs_create_link(&device->dev->dev.kobj,
|
|
||||||
- &device->cooling_dev->device.kobj,
|
|
||||||
- "thermal_cooling");
|
|
||||||
- if (result)
|
|
||||||
- printk(KERN_ERR PREFIX "Create sysfs link\n");
|
|
||||||
- result = sysfs_create_link(&device->cooling_dev->device.kobj,
|
|
||||||
- &device->dev->dev.kobj, "device");
|
|
||||||
- if (result)
|
|
||||||
- printk(KERN_ERR PREFIX "Create sysfs link\n");
|
|
||||||
+ device->cooling_dev = thermal_cooling_device_register("LCD",
|
|
||||||
+ device->dev, &video_cooling_ops);
|
|
||||||
+ if (IS_ERR(device->cooling_dev)) {
|
|
||||||
+ /*
|
|
||||||
+ * Set cooling_dev to NULL so we don't crash trying to free it.
|
|
||||||
+ * Also, why the hell we are returning early and not attempt to
|
|
||||||
+ * register video output if cooling device registration failed?
|
|
||||||
+ * -- dtor
|
|
||||||
+ */
|
|
||||||
+ device->cooling_dev = NULL;
|
|
||||||
+ return;
|
|
||||||
}
|
|
||||||
+
|
|
||||||
+ dev_info(&device->dev->dev, "registered as cooling_device%d\n",
|
|
||||||
+ device->cooling_dev->id);
|
|
||||||
+ result = sysfs_create_link(&device->dev->dev.kobj,
|
|
||||||
+ &device->cooling_dev->device.kobj,
|
|
||||||
+ "thermal_cooling");
|
|
||||||
+ if (result)
|
|
||||||
+ printk(KERN_ERR PREFIX "Create sysfs link\n");
|
|
||||||
+ result = sysfs_create_link(&device->cooling_dev->device.kobj,
|
|
||||||
+ &device->dev->dev.kobj, "device");
|
|
||||||
+ if (result)
|
|
||||||
+ printk(KERN_ERR PREFIX "Create sysfs link\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
static int acpi_video_bus_register_backlight(struct acpi_video_bus *video)
|
|
||||||
{
|
|
||||||
struct acpi_video_device *dev;
|
|
||||||
|
|
||||||
+ if (!acpi_video_verify_backlight_support())
|
|
||||||
+ return 0;
|
|
||||||
+
|
|
||||||
mutex_lock(&video->device_list_lock);
|
|
||||||
list_for_each_entry(dev, &video->video_device_list, entry)
|
|
||||||
acpi_video_dev_register_backlight(dev);
|
|
||||||
mutex_unlock(&video->device_list_lock);
|
|
||||||
|
|
||||||
+ video->backlight_registered = true;
|
|
||||||
+
|
|
||||||
video->pm_nb.notifier_call = acpi_video_resume;
|
|
||||||
video->pm_nb.priority = 0;
|
|
||||||
return register_pm_notifier(&video->pm_nb);
|
|
||||||
@@ -1767,13 +1769,20 @@ static void acpi_video_dev_unregister_backlight(struct acpi_video_device *device
|
|
||||||
static int acpi_video_bus_unregister_backlight(struct acpi_video_bus *video)
|
|
||||||
{
|
|
||||||
struct acpi_video_device *dev;
|
|
||||||
- int error = unregister_pm_notifier(&video->pm_nb);
|
|
||||||
+ int error;
|
|
||||||
+
|
|
||||||
+ if (!video->backlight_registered)
|
|
||||||
+ return 0;
|
|
||||||
+
|
|
||||||
+ error = unregister_pm_notifier(&video->pm_nb);
|
|
||||||
|
|
||||||
mutex_lock(&video->device_list_lock);
|
|
||||||
list_for_each_entry(dev, &video->video_device_list, entry)
|
|
||||||
acpi_video_dev_unregister_backlight(dev);
|
|
||||||
mutex_unlock(&video->device_list_lock);
|
|
||||||
|
|
||||||
+ video->backlight_registered = false;
|
|
||||||
+
|
|
||||||
return error;
|
|
||||||
}
|
|
||||||
|
|
||||||
--
|
|
||||||
1.9.0
|
|
||||||
|
|
@ -1,130 +0,0 @@
|
|||||||
Bugzilla: 1093171
|
|
||||||
Upstream-status: Queued for 3.16
|
|
||||||
|
|
||||||
From 7f5b3e9378c0adfdb1cf2ffde6c4f890e05517c7 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Hans de Goede <hdegoede@redhat.com>
|
|
||||||
Date: Mon, 2 Jun 2014 17:41:09 +0200
|
|
||||||
Subject: [PATCH 12/14] acpi-video: Unregister the backlight device if a raw
|
|
||||||
one shows up later
|
|
||||||
|
|
||||||
When video.use_native_backlight=1 and non intel gfx are in use, the raw
|
|
||||||
backlight device of the gfx driver will show up after acpi-video has done its
|
|
||||||
acpi_video_verify_backlight_support() check.
|
|
||||||
|
|
||||||
This causes video.use_native_backlight=1 to not have the desired result.
|
|
||||||
|
|
||||||
This patch fixes this by adding a backlight notifier and when a raw
|
|
||||||
backlight is registered or unregistered re-doing the
|
|
||||||
acpi_video_verify_backlight_support() check.
|
|
||||||
|
|
||||||
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
|
|
||||||
---
|
|
||||||
drivers/acpi/video.c | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
||||||
1 file changed, 57 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c
|
|
||||||
index d4d6ea3ac77a..ab7cd65ce21e 100644
|
|
||||||
--- a/drivers/acpi/video.c
|
|
||||||
+++ b/drivers/acpi/video.c
|
|
||||||
@@ -151,6 +151,7 @@ struct acpi_video_enumerated_device {
|
|
||||||
struct acpi_video_bus {
|
|
||||||
struct acpi_device *device;
|
|
||||||
bool backlight_registered;
|
|
||||||
+ bool backlight_notifier_registered;
|
|
||||||
u8 dos_setting;
|
|
||||||
struct acpi_video_enumerated_device *attached_array;
|
|
||||||
u8 attached_count;
|
|
||||||
@@ -162,6 +163,7 @@ struct acpi_video_bus {
|
|
||||||
struct input_dev *input;
|
|
||||||
char phys[32]; /* for input device */
|
|
||||||
struct notifier_block pm_nb;
|
|
||||||
+ struct notifier_block backlight_nb;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct acpi_video_device_flags {
|
|
||||||
@@ -1732,6 +1734,9 @@ static int acpi_video_bus_register_backlight(struct acpi_video_bus *video)
|
|
||||||
{
|
|
||||||
struct acpi_video_device *dev;
|
|
||||||
|
|
||||||
+ if (video->backlight_registered)
|
|
||||||
+ return 0;
|
|
||||||
+
|
|
||||||
if (!acpi_video_verify_backlight_support())
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
@@ -1876,6 +1881,56 @@ static void acpi_video_bus_remove_notify_handler(struct acpi_video_bus *video)
|
|
||||||
video->input = NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
+static int acpi_video_backlight_notify(struct notifier_block *nb,
|
|
||||||
+ unsigned long val, void *bd)
|
|
||||||
+{
|
|
||||||
+ struct backlight_device *backlight = bd;
|
|
||||||
+ struct acpi_video_bus *video;
|
|
||||||
+
|
|
||||||
+ /* acpi_video_verify_backlight_support only cares about raw devices */
|
|
||||||
+ if (backlight->props.type != BACKLIGHT_RAW)
|
|
||||||
+ return NOTIFY_DONE;
|
|
||||||
+
|
|
||||||
+ video = container_of(nb, struct acpi_video_bus, backlight_nb);
|
|
||||||
+
|
|
||||||
+ switch (val) {
|
|
||||||
+ case BACKLIGHT_REGISTERED:
|
|
||||||
+ if (!acpi_video_verify_backlight_support())
|
|
||||||
+ acpi_video_bus_unregister_backlight(video);
|
|
||||||
+ break;
|
|
||||||
+ case BACKLIGHT_UNREGISTERED:
|
|
||||||
+ acpi_video_bus_register_backlight(video);
|
|
||||||
+ break;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ return NOTIFY_OK;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+static int acpi_video_bus_add_backlight_notify_handler(
|
|
||||||
+ struct acpi_video_bus *video)
|
|
||||||
+{
|
|
||||||
+ int error;
|
|
||||||
+
|
|
||||||
+ video->backlight_nb.notifier_call = acpi_video_backlight_notify;
|
|
||||||
+ video->backlight_nb.priority = 0;
|
|
||||||
+ error = backlight_register_notifier(&video->backlight_nb);
|
|
||||||
+ if (error == 0)
|
|
||||||
+ video->backlight_notifier_registered = true;
|
|
||||||
+
|
|
||||||
+ return error;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
+static int acpi_video_bus_remove_backlight_notify_handler(
|
|
||||||
+ struct acpi_video_bus *video)
|
|
||||||
+{
|
|
||||||
+ if (!video->backlight_notifier_registered)
|
|
||||||
+ return 0;
|
|
||||||
+
|
|
||||||
+ video->backlight_notifier_registered = false;
|
|
||||||
+
|
|
||||||
+ return backlight_unregister_notifier(&video->backlight_nb);
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
static int acpi_video_bus_put_devices(struct acpi_video_bus *video)
|
|
||||||
{
|
|
||||||
struct acpi_video_device *dev, *next;
|
|
||||||
@@ -1957,6 +2012,7 @@ static int acpi_video_bus_add(struct acpi_device *device)
|
|
||||||
|
|
||||||
acpi_video_bus_register_backlight(video);
|
|
||||||
acpi_video_bus_add_notify_handler(video);
|
|
||||||
+ acpi_video_bus_add_backlight_notify_handler(video);
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
@@ -1980,6 +2036,7 @@ static int acpi_video_bus_remove(struct acpi_device *device)
|
|
||||||
|
|
||||||
video = acpi_driver_data(device);
|
|
||||||
|
|
||||||
+ acpi_video_bus_remove_backlight_notify_handler(video);
|
|
||||||
acpi_video_bus_remove_notify_handler(video);
|
|
||||||
acpi_video_bus_unregister_backlight(video);
|
|
||||||
acpi_video_bus_put_devices(video);
|
|
||||||
--
|
|
||||||
1.9.0
|
|
||||||
|
|
@ -1,132 +0,0 @@
|
|||||||
Bugzilla: 1093171
|
|
||||||
Upstream-status: Queued for 3.16
|
|
||||||
|
|
||||||
From ee515e61a002b4d571407173ac8bbadadc114cf0 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Hans de Goede <hdegoede@redhat.com>
|
|
||||||
Date: Mon, 2 Jun 2014 17:41:08 +0200
|
|
||||||
Subject: [PATCH 11/14] backlight: Add backlight device (un)registration
|
|
||||||
notification
|
|
||||||
|
|
||||||
Some firmware drivers, ie acpi-video want to get themselves out of the
|
|
||||||
way (in some cases) when their also is a raw backlight device available.
|
|
||||||
|
|
||||||
Due to module loading ordering being unknown, acpi-video cannot be certain
|
|
||||||
that the backlight_device_registered(BACKLIGHT_RAW) it does for this is
|
|
||||||
the final verdict wrt there being a BACKLIGHT_RAW device.
|
|
||||||
|
|
||||||
By adding notification acpi-video can listen for backlight devices showing
|
|
||||||
up after it has loaded, and unregister its backlight device if desired.
|
|
||||||
|
|
||||||
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
|
|
||||||
---
|
|
||||||
drivers/video/backlight/backlight.c | 40 +++++++++++++++++++++++++++++++++++++
|
|
||||||
include/linux/backlight.h | 7 +++++++
|
|
||||||
2 files changed, 47 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/drivers/video/backlight/backlight.c b/drivers/video/backlight/backlight.c
|
|
||||||
index bd2172c2d650..428089009cd5 100644
|
|
||||||
--- a/drivers/video/backlight/backlight.c
|
|
||||||
+++ b/drivers/video/backlight/backlight.c
|
|
||||||
@@ -23,6 +23,7 @@
|
|
||||||
|
|
||||||
static struct list_head backlight_dev_list;
|
|
||||||
static struct mutex backlight_dev_list_mutex;
|
|
||||||
+static struct blocking_notifier_head backlight_notifier;
|
|
||||||
|
|
||||||
static const char *const backlight_types[] = {
|
|
||||||
[BACKLIGHT_RAW] = "raw",
|
|
||||||
@@ -370,6 +371,9 @@ struct backlight_device *backlight_device_register(const char *name,
|
|
||||||
list_add(&new_bd->entry, &backlight_dev_list);
|
|
||||||
mutex_unlock(&backlight_dev_list_mutex);
|
|
||||||
|
|
||||||
+ blocking_notifier_call_chain(&backlight_notifier,
|
|
||||||
+ BACKLIGHT_REGISTERED, new_bd);
|
|
||||||
+
|
|
||||||
return new_bd;
|
|
||||||
}
|
|
||||||
EXPORT_SYMBOL(backlight_device_register);
|
|
||||||
@@ -413,6 +417,10 @@ void backlight_device_unregister(struct backlight_device *bd)
|
|
||||||
pmac_backlight = NULL;
|
|
||||||
mutex_unlock(&pmac_backlight_mutex);
|
|
||||||
#endif
|
|
||||||
+
|
|
||||||
+ blocking_notifier_call_chain(&backlight_notifier,
|
|
||||||
+ BACKLIGHT_UNREGISTERED, bd);
|
|
||||||
+
|
|
||||||
mutex_lock(&bd->ops_lock);
|
|
||||||
bd->ops = NULL;
|
|
||||||
mutex_unlock(&bd->ops_lock);
|
|
||||||
@@ -438,6 +446,36 @@ static int devm_backlight_device_match(struct device *dev, void *res,
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
+ * backlight_register_notifier - get notified of backlight (un)registration
|
|
||||||
+ * @nb: notifier block with the notifier to call on backlight (un)registration
|
|
||||||
+ *
|
|
||||||
+ * @return 0 on success, otherwise a negative error code
|
|
||||||
+ *
|
|
||||||
+ * Register a notifier to get notified when backlight devices get registered
|
|
||||||
+ * or unregistered.
|
|
||||||
+ */
|
|
||||||
+int backlight_register_notifier(struct notifier_block *nb)
|
|
||||||
+{
|
|
||||||
+ return blocking_notifier_chain_register(&backlight_notifier, nb);
|
|
||||||
+}
|
|
||||||
+EXPORT_SYMBOL(backlight_register_notifier);
|
|
||||||
+
|
|
||||||
+/**
|
|
||||||
+ * backlight_unregister_notifier - unregister a backlight notifier
|
|
||||||
+ * @nb: notifier block to unregister
|
|
||||||
+ *
|
|
||||||
+ * @return 0 on success, otherwise a negative error code
|
|
||||||
+ *
|
|
||||||
+ * Register a notifier to get notified when backlight devices get registered
|
|
||||||
+ * or unregistered.
|
|
||||||
+ */
|
|
||||||
+int backlight_unregister_notifier(struct notifier_block *nb)
|
|
||||||
+{
|
|
||||||
+ return blocking_notifier_chain_unregister(&backlight_notifier, nb);
|
|
||||||
+}
|
|
||||||
+EXPORT_SYMBOL(backlight_unregister_notifier);
|
|
||||||
+
|
|
||||||
+/**
|
|
||||||
* devm_backlight_device_register - resource managed backlight_device_register()
|
|
||||||
* @dev: the device to register
|
|
||||||
* @name: the name of the device
|
|
||||||
@@ -544,6 +582,8 @@ static int __init backlight_class_init(void)
|
|
||||||
backlight_class->pm = &backlight_class_dev_pm_ops;
|
|
||||||
INIT_LIST_HEAD(&backlight_dev_list);
|
|
||||||
mutex_init(&backlight_dev_list_mutex);
|
|
||||||
+ BLOCKING_INIT_NOTIFIER_HEAD(&backlight_notifier);
|
|
||||||
+
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
diff --git a/include/linux/backlight.h b/include/linux/backlight.h
|
|
||||||
index 72647429adf6..adb14a8616df 100644
|
|
||||||
--- a/include/linux/backlight.h
|
|
||||||
+++ b/include/linux/backlight.h
|
|
||||||
@@ -40,6 +40,11 @@ enum backlight_type {
|
|
||||||
BACKLIGHT_TYPE_MAX,
|
|
||||||
};
|
|
||||||
|
|
||||||
+enum backlight_notification {
|
|
||||||
+ BACKLIGHT_REGISTERED,
|
|
||||||
+ BACKLIGHT_UNREGISTERED,
|
|
||||||
+};
|
|
||||||
+
|
|
||||||
struct backlight_device;
|
|
||||||
struct fb_info;
|
|
||||||
|
|
||||||
@@ -133,6 +138,8 @@ extern void devm_backlight_device_unregister(struct device *dev,
|
|
||||||
extern void backlight_force_update(struct backlight_device *bd,
|
|
||||||
enum backlight_update_reason reason);
|
|
||||||
extern bool backlight_device_registered(enum backlight_type type);
|
|
||||||
+extern int backlight_register_notifier(struct notifier_block *nb);
|
|
||||||
+extern int backlight_unregister_notifier(struct notifier_block *nb);
|
|
||||||
|
|
||||||
#define to_backlight_device(obj) container_of(obj, struct backlight_device, dev)
|
|
||||||
|
|
||||||
--
|
|
||||||
1.9.0
|
|
||||||
|
|
@ -56,11 +56,16 @@ CONFIG_FB_ARMCLCD=y
|
|||||||
# ARM VExpress
|
# ARM VExpress
|
||||||
CONFIG_ARCH_VEXPRESS=y
|
CONFIG_ARCH_VEXPRESS=y
|
||||||
CONFIG_VEXPRESS_CONFIG=y
|
CONFIG_VEXPRESS_CONFIG=y
|
||||||
|
CONFIG_MFD_VEXPRESS_SYSREG=y
|
||||||
|
CONFIG_VEXPRESS_SYSCFG=y
|
||||||
CONFIG_COMMON_CLK_VERSATILE=y
|
CONFIG_COMMON_CLK_VERSATILE=y
|
||||||
|
CONFIG_CLK_SP810=y
|
||||||
|
CONFIG_CLK_VEXPRESS_OSC=y
|
||||||
CONFIG_I2C_VERSATILE=m
|
CONFIG_I2C_VERSATILE=m
|
||||||
CONFIG_POWER_RESET_VEXPRESS=y
|
CONFIG_POWER_RESET_VEXPRESS=y
|
||||||
CONFIG_REGULATOR_VEXPRESS=m
|
CONFIG_REGULATOR_VEXPRESS=m
|
||||||
CONFIG_SENSORS_VEXPRESS=m
|
CONFIG_SENSORS_VEXPRESS=m
|
||||||
|
CONFIG_CLKSRC_VERSATILE=y
|
||||||
|
|
||||||
# Device tree
|
# Device tree
|
||||||
CONFIG_DTC=y
|
CONFIG_DTC=y
|
||||||
@ -181,6 +186,7 @@ CONFIG_CMA_AREAS=7
|
|||||||
# CONFIG_ARM_PTDUMP is not set
|
# CONFIG_ARM_PTDUMP is not set
|
||||||
|
|
||||||
# CONFIG_PATA_PLATFORM is not set
|
# CONFIG_PATA_PLATFORM is not set
|
||||||
|
# CONFIG_USB_ULPI is not set
|
||||||
|
|
||||||
### turn off things which make no sense on embedded SoC
|
### turn off things which make no sense on embedded SoC
|
||||||
|
|
||||||
@ -234,6 +240,7 @@ CONFIG_CMA_AREAS=7
|
|||||||
|
|
||||||
# serial
|
# serial
|
||||||
# CONFIG_SERIAL_SH_SCI is not set
|
# CONFIG_SERIAL_SH_SCI is not set
|
||||||
|
# CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set
|
||||||
|
|
||||||
# drm
|
# drm
|
||||||
# CONFIG_DRM_VMWGFX is not set
|
# CONFIG_DRM_VMWGFX is not set
|
||||||
|
18
config-arm64
18
config-arm64
@ -87,3 +87,21 @@ CONFIG_COMMON_CLK_XGENE=y
|
|||||||
|
|
||||||
CONFIG_AHCI_XGENE=m
|
CONFIG_AHCI_XGENE=m
|
||||||
CONFIG_PHY_XGENE=m
|
CONFIG_PHY_XGENE=m
|
||||||
|
CONFIG_RTC_DRV_XGENE=m
|
||||||
|
|
||||||
|
CONFIG_EFI=y
|
||||||
|
CONFIG_EFI_VARS=y
|
||||||
|
CONFIG_EFIVAR_FS=y
|
||||||
|
CONFIG_EFI_VARS_PSTORE=y
|
||||||
|
CONFIG_EFI_VARS_PSTORE_DEFAULT_DISABLE=y
|
||||||
|
|
||||||
|
CONFIG_ARM64_CRYPTO=y
|
||||||
|
CONFIG_CRYPTO_SHA1_ARM64_CE=m
|
||||||
|
CONFIG_CRYPTO_SHA2_ARM64_CE=m
|
||||||
|
CONFIG_CRYPTO_GHASH_ARM64_CE=m
|
||||||
|
CONFIG_CRYPTO_AES_ARM64_CE=m
|
||||||
|
CONFIG_CRYPTO_AES_ARM64_CE_CCM=m
|
||||||
|
CONFIG_CRYPTO_AES_ARM64_CE_BLK=m
|
||||||
|
CONFIG_CRYPTO_AES_ARM64_NEON_BLK=m
|
||||||
|
|
||||||
|
# CONFIG_ARM_BIG_LITTLE_CPUFREQ is not set
|
||||||
|
@ -38,6 +38,7 @@ CONFIG_MV643XX_ETH=m
|
|||||||
CONFIG_PINCTRL_MVEBU=y
|
CONFIG_PINCTRL_MVEBU=y
|
||||||
CONFIG_PINCTRL_ARMADA_370=y
|
CONFIG_PINCTRL_ARMADA_370=y
|
||||||
CONFIG_PINCTRL_ARMADA_XP=y
|
CONFIG_PINCTRL_ARMADA_XP=y
|
||||||
|
# CONFIG_ARM_ARMADA_370_XP_CPUIDLE is not set
|
||||||
CONFIG_PINCTRL_DOVE=y
|
CONFIG_PINCTRL_DOVE=y
|
||||||
CONFIG_EDAC_MV64X60=m
|
CONFIG_EDAC_MV64X60=m
|
||||||
CONFIG_RTC_DRV_S35390A=m
|
CONFIG_RTC_DRV_S35390A=m
|
||||||
@ -53,6 +54,7 @@ CONFIG_MMC_SDHCI_DOVE=m
|
|||||||
CONFIG_SPI_ORION=m
|
CONFIG_SPI_ORION=m
|
||||||
CONFIG_USB_MV_UDC=m
|
CONFIG_USB_MV_UDC=m
|
||||||
CONFIG_MVEBU_MBUS=y
|
CONFIG_MVEBU_MBUS=y
|
||||||
|
CONFIG_USB_XHCI_MVEBU=m
|
||||||
CONFIG_PHY_MVEBU_SATA=y
|
CONFIG_PHY_MVEBU_SATA=y
|
||||||
CONFIG_ARMADA_THERMAL=m
|
CONFIG_ARMADA_THERMAL=m
|
||||||
CONFIG_DOVE_THERMAL=m
|
CONFIG_DOVE_THERMAL=m
|
||||||
@ -165,6 +167,7 @@ CONFIG_PINCTRL_PALMAS=y
|
|||||||
CONFIG_REGULATOR_PALMAS=y
|
CONFIG_REGULATOR_PALMAS=y
|
||||||
CONFIG_REGULATOR_PBIAS=m
|
CONFIG_REGULATOR_PBIAS=m
|
||||||
CONFIG_RTC_DRV_PALMAS=m
|
CONFIG_RTC_DRV_PALMAS=m
|
||||||
|
CONFIG_OMAP5_DSS_HDMI=y
|
||||||
|
|
||||||
CONFIG_WL_TI=y
|
CONFIG_WL_TI=y
|
||||||
CONFIG_WLCORE_SDIO=m
|
CONFIG_WLCORE_SDIO=m
|
||||||
@ -351,6 +354,7 @@ CONFIG_SOC_IMX50=y
|
|||||||
CONFIG_SOC_IMX53=y
|
CONFIG_SOC_IMX53=y
|
||||||
CONFIG_SOC_IMX6Q=y
|
CONFIG_SOC_IMX6Q=y
|
||||||
CONFIG_SOC_IMX6SL=y
|
CONFIG_SOC_IMX6SL=y
|
||||||
|
# CONFIG_SOC_IMX6SX is not set
|
||||||
# CONFIG_SOC_VF610 is not set
|
# CONFIG_SOC_VF610 is not set
|
||||||
CONFIG_MACH_IMX51_DT=y
|
CONFIG_MACH_IMX51_DT=y
|
||||||
# CONFIG_MACH_MX51_BABBAGE is not set
|
# CONFIG_MACH_MX51_BABBAGE is not set
|
||||||
@ -564,6 +568,7 @@ CONFIG_SND_SOC_TEGRA20_DAS=m
|
|||||||
CONFIG_SND_SOC_TEGRA20_SPDIF=m
|
CONFIG_SND_SOC_TEGRA20_SPDIF=m
|
||||||
CONFIG_SND_SOC_TEGRA30_AHUB=m
|
CONFIG_SND_SOC_TEGRA30_AHUB=m
|
||||||
CONFIG_SND_SOC_TEGRA30_I2S=m
|
CONFIG_SND_SOC_TEGRA30_I2S=m
|
||||||
|
CONFIG_SND_HDA_TEGRA=m
|
||||||
|
|
||||||
# AC100 (PAZ00)
|
# AC100 (PAZ00)
|
||||||
CONFIG_MFD_NVEC=y
|
CONFIG_MFD_NVEC=y
|
||||||
|
@ -67,6 +67,7 @@ CONFIG_ARCH_VEXPRESS_CORTEX_A5_A9_ERRATA=y
|
|||||||
# CONFIG_ARCH_HI3xxx is not set
|
# CONFIG_ARCH_HI3xxx is not set
|
||||||
# CONFIG_ARCH_MSM_DT is not set
|
# CONFIG_ARCH_MSM_DT is not set
|
||||||
# CONFIG_ARCH_QCOM is not set
|
# CONFIG_ARCH_QCOM is not set
|
||||||
|
# CONFIG_ARCH_EXYNOS is not set
|
||||||
|
|
||||||
# errata
|
# errata
|
||||||
# v5/v6
|
# v5/v6
|
||||||
@ -127,6 +128,9 @@ CONFIG_IP_PNP=y
|
|||||||
CONFIG_IP_PNP_DHCP=y
|
CONFIG_IP_PNP_DHCP=y
|
||||||
CONFIG_IP_PNP_BOOTP=y
|
CONFIG_IP_PNP_BOOTP=y
|
||||||
|
|
||||||
|
# CONFIG_PCI_HOST_GENERIC is not set
|
||||||
|
# CONFIG_BRCMSTB_GISB_ARB is not set
|
||||||
|
|
||||||
# Root as NFS, different from mainline
|
# Root as NFS, different from mainline
|
||||||
CONFIG_ROOT_NFS=y
|
CONFIG_ROOT_NFS=y
|
||||||
|
|
||||||
@ -162,6 +166,10 @@ CONFIG_ARM_HIGHBANK_CPUFREQ=m
|
|||||||
# CONFIG_ARM_HIGHBANK_CPUIDLE is not set
|
# CONFIG_ARM_HIGHBANK_CPUIDLE is not set
|
||||||
|
|
||||||
# Allwinner
|
# Allwinner
|
||||||
|
CONFIG_MACH_SUN4I=y
|
||||||
|
CONFIG_MACH_SUN5I=y
|
||||||
|
CONFIG_MACH_SUN6I=y
|
||||||
|
CONFIG_MACH_SUN7I=y
|
||||||
CONFIG_PINCTRL_SUNXI=y
|
CONFIG_PINCTRL_SUNXI=y
|
||||||
CONFIG_SUNXI_WATCHDOG=m
|
CONFIG_SUNXI_WATCHDOG=m
|
||||||
CONFIG_MDIO_SUN4I=m
|
CONFIG_MDIO_SUN4I=m
|
||||||
@ -178,6 +186,7 @@ CONFIG_SPI_SUN4I=m
|
|||||||
CONFIG_SPI_SUN6I=m
|
CONFIG_SPI_SUN6I=m
|
||||||
CONFIG_MMC_SUNXI=m
|
CONFIG_MMC_SUNXI=m
|
||||||
CONFIG_GPIO_PCA953X=m
|
CONFIG_GPIO_PCA953X=m
|
||||||
|
CONFIG_POWER_RESET_SUN6I=y
|
||||||
|
|
||||||
CONFIG_REGMAP=y
|
CONFIG_REGMAP=y
|
||||||
CONFIG_REGMAP_I2C=m
|
CONFIG_REGMAP_I2C=m
|
||||||
@ -271,6 +280,7 @@ CONFIG_MFD_TPS65912_SPI=y
|
|||||||
# CONFIG_MFD_WM831X_SPI is not set
|
# CONFIG_MFD_WM831X_SPI is not set
|
||||||
# CONFIG_MFD_MC13XXX_SPI is not set
|
# CONFIG_MFD_MC13XXX_SPI is not set
|
||||||
# CONFIG_MFD_PM8921_CORE is not set
|
# CONFIG_MFD_PM8921_CORE is not set
|
||||||
|
# CONFIG_MFD_AXP20X is not set
|
||||||
|
|
||||||
# Pin stuff
|
# Pin stuff
|
||||||
CONFIG_PINMUX=y
|
CONFIG_PINMUX=y
|
||||||
@ -283,6 +293,8 @@ CONFIG_GENERIC_PINCONF=y
|
|||||||
# CONFIG_PINCTRL_CAPRI is not set
|
# CONFIG_PINCTRL_CAPRI is not set
|
||||||
# CONFIG_PINCTRL_MSM8X74 is not set
|
# CONFIG_PINCTRL_MSM8X74 is not set
|
||||||
# CONFIG_PINCTRL_BCM281XX is not set
|
# CONFIG_PINCTRL_BCM281XX is not set
|
||||||
|
# CONFIG_PINCTRL_APQ8064 is not set
|
||||||
|
# CONFIG_PINCTRL_IPQ8064 is not set
|
||||||
|
|
||||||
# GPIO
|
# GPIO
|
||||||
# CONFIG_GPIO_EM is not set
|
# CONFIG_GPIO_EM is not set
|
||||||
@ -325,6 +337,7 @@ CONFIG_SPI_TLE62X0=m
|
|||||||
CONFIG_SPI_XCOMM=m
|
CONFIG_SPI_XCOMM=m
|
||||||
CONFIG_SPI_XILINX=m
|
CONFIG_SPI_XILINX=m
|
||||||
# CONFIG_SPI_FSL_SPI is not set
|
# CONFIG_SPI_FSL_SPI is not set
|
||||||
|
# CONFIG_SPI_CADENCE is not set
|
||||||
|
|
||||||
CONFIG_NFC_NCI_SPI=y
|
CONFIG_NFC_NCI_SPI=y
|
||||||
|
|
||||||
@ -332,6 +345,7 @@ CONFIG_NFC_NCI_SPI=y
|
|||||||
CONFIG_I2C_DESIGNWARE_CORE=m
|
CONFIG_I2C_DESIGNWARE_CORE=m
|
||||||
CONFIG_I2C_DESIGNWARE_PLATFORM=m
|
CONFIG_I2C_DESIGNWARE_PLATFORM=m
|
||||||
CONFIG_I2C_MV64XXX=m
|
CONFIG_I2C_MV64XXX=m
|
||||||
|
# CONFIG_I2C_CROS_EC_TUNNEL is not set
|
||||||
|
|
||||||
# HW crypto and rng
|
# HW crypto and rng
|
||||||
CONFIG_CRYPTO_SHA1_ARM=m
|
CONFIG_CRYPTO_SHA1_ARM=m
|
||||||
@ -397,7 +411,11 @@ CONFIG_SPI_DW_PCI=m
|
|||||||
# CONFIG_MMC_DW_EXYNOS is not set
|
# CONFIG_MMC_DW_EXYNOS is not set
|
||||||
# CONFIG_MMC_DW_IDMAC is not set
|
# CONFIG_MMC_DW_IDMAC is not set
|
||||||
# CONFIG_MMC_DW_K3 is not set
|
# CONFIG_MMC_DW_K3 is not set
|
||||||
CONFIG_USB_DWC2=m
|
CONFIG_USB_DWC2=y
|
||||||
|
CONFIG_USB_DWC2_HOST=m
|
||||||
|
CONFIG_USB_DWC2_PLATFORM=y
|
||||||
|
CONFIG_USB_DWC2_PCI=y
|
||||||
|
# CONFIG_USB_DWC2_PERIPHERAL is not set
|
||||||
# CONFIG_USB_DWC2_DEBUG is not set
|
# CONFIG_USB_DWC2_DEBUG is not set
|
||||||
# CONFIG_USB_DWC2_TRACK_MISSED_SOFS is not set
|
# CONFIG_USB_DWC2_TRACK_MISSED_SOFS is not set
|
||||||
CONFIG_USB_DWC3=m
|
CONFIG_USB_DWC3=m
|
||||||
@ -460,6 +478,14 @@ CONFIG_SND_SOC_GENERIC_DMAENGINE_PCM=y
|
|||||||
# CONFIG_SND_SOC_WM8903 is not set
|
# CONFIG_SND_SOC_WM8903 is not set
|
||||||
# CONFIG_SND_SOC_WM8962 is not set
|
# CONFIG_SND_SOC_WM8962 is not set
|
||||||
# CONFIG_SND_SOC_TPA6130A2 is not set
|
# CONFIG_SND_SOC_TPA6130A2 is not set
|
||||||
|
# CONFIG_SND_SOC_FSL_SAI is not set
|
||||||
|
# CONFIG_SND_SOC_FSL_SSI is not set
|
||||||
|
# CONFIG_SND_SOC_FSL_SPDIF is not set
|
||||||
|
# CONFIG_SND_SOC_FSL_ESAI is not set
|
||||||
|
# CONFIG_SND_SOC_IMX_AUDMUX is not set
|
||||||
|
# CONFIG_SND_SOC_ALC5623 is not set
|
||||||
|
# CONFIG_SND_SOC_CS42L56 is not set
|
||||||
|
# CONFIG_SND_SOC_STA350 is not set
|
||||||
# CONFIG_SND_ATMEL_SOC is not set
|
# CONFIG_SND_ATMEL_SOC is not set
|
||||||
|
|
||||||
# Displays
|
# Displays
|
||||||
@ -479,6 +505,9 @@ CONFIG_RTC_DRV_RX4581=m
|
|||||||
CONFIG_RTC_DRV_TPS65910=m
|
CONFIG_RTC_DRV_TPS65910=m
|
||||||
CONFIG_RTC_DRV_TPS80031=m
|
CONFIG_RTC_DRV_TPS80031=m
|
||||||
# CONFIG_RTC_DRV_DS1347 is not set
|
# CONFIG_RTC_DRV_DS1347 is not set
|
||||||
|
# CONFIG_RTC_DRV_DS1343 is not set
|
||||||
|
# CONFIG_RTC_DRV_MCP795 is not set
|
||||||
|
# CONFIG_RTC_DRV_XGENE is not set
|
||||||
|
|
||||||
# Regulators
|
# Regulators
|
||||||
CONFIG_REGULATOR=y
|
CONFIG_REGULATOR=y
|
||||||
@ -514,6 +543,8 @@ CONFIG_REGULATOR_TPS6586X=m
|
|||||||
CONFIG_REGULATOR_TPS65910=m
|
CONFIG_REGULATOR_TPS65910=m
|
||||||
CONFIG_REGULATOR_TPS65912=m
|
CONFIG_REGULATOR_TPS65912=m
|
||||||
CONFIG_REGULATOR_TPS80031=m
|
CONFIG_REGULATOR_TPS80031=m
|
||||||
|
CONFIG_REGULATOR_LTC3589=m
|
||||||
|
CONFIG_REGULATOR_ANATOP=m
|
||||||
|
|
||||||
CONFIG_CHARGER_MANAGER=y
|
CONFIG_CHARGER_MANAGER=y
|
||||||
CONFIG_CHARGER_BQ2415X=m
|
CONFIG_CHARGER_BQ2415X=m
|
||||||
@ -621,6 +652,7 @@ CONFIG_BPF_JIT=y
|
|||||||
# CONFIG_DRM_TILCDC is not set
|
# CONFIG_DRM_TILCDC is not set
|
||||||
# CONFIG_DRM_IMX is not set
|
# CONFIG_DRM_IMX is not set
|
||||||
# CONFIG_AHCI_IMX is not set
|
# CONFIG_AHCI_IMX is not set
|
||||||
|
# CONFIG_IMX_THERMAL is not set
|
||||||
# CONFIG_CS89x0 is not set
|
# CONFIG_CS89x0 is not set
|
||||||
# CONFIG_DM9000 is not set
|
# CONFIG_DM9000 is not set
|
||||||
# CONFIG_HW_RANDOM_ATMEL is not set
|
# CONFIG_HW_RANDOM_ATMEL is not set
|
||||||
|
@ -15,6 +15,7 @@ CONFIG_ARCH_VIRT=y
|
|||||||
# CONFIG_ARCH_SOCFPGA is not set
|
# CONFIG_ARCH_SOCFPGA is not set
|
||||||
# CONFIG_ARCH_TEGRA is not set
|
# CONFIG_ARCH_TEGRA is not set
|
||||||
# CONFIG_ARCH_ZYNQ is not set
|
# CONFIG_ARCH_ZYNQ is not set
|
||||||
|
# CONFIG_ARCH_AXXIA is not set
|
||||||
|
|
||||||
CONFIG_ARM_LPAE=y
|
CONFIG_ARM_LPAE=y
|
||||||
CONFIG_SYS_SUPPORTS_HUGETLBFS=y
|
CONFIG_SYS_SUPPORTS_HUGETLBFS=y
|
||||||
@ -114,6 +115,7 @@ CONFIG_USB_DWC3_KEYSTONE=m
|
|||||||
CONFIG_GPIO_DAVINCI=y
|
CONFIG_GPIO_DAVINCI=y
|
||||||
CONFIG_I2C_DAVINCI=m
|
CONFIG_I2C_DAVINCI=m
|
||||||
CONFIG_TI_AEMIF=m
|
CONFIG_TI_AEMIF=m
|
||||||
|
CONFIG_POWER_RESET_KEYSTONE=y
|
||||||
# CONFIG_DAVINCI_WATCHDOG is not set
|
# CONFIG_DAVINCI_WATCHDOG is not set
|
||||||
# CONFIG_SPI_DAVINCI is not set
|
# CONFIG_SPI_DAVINCI is not set
|
||||||
# CONFIG_SND_DAVINCI_SOC is not set
|
# CONFIG_SND_DAVINCI_SOC is not set
|
||||||
|
@ -35,6 +35,7 @@ CONFIG_ACPI_DEBUG=y
|
|||||||
# CONFIG_ACPI_DEBUG_FUNC_TRACE is not set
|
# CONFIG_ACPI_DEBUG_FUNC_TRACE is not set
|
||||||
|
|
||||||
CONFIG_DEBUG_SG=y
|
CONFIG_DEBUG_SG=y
|
||||||
|
CONFIG_DEBUG_PI_LIST=y
|
||||||
|
|
||||||
# CONFIG_DEBUG_PAGEALLOC is not set
|
# CONFIG_DEBUG_PAGEALLOC is not set
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@ CONFIG_DEFAULT_HOSTNAME="(none)"
|
|||||||
#
|
#
|
||||||
CONFIG_EXPERIMENTAL=y
|
CONFIG_EXPERIMENTAL=y
|
||||||
CONFIG_HOTPLUG=y
|
CONFIG_HOTPLUG=y
|
||||||
CONFIG_UEVENT_HELPER_PATH=""
|
# CONFIG_UEVENT_HELPER is not set
|
||||||
CONFIG_DEVTMPFS=y
|
CONFIG_DEVTMPFS=y
|
||||||
CONFIG_DEVTMPFS_MOUNT=y
|
CONFIG_DEVTMPFS_MOUNT=y
|
||||||
CONFIG_STANDALONE=y
|
CONFIG_STANDALONE=y
|
||||||
@ -1687,13 +1687,13 @@ CONFIG_B43_SDIO=y
|
|||||||
CONFIG_B43_BCMA=y
|
CONFIG_B43_BCMA=y
|
||||||
# CONFIG_B43_BCMA_EXTRA is not set
|
# CONFIG_B43_BCMA_EXTRA is not set
|
||||||
CONFIG_B43_BCMA_PIO=y
|
CONFIG_B43_BCMA_PIO=y
|
||||||
# CONFIG_B43_DEBUG is not set
|
CONFIG_B43_DEBUG=y
|
||||||
CONFIG_B43_PHY_LP=y
|
CONFIG_B43_PHY_LP=y
|
||||||
CONFIG_B43_PHY_N=y
|
CONFIG_B43_PHY_N=y
|
||||||
CONFIG_B43_PHY_HT=y
|
CONFIG_B43_PHY_HT=y
|
||||||
# CONFIG_B43_FORCE_PIO is not set
|
# CONFIG_B43_FORCE_PIO is not set
|
||||||
CONFIG_B43LEGACY=m
|
CONFIG_B43LEGACY=m
|
||||||
# CONFIG_B43LEGACY_DEBUG is not set
|
CONFIG_B43LEGACY_DEBUG=y
|
||||||
CONFIG_B43LEGACY_DMA=y
|
CONFIG_B43LEGACY_DMA=y
|
||||||
CONFIG_B43LEGACY_PIO=y
|
CONFIG_B43LEGACY_PIO=y
|
||||||
CONFIG_B43LEGACY_DMA_AND_PIO_MODE=y
|
CONFIG_B43LEGACY_DMA_AND_PIO_MODE=y
|
||||||
@ -2332,6 +2332,7 @@ CONFIG_CYCLADES=m
|
|||||||
# CONFIG_RIO is not set
|
# CONFIG_RIO is not set
|
||||||
CONFIG_SERIAL_JSM=m
|
CONFIG_SERIAL_JSM=m
|
||||||
# CONFIG_SERIAL_SCCNXP is not set
|
# CONFIG_SERIAL_SCCNXP is not set
|
||||||
|
# CONFIG_SERIAL_SC16IS7XX is not set
|
||||||
# CONFIG_SERIAL_MFD_HSU is not set
|
# CONFIG_SERIAL_MFD_HSU is not set
|
||||||
|
|
||||||
# CONFIG_SERIAL_ALTERA_JTAGUART is not set
|
# CONFIG_SERIAL_ALTERA_JTAGUART is not set
|
||||||
@ -2500,6 +2501,7 @@ CONFIG_SENSORS_MAX6650=m
|
|||||||
CONFIG_SENSORS_MAX6697=m
|
CONFIG_SENSORS_MAX6697=m
|
||||||
CONFIG_SENSORS_MCP3021=m
|
CONFIG_SENSORS_MCP3021=m
|
||||||
CONFIG_SENSORS_NCT6775=m
|
CONFIG_SENSORS_NCT6775=m
|
||||||
|
CONFIG_SENSORS_NCT6683=m
|
||||||
CONFIG_SENSORS_NTC_THERMISTOR=m
|
CONFIG_SENSORS_NTC_THERMISTOR=m
|
||||||
CONFIG_SENSORS_PC87360=m
|
CONFIG_SENSORS_PC87360=m
|
||||||
CONFIG_SENSORS_PC87427=m
|
CONFIG_SENSORS_PC87427=m
|
||||||
@ -2619,15 +2621,18 @@ CONFIG_IIO_ST_GYRO_3AXIS=m
|
|||||||
CONFIG_IIO_ST_MAGN_3AXIS=m
|
CONFIG_IIO_ST_MAGN_3AXIS=m
|
||||||
CONFIG_IIO_ST_ACCEL_3AXIS=m
|
CONFIG_IIO_ST_ACCEL_3AXIS=m
|
||||||
CONFIG_HID_SENSOR_INCLINOMETER_3D=m
|
CONFIG_HID_SENSOR_INCLINOMETER_3D=m
|
||||||
|
CONFIG_HID_SENSOR_DEVICE_ROTATION=m
|
||||||
# CONFIG_ADJD_S311 is not set
|
# CONFIG_ADJD_S311 is not set
|
||||||
# CONFIG_SENSORS_TSL2563 is not set
|
# CONFIG_SENSORS_TSL2563 is not set
|
||||||
# CONFIG_VCNL4000 is not set
|
# CONFIG_VCNL4000 is not set
|
||||||
# CONFIG_AK8975 is not set
|
# CONFIG_AK8975 is not set
|
||||||
# CONFIG_MAG3110 is not set
|
# CONFIG_MAG3110 is not set
|
||||||
# CONFIG_TMP006 is not set
|
# CONFIG_TMP006 is not set
|
||||||
|
# CONFIG_MLX90614 is not set
|
||||||
# CONFIG_HID_SENSOR_PRESS is not set
|
# CONFIG_HID_SENSOR_PRESS is not set
|
||||||
# CONFIG_IIO_ST_PRESS is not set
|
# CONFIG_IIO_ST_PRESS is not set
|
||||||
# CONFIG_KXSD9 is not set
|
# CONFIG_KXSD9 is not set
|
||||||
|
# CONFIG_MMA8452 is not set
|
||||||
# CONFIG_AD7266 is not set
|
# CONFIG_AD7266 is not set
|
||||||
# CONFIG_AD7298 is not set
|
# CONFIG_AD7298 is not set
|
||||||
# CONFIG_AD7476 is not set
|
# CONFIG_AD7476 is not set
|
||||||
@ -2659,7 +2664,9 @@ CONFIG_HID_SENSOR_INCLINOMETER_3D=m
|
|||||||
# CONFIG_ADIS16480 is not set
|
# CONFIG_ADIS16480 is not set
|
||||||
# CONFIG_DHT11 is not set
|
# CONFIG_DHT11 is not set
|
||||||
# CONFIG_MPL3115 is not set
|
# CONFIG_MPL3115 is not set
|
||||||
|
# CONFIG_MPL115 is not set
|
||||||
# CONFIG_SI7005 is not set
|
# CONFIG_SI7005 is not set
|
||||||
|
# CONFIG_AS3935 is not set
|
||||||
|
|
||||||
# staging IIO drivers
|
# staging IIO drivers
|
||||||
# CONFIG_AD7291 is not set
|
# CONFIG_AD7291 is not set
|
||||||
@ -2857,6 +2864,7 @@ CONFIG_RTC_DRV_ISL12022=m
|
|||||||
# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
|
# CONFIG_RTC_DRV_HID_SENSOR_TIME is not set
|
||||||
# CONFIG_RTC_DRV_MOXART is not set
|
# CONFIG_RTC_DRV_MOXART is not set
|
||||||
# CONFIG_RTC_DRV_ISL12057 is not set
|
# CONFIG_RTC_DRV_ISL12057 is not set
|
||||||
|
# CONFIG_RTC_DRV_XGENE is not set
|
||||||
|
|
||||||
CONFIG_R3964=m
|
CONFIG_R3964=m
|
||||||
# CONFIG_APPLICOM is not set
|
# CONFIG_APPLICOM is not set
|
||||||
@ -3449,6 +3457,7 @@ CONFIG_SND_USB_US122L=m
|
|||||||
CONFIG_SND_USB_UA101=m
|
CONFIG_SND_USB_UA101=m
|
||||||
CONFIG_SND_USB_6FIRE=m
|
CONFIG_SND_USB_6FIRE=m
|
||||||
CONFIG_SND_USB_HIFACE=m
|
CONFIG_SND_USB_HIFACE=m
|
||||||
|
# CONFIG_SND_BCD2000 is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# PCMCIA devices
|
# PCMCIA devices
|
||||||
@ -3460,6 +3469,8 @@ CONFIG_SND_FIREWIRE_SPEAKERS=m
|
|||||||
CONFIG_SND_ISIGHT=m
|
CONFIG_SND_ISIGHT=m
|
||||||
CONFIG_SND_SCS1X=m
|
CONFIG_SND_SCS1X=m
|
||||||
CONFIG_SND_DICE=m
|
CONFIG_SND_DICE=m
|
||||||
|
# CONFIG_SND_FIREWORKS is not set
|
||||||
|
# CONFIG_SND_BEBOB is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# Open Sound System
|
# Open Sound System
|
||||||
@ -3514,6 +3525,7 @@ CONFIG_USB_SL811_HCD_ISO=y
|
|||||||
# CONFIG_USB_R8A66597_HCD is not set
|
# CONFIG_USB_R8A66597_HCD is not set
|
||||||
CONFIG_USB_XHCI_HCD=y
|
CONFIG_USB_XHCI_HCD=y
|
||||||
# CONFIG_USB_XHCI_HCD_DEBUGGING is not set
|
# CONFIG_USB_XHCI_HCD_DEBUGGING is not set
|
||||||
|
# CONFIG_USB_MAX3421_HCD is not set
|
||||||
|
|
||||||
#
|
#
|
||||||
# USB Device Class drivers
|
# USB Device Class drivers
|
||||||
@ -3660,6 +3672,7 @@ CONFIG_USB_GSPCA_MR97310A=m
|
|||||||
CONFIG_USB_GSPCA_BENQ=m
|
CONFIG_USB_GSPCA_BENQ=m
|
||||||
CONFIG_USB_GSPCA_CONEX=m
|
CONFIG_USB_GSPCA_CONEX=m
|
||||||
CONFIG_USB_GSPCA_CPIA1=m
|
CONFIG_USB_GSPCA_CPIA1=m
|
||||||
|
CONFIG_USB_GSPCA_DTCS033=m
|
||||||
CONFIG_USB_GSPCA_ETOMS=m
|
CONFIG_USB_GSPCA_ETOMS=m
|
||||||
CONFIG_USB_GSPCA_FINEPIX=m
|
CONFIG_USB_GSPCA_FINEPIX=m
|
||||||
CONFIG_USB_GSPCA_MARS=m
|
CONFIG_USB_GSPCA_MARS=m
|
||||||
@ -4351,6 +4364,7 @@ CONFIG_DEBUG_NX_TEST=m
|
|||||||
CONFIG_DEBUG_SET_MODULE_RONX=y
|
CONFIG_DEBUG_SET_MODULE_RONX=y
|
||||||
CONFIG_DEBUG_BOOT_PARAMS=y
|
CONFIG_DEBUG_BOOT_PARAMS=y
|
||||||
CONFIG_DEBUG_VM=y
|
CONFIG_DEBUG_VM=y
|
||||||
|
# CONFIG_DEBUG_VM_VMACACHE is not set
|
||||||
# CONFIG_DEBUG_VM_RB is not set # revisit this if performance isn't horrible
|
# CONFIG_DEBUG_VM_RB is not set # revisit this if performance isn't horrible
|
||||||
# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set
|
# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set
|
||||||
CONFIG_LOCKUP_DETECTOR=y
|
CONFIG_LOCKUP_DETECTOR=y
|
||||||
@ -4612,7 +4626,7 @@ CONFIG_PM_DEBUG=y
|
|||||||
# CONFIG_DPM_WATCHDOG is not set # revisit this in debug
|
# CONFIG_DPM_WATCHDOG is not set # revisit this in debug
|
||||||
CONFIG_PM_TRACE=y
|
CONFIG_PM_TRACE=y
|
||||||
CONFIG_PM_TRACE_RTC=y
|
CONFIG_PM_TRACE_RTC=y
|
||||||
# CONFIG_PM_TEST_SUSPEND is not set
|
CONFIG_PM_TEST_SUSPEND=y
|
||||||
CONFIG_PM_RUNTIME=y
|
CONFIG_PM_RUNTIME=y
|
||||||
# CONFIG_PM_OPP is not set
|
# CONFIG_PM_OPP is not set
|
||||||
# CONFIG_PM_AUTOSLEEP is not set
|
# CONFIG_PM_AUTOSLEEP is not set
|
||||||
@ -4962,6 +4976,7 @@ CONFIG_RTL8192E=m
|
|||||||
# CONFIG_VIDEO_CX25821 is not set
|
# CONFIG_VIDEO_CX25821 is not set
|
||||||
# CONFIG_R8187SE is not set
|
# CONFIG_R8187SE is not set
|
||||||
# CONFIG_R8188EU is not set
|
# CONFIG_R8188EU is not set
|
||||||
|
# CONFIG_R8192EE is not set
|
||||||
# CONFIG_R8821AE is not set
|
# CONFIG_R8821AE is not set
|
||||||
# CONFIG_RTL8192U is not set
|
# CONFIG_RTL8192U is not set
|
||||||
CONFIG_R8723AU=m # Jes Sorensen maintains this (rhbz 1100162)
|
CONFIG_R8723AU=m # Jes Sorensen maintains this (rhbz 1100162)
|
||||||
@ -5109,6 +5124,7 @@ CONFIG_GPIO_SYSFS=y
|
|||||||
# CONFIG_GPIO_ADP5588 is not set
|
# CONFIG_GPIO_ADP5588 is not set
|
||||||
# CONFIG_GPIO_IT8761E is not set
|
# CONFIG_GPIO_IT8761E is not set
|
||||||
# CONFIG SB105x is not set
|
# CONFIG SB105x is not set
|
||||||
|
# CONFIG_GPIO_SYSCON is not set
|
||||||
# CONFIG_GPIO_TS5500 is not set
|
# CONFIG_GPIO_TS5500 is not set
|
||||||
CONFIG_GPIO_VIPERBOARD=m
|
CONFIG_GPIO_VIPERBOARD=m
|
||||||
# CONFIG_GPIO_MAX7300 is not set
|
# CONFIG_GPIO_MAX7300 is not set
|
||||||
|
117
config-nodebug
117
config-nodebug
@ -2,100 +2,101 @@ CONFIG_SND_VERBOSE_PRINTK=y
|
|||||||
CONFIG_SND_DEBUG=y
|
CONFIG_SND_DEBUG=y
|
||||||
CONFIG_SND_PCM_XRUN_DEBUG=y
|
CONFIG_SND_PCM_XRUN_DEBUG=y
|
||||||
|
|
||||||
# CONFIG_DEBUG_ATOMIC_SLEEP is not set
|
CONFIG_DEBUG_ATOMIC_SLEEP=y
|
||||||
|
|
||||||
# CONFIG_DEBUG_MUTEXES is not set
|
CONFIG_DEBUG_MUTEXES=y
|
||||||
# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set
|
CONFIG_DEBUG_WW_MUTEX_SLOWPATH=y
|
||||||
# CONFIG_DEBUG_RT_MUTEXES is not set
|
CONFIG_DEBUG_RT_MUTEXES=y
|
||||||
# CONFIG_DEBUG_LOCK_ALLOC is not set
|
CONFIG_DEBUG_LOCK_ALLOC=y
|
||||||
# CONFIG_LOCK_TORTURE_TEST is not set
|
CONFIG_LOCK_TORTURE_TEST=m
|
||||||
# CONFIG_PROVE_LOCKING is not set
|
CONFIG_PROVE_LOCKING=y
|
||||||
# CONFIG_DEBUG_SPINLOCK is not set
|
CONFIG_DEBUG_SPINLOCK=y
|
||||||
# CONFIG_PROVE_RCU is not set
|
CONFIG_PROVE_RCU=y
|
||||||
# CONFIG_PROVE_RCU_REPEATEDLY is not set
|
# CONFIG_PROVE_RCU_REPEATEDLY is not set
|
||||||
# CONFIG_DEBUG_PER_CPU_MAPS is not set
|
CONFIG_DEBUG_PER_CPU_MAPS=y
|
||||||
CONFIG_CPUMASK_OFFSTACK=y
|
CONFIG_CPUMASK_OFFSTACK=y
|
||||||
|
|
||||||
# CONFIG_CPU_NOTIFIER_ERROR_INJECT is not set
|
CONFIG_CPU_NOTIFIER_ERROR_INJECT=m
|
||||||
|
|
||||||
# CONFIG_FAULT_INJECTION is not set
|
CONFIG_FAULT_INJECTION=y
|
||||||
# CONFIG_FAILSLAB is not set
|
CONFIG_FAILSLAB=y
|
||||||
# CONFIG_FAIL_PAGE_ALLOC is not set
|
CONFIG_FAIL_PAGE_ALLOC=y
|
||||||
# CONFIG_FAIL_MAKE_REQUEST is not set
|
CONFIG_FAIL_MAKE_REQUEST=y
|
||||||
# CONFIG_FAULT_INJECTION_DEBUG_FS is not set
|
CONFIG_FAULT_INJECTION_DEBUG_FS=y
|
||||||
# CONFIG_FAULT_INJECTION_STACKTRACE_FILTER is not set
|
CONFIG_FAULT_INJECTION_STACKTRACE_FILTER=y
|
||||||
# CONFIG_FAIL_IO_TIMEOUT is not set
|
CONFIG_FAIL_IO_TIMEOUT=y
|
||||||
# CONFIG_FAIL_MMC_REQUEST is not set
|
CONFIG_FAIL_MMC_REQUEST=y
|
||||||
|
|
||||||
# CONFIG_LOCK_STAT is not set
|
CONFIG_LOCK_STAT=y
|
||||||
|
|
||||||
# CONFIG_DEBUG_STACK_USAGE is not set
|
CONFIG_DEBUG_STACK_USAGE=y
|
||||||
|
|
||||||
# CONFIG_ACPI_DEBUG is not set
|
CONFIG_ACPI_DEBUG=y
|
||||||
# CONFIG_ACPI_DEBUG_FUNC_TRACE is not set
|
# CONFIG_ACPI_DEBUG_FUNC_TRACE is not set
|
||||||
|
|
||||||
# CONFIG_DEBUG_SG is not set
|
CONFIG_DEBUG_SG=y
|
||||||
|
CONFIG_DEBUG_PI_LIST=y
|
||||||
|
|
||||||
# CONFIG_DEBUG_PAGEALLOC is not set
|
# CONFIG_DEBUG_PAGEALLOC is not set
|
||||||
|
|
||||||
# CONFIG_DEBUG_WRITECOUNT is not set
|
CONFIG_DEBUG_WRITECOUNT=y
|
||||||
# CONFIG_DEBUG_OBJECTS is not set
|
CONFIG_DEBUG_OBJECTS=y
|
||||||
# CONFIG_DEBUG_OBJECTS_SELFTEST is not set
|
# CONFIG_DEBUG_OBJECTS_SELFTEST is not set
|
||||||
# CONFIG_DEBUG_OBJECTS_FREE is not set
|
CONFIG_DEBUG_OBJECTS_FREE=y
|
||||||
# CONFIG_DEBUG_OBJECTS_TIMERS is not set
|
CONFIG_DEBUG_OBJECTS_TIMERS=y
|
||||||
# CONFIG_DEBUG_OBJECTS_RCU_HEAD is not set
|
CONFIG_DEBUG_OBJECTS_RCU_HEAD=y
|
||||||
CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT=1
|
CONFIG_DEBUG_OBJECTS_ENABLE_DEFAULT=1
|
||||||
|
|
||||||
# CONFIG_X86_PTDUMP is not set
|
CONFIG_X86_PTDUMP=y
|
||||||
# CONFIG_EFI_PGT_DUMP is not set
|
CONFIG_EFI_PGT_DUMP=y
|
||||||
|
|
||||||
# CONFIG_CAN_DEBUG_DEVICES is not set
|
CONFIG_CAN_DEBUG_DEVICES=y
|
||||||
|
|
||||||
# CONFIG_MODULE_FORCE_UNLOAD is not set
|
CONFIG_MODULE_FORCE_UNLOAD=y
|
||||||
|
|
||||||
# CONFIG_SYSCTL_SYSCALL_CHECK is not set
|
CONFIG_SYSCTL_SYSCALL_CHECK=y
|
||||||
|
|
||||||
# CONFIG_DEBUG_NOTIFIERS is not set
|
CONFIG_DEBUG_NOTIFIERS=y
|
||||||
|
|
||||||
# CONFIG_DMA_API_DEBUG is not set
|
CONFIG_DMA_API_DEBUG=y
|
||||||
|
|
||||||
# CONFIG_MMIOTRACE is not set
|
CONFIG_MMIOTRACE=y
|
||||||
|
|
||||||
# CONFIG_DEBUG_CREDENTIALS is not set
|
CONFIG_DEBUG_CREDENTIALS=y
|
||||||
|
|
||||||
# off in both production debug and nodebug builds,
|
# off in both production debug and nodebug builds,
|
||||||
# on in rawhide nodebug builds
|
# on in rawhide nodebug builds
|
||||||
# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set
|
CONFIG_DEBUG_FORCE_WEAK_PER_CPU=y
|
||||||
|
|
||||||
# CONFIG_EXT4_DEBUG is not set
|
CONFIG_EXT4_DEBUG=y
|
||||||
|
|
||||||
# CONFIG_XFS_WARN is not set
|
# CONFIG_XFS_WARN is not set
|
||||||
|
|
||||||
# CONFIG_DEBUG_PERF_USE_VMALLOC is not set
|
CONFIG_DEBUG_PERF_USE_VMALLOC=y
|
||||||
|
|
||||||
# CONFIG_JBD2_DEBUG is not set
|
CONFIG_JBD2_DEBUG=y
|
||||||
|
|
||||||
# CONFIG_NFSD_FAULT_INJECTION is not set
|
CONFIG_NFSD_FAULT_INJECTION=y
|
||||||
|
|
||||||
# CONFIG_DEBUG_BLK_CGROUP is not set
|
CONFIG_DEBUG_BLK_CGROUP=y
|
||||||
|
|
||||||
# CONFIG_DRBD_FAULT_INJECTION is not set
|
CONFIG_DRBD_FAULT_INJECTION=y
|
||||||
|
|
||||||
# CONFIG_ATH_DEBUG is not set
|
CONFIG_ATH_DEBUG=y
|
||||||
# CONFIG_CARL9170_DEBUGFS is not set
|
CONFIG_CARL9170_DEBUGFS=y
|
||||||
# CONFIG_IWLWIFI_DEVICE_TRACING is not set
|
CONFIG_IWLWIFI_DEVICE_TRACING=y
|
||||||
|
|
||||||
# CONFIG_RTLWIFI_DEBUG is not set
|
# CONFIG_RTLWIFI_DEBUG is not set
|
||||||
|
|
||||||
# CONFIG_DEBUG_OBJECTS_WORK is not set
|
CONFIG_DEBUG_OBJECTS_WORK=y
|
||||||
|
|
||||||
# CONFIG_DMADEVICES_DEBUG is not set
|
CONFIG_DMADEVICES_DEBUG=y
|
||||||
# CONFIG_DMADEVICES_VDEBUG is not set
|
CONFIG_DMADEVICES_VDEBUG=y
|
||||||
|
|
||||||
CONFIG_PM_ADVANCED_DEBUG=y
|
CONFIG_PM_ADVANCED_DEBUG=y
|
||||||
|
|
||||||
# CONFIG_CEPH_LIB_PRETTYDEBUG is not set
|
CONFIG_CEPH_LIB_PRETTYDEBUG=y
|
||||||
# CONFIG_QUOTA_DEBUG is not set
|
CONFIG_QUOTA_DEBUG=y
|
||||||
|
|
||||||
CONFIG_PCI_DEFAULT_USE_CRS=y
|
CONFIG_PCI_DEFAULT_USE_CRS=y
|
||||||
|
|
||||||
@ -103,18 +104,18 @@ CONFIG_KGDB_KDB=y
|
|||||||
CONFIG_KDB_KEYBOARD=y
|
CONFIG_KDB_KEYBOARD=y
|
||||||
CONFIG_KDB_CONTINUE_CATASTROPHIC=0
|
CONFIG_KDB_CONTINUE_CATASTROPHIC=0
|
||||||
|
|
||||||
# CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER is not set
|
CONFIG_DEBUG_OBJECTS_PERCPU_COUNTER=y
|
||||||
# CONFIG_PERCPU_TEST is not set
|
# CONFIG_PERCPU_TEST is not set
|
||||||
# CONFIG_TEST_LIST_SORT is not set
|
CONFIG_TEST_LIST_SORT=y
|
||||||
# CONFIG_TEST_STRING_HELPERS is not set
|
# CONFIG_TEST_STRING_HELPERS is not set
|
||||||
|
|
||||||
# CONFIG_DETECT_HUNG_TASK is not set
|
CONFIG_DETECT_HUNG_TASK=y
|
||||||
CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
|
CONFIG_DEFAULT_HUNG_TASK_TIMEOUT=120
|
||||||
# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
|
# CONFIG_BOOTPARAM_HUNG_TASK_PANIC is not set
|
||||||
|
|
||||||
# CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK is not set
|
CONFIG_X86_BOOTPARAM_MEMORY_CORRUPTION_CHECK=y
|
||||||
|
|
||||||
# CONFIG_DEBUG_KMEMLEAK is not set
|
CONFIG_DEBUG_KMEMLEAK=y
|
||||||
CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE=1024
|
CONFIG_DEBUG_KMEMLEAK_EARLY_LOG_SIZE=1024
|
||||||
# CONFIG_DEBUG_KMEMLEAK_TEST is not set
|
# CONFIG_DEBUG_KMEMLEAK_TEST is not set
|
||||||
CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF=y
|
CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF=y
|
||||||
@ -125,7 +126,7 @@ CONFIG_DEBUG_KMEMLEAK_DEFAULT_OFF=y
|
|||||||
|
|
||||||
# CONFIG_SPI_DEBUG is not set
|
# CONFIG_SPI_DEBUG is not set
|
||||||
|
|
||||||
# CONFIG_X86_DEBUG_STATIC_CPU_HAS is not set
|
CONFIG_X86_DEBUG_STATIC_CPU_HAS=y
|
||||||
|
|
||||||
# CONFIG_SCHEDSTATS is not set
|
# CONFIG_SCHEDSTATS is not set
|
||||||
# CONFIG_LATENCYTOP is not set
|
# CONFIG_LATENCYTOP is not set
|
||||||
|
@ -230,5 +230,7 @@ CONFIG_BACKLIGHT_PWM=m
|
|||||||
# CONFIG_PINCTRL_CAPRI is not set
|
# CONFIG_PINCTRL_CAPRI is not set
|
||||||
# CONFIG_PINCTRL_MSM8X74 is not set
|
# CONFIG_PINCTRL_MSM8X74 is not set
|
||||||
# CONFIG_PINCTRL_BCM281XX is not set
|
# CONFIG_PINCTRL_BCM281XX is not set
|
||||||
|
# CONFIG_PINCTRL_APQ8064 is not set
|
||||||
|
# CONFIG_PINCTRL_IPQ8064 is not set
|
||||||
# CONFIG_COMMON_CLK_SI570 is not set
|
# CONFIG_COMMON_CLK_SI570 is not set
|
||||||
# CONFIG_COMMON_CLK_QCOM is not set
|
# CONFIG_COMMON_CLK_QCOM is not set
|
||||||
|
@ -333,7 +333,7 @@ CONFIG_SP5100_TCO=m
|
|||||||
|
|
||||||
# CONFIG_MEMTEST is not set
|
# CONFIG_MEMTEST is not set
|
||||||
# CONFIG_DEBUG_TLBFLUSH is not set
|
# CONFIG_DEBUG_TLBFLUSH is not set
|
||||||
# CONFIG_MAXSMP is not set
|
CONFIG_MAXSMP=y
|
||||||
|
|
||||||
|
|
||||||
CONFIG_HP_ILO=m
|
CONFIG_HP_ILO=m
|
||||||
@ -447,6 +447,8 @@ CONFIG_NFC_MICROREAD_MEI=m
|
|||||||
# Maybe enable in debug kernels?
|
# Maybe enable in debug kernels?
|
||||||
# CONFIG_DEBUG_NMI_SELFTEST is not set
|
# CONFIG_DEBUG_NMI_SELFTEST is not set
|
||||||
|
|
||||||
|
# CONFIG_X86_GOLDFISH is not set
|
||||||
|
|
||||||
CONFIG_X86_INTEL_LPSS=y
|
CONFIG_X86_INTEL_LPSS=y
|
||||||
CONFIG_PWM_LPSS=m
|
CONFIG_PWM_LPSS=m
|
||||||
CONFIG_PINCTRL=y
|
CONFIG_PINCTRL=y
|
||||||
|
@ -74,6 +74,9 @@ CONFIG_CRYPTO_SERPENT_AVX_X86_64=m
|
|||||||
CONFIG_CRYPTO_SERPENT_AVX2_X86_64=m
|
CONFIG_CRYPTO_SERPENT_AVX2_X86_64=m
|
||||||
CONFIG_CRYPTO_TWOFISH_AVX_X86_64=m
|
CONFIG_CRYPTO_TWOFISH_AVX_X86_64=m
|
||||||
CONFIG_CRYPTO_TWOFISH_AVX2_X86_64=m
|
CONFIG_CRYPTO_TWOFISH_AVX2_X86_64=m
|
||||||
|
# staging crypto
|
||||||
|
# CONFIG_CRYPTO_SKEIN is not set
|
||||||
|
# CONFIG_CRYPTO_THREEFISH is not set
|
||||||
|
|
||||||
# CONFIG_I2C_ALI1535 is not set
|
# CONFIG_I2C_ALI1535 is not set
|
||||||
# CONFIG_I2C_ALI1563 is not set
|
# CONFIG_I2C_ALI1563 is not set
|
||||||
|
@ -1,16 +0,0 @@
|
|||||||
Bugzilla: N/A
|
|
||||||
Upstream-status: Fedora mustard (but no idea why)
|
|
||||||
|
|
||||||
diff --git a/drivers/acpi/video.c b/drivers/acpi/video.c
|
|
||||||
index eaef02a..2029819 100644
|
|
||||||
--- a/drivers/acpi/video.c
|
|
||||||
+++ b/drivers/acpi/video.c
|
|
||||||
@@ -69,7 +69,7 @@ MODULE_AUTHOR("Bruno Ducrot");
|
|
||||||
MODULE_DESCRIPTION("ACPI Video Driver");
|
|
||||||
MODULE_LICENSE("GPL");
|
|
||||||
|
|
||||||
-static bool brightness_switch_enabled = 1;
|
|
||||||
+static bool brightness_switch_enabled = 0;
|
|
||||||
module_param(brightness_switch_enabled, bool, 0644);
|
|
||||||
|
|
||||||
/*
|
|
84
kbuild-Add-recipe-cmd-an-at-less-cmd-variant.patch
Normal file
84
kbuild-Add-recipe-cmd-an-at-less-cmd-variant.patch
Normal file
@ -0,0 +1,84 @@
|
|||||||
|
|
||||||
|
Delivered-To: jwboyer@gmail.com
|
||||||
|
Received: by 10.76.6.212 with SMTP id d20csp275723oaa;
|
||||||
|
Wed, 11 Jun 2014 09:20:26 -0700 (PDT)
|
||||||
|
X-Received: by 10.68.202.194 with SMTP id kk2mr6443717pbc.156.1402503625476;
|
||||||
|
Wed, 11 Jun 2014 09:20:25 -0700 (PDT)
|
||||||
|
Return-Path: <luto@amacapital.net>
|
||||||
|
Received: from bastion.fedoraproject.org (bastion02.fedoraproject.org. [209.132.181.3])
|
||||||
|
by mx.google.com with ESMTP id hk10si7140166pac.55.2014.06.11.09.20.25
|
||||||
|
for <jwboyer@gmail.com>;
|
||||||
|
Wed, 11 Jun 2014 09:20:25 -0700 (PDT)
|
||||||
|
Received-SPF: softfail (google.com: domain of transitioning luto@amacapital.net does not designate 209.132.181.3 as permitted sender) client-ip=209.132.181.3;
|
||||||
|
Authentication-Results: mx.google.com;
|
||||||
|
spf=softfail (google.com: domain of transitioning luto@amacapital.net does not designate 209.132.181.3 as permitted sender) smtp.mail=luto@amacapital.net
|
||||||
|
Received: by bastion02.phx2.fedoraproject.org (Postfix)
|
||||||
|
id F167F40A24; Wed, 11 Jun 2014 16:20:24 +0000 (UTC)
|
||||||
|
Delivered-To: jwboyer@fedoraproject.org
|
||||||
|
Received: from mx1.redhat.com (ext-mx12.extmail.prod.ext.phx2.redhat.com [10.5.110.17])
|
||||||
|
by bastion02.phx2.fedoraproject.org (Postfix) with ESMTP id E054140A1F
|
||||||
|
for <jwboyer@fedoraproject.org>; Wed, 11 Jun 2014 16:20:24 +0000 (UTC)
|
||||||
|
Received: from mail-pd0-f174.google.com (mail-pd0-f174.google.com [209.85.192.174])
|
||||||
|
by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s5BGKK9D017943
|
||||||
|
for <jwboyer@fedoraproject.org>; Wed, 11 Jun 2014 12:20:21 -0400
|
||||||
|
Received: by mail-pd0-f174.google.com with SMTP id y10so1503744pdj.19
|
||||||
|
for <jwboyer@fedoraproject.org>; Wed, 11 Jun 2014 09:20:20 -0700 (PDT)
|
||||||
|
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
|
||||||
|
d=1e100.net; s=20130820;
|
||||||
|
h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to
|
||||||
|
:references:in-reply-to:references;
|
||||||
|
bh=CQ9F+PXV6SvMruBV8gwiVUY2iUpI65+jqkUh4N/yL04=;
|
||||||
|
b=PJ/CK5msKabsmSWS6VSEgjtZ7jgX0BF/9CHTigKuAr0W/4IU0xN0osE/pc6Gny5slE
|
||||||
|
/0PZrvgDnSLczb+l7Ed2kovova/KZktb6EbUXeOJEYfKC9dhytsCYDG9tuLUvxEmgZfp
|
||||||
|
vOum3H1CA3ocdu+5qKvwem2WOdLu2+2t3i8KchcmsDZcWhK66eb8nro1LbbwWgdKsPSF
|
||||||
|
V5NT773uUJ23hy2/uGO6m/PiSIrc8skrgCEae6ugoL0M5r+H9UwfqvLlYB1PL+DJ2JPm
|
||||||
|
t4wLxV2XxD610nR3sXIs1urvX+/4xAG+2ZdC8NMi7+A2SVtku64rS/5UI30D00xfQoB6
|
||||||
|
hYLg==
|
||||||
|
X-Gm-Message-State: ALoCoQnsNny2k21X9YSmrkqYkA6qcZffpVvIHQPZiz91j0A2KaYHwDQ4WNaxXqR1ZXSsLA8qPd+g
|
||||||
|
X-Received: by 10.66.172.229 with SMTP id bf5mr14570106pac.57.1402503620494;
|
||||||
|
Wed, 11 Jun 2014 09:20:20 -0700 (PDT)
|
||||||
|
Received: from localhost (50-76-60-73-ip-static.hfc.comcastbusiness.net. [50.76.60.73])
|
||||||
|
by mx.google.com with ESMTPSA id fk4sm31444487pab.23.2014.06.11.09.20.19
|
||||||
|
for <multiple recipients>
|
||||||
|
(version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);
|
||||||
|
Wed, 11 Jun 2014 09:20:19 -0700 (PDT)
|
||||||
|
From: Andy Lutomirski <luto@amacapital.net>
|
||||||
|
To: "H. Peter Anvin" <hpa@zytor.com>, Josh Boyer <jwboyer@fedoraproject.org>
|
||||||
|
Cc: Michal Marek <mmarek@suse.cz>, linux-kbuild@vger.kernel.org,
|
||||||
|
"Linux-Kernel@Vger. Kernel. Org" <linux-kernel@vger.kernel.org>,
|
||||||
|
Andy Lutomirski <luto@amacapital.net>
|
||||||
|
Subject: [PATCH 1/2] kbuild: Add recipe-cmd, an @-less cmd variant
|
||||||
|
Date: Wed, 11 Jun 2014 09:20:06 -0700
|
||||||
|
Message-Id: <b3ea9607ad67524018c336e1dd54f5d729d60324.1402503408.git.luto@amacapital.net>
|
||||||
|
X-Mailer: git-send-email 1.9.3
|
||||||
|
In-Reply-To: <cover.1402503408.git.luto@amacapital.net>
|
||||||
|
References: <5398749B.4090209@zytor.com>
|
||||||
|
<cover.1402503408.git.luto@amacapital.net>
|
||||||
|
In-Reply-To: <cover.1402503408.git.luto@amacapital.net>
|
||||||
|
References: <cover.1402503408.git.luto@amacapital.net>
|
||||||
|
X-RedHat-Spam-Score: -2.01 (BAYES_00,DCC_REPUT_13_19,RCVD_IN_DNSWL_NONE,SPF_PASS,URIBL_BLOCKED)
|
||||||
|
X-Scanned-By: MIMEDefang 2.68 on 10.5.110.17
|
||||||
|
|
||||||
|
It's awkward to put $(call cmd,xyz) in a loop in a recipe because
|
||||||
|
the pesky at sign gets in the way.
|
||||||
|
|
||||||
|
Signed-off-by: Andy Lutomirski <luto@amacapital.net>
|
||||||
|
---
|
||||||
|
scripts/Kbuild.include | 1 +
|
||||||
|
1 file changed, 1 insertion(+)
|
||||||
|
|
||||||
|
diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include
|
||||||
|
index 122f95c..3e60923 100644
|
||||||
|
--- a/scripts/Kbuild.include
|
||||||
|
+++ b/scripts/Kbuild.include
|
||||||
|
@@ -194,6 +194,7 @@ echo-cmd = $(if $($(quiet)cmd_$(1)),\
|
||||||
|
|
||||||
|
# printing commands
|
||||||
|
cmd = @$(echo-cmd) $(cmd_$(1))
|
||||||
|
+recipe-cmd = $(echo-cmd) $(cmd_$(1))
|
||||||
|
|
||||||
|
# Add $(obj)/ for paths that are not absolute
|
||||||
|
objectify = $(foreach o,$(1),$(if $(filter /%,$(o)),$(o),$(obj)/$(o)))
|
||||||
|
--
|
||||||
|
1.9.3
|
||||||
|
|
56
kernel.spec
56
kernel.spec
@ -6,7 +6,7 @@ Summary: The Linux kernel
|
|||||||
# For a stable, released kernel, released_kernel should be 1. For rawhide
|
# For a stable, released kernel, released_kernel should be 1. For rawhide
|
||||||
# and/or a kernel built from an rc or git snapshot, released_kernel should
|
# and/or a kernel built from an rc or git snapshot, released_kernel should
|
||||||
# be 0.
|
# be 0.
|
||||||
%global released_kernel 1
|
%global released_kernel 0
|
||||||
|
|
||||||
# Sign modules on x86. Make sure the config files match this setting if more
|
# Sign modules on x86. Make sure the config files match this setting if more
|
||||||
# architectures are added.
|
# architectures are added.
|
||||||
@ -67,7 +67,7 @@ Summary: The Linux kernel
|
|||||||
# The rc snapshot level
|
# The rc snapshot level
|
||||||
%define rcrev 0
|
%define rcrev 0
|
||||||
# The git snapshot level
|
# The git snapshot level
|
||||||
%define gitrev 0
|
%define gitrev 1
|
||||||
# Set rpm version accordingly
|
# Set rpm version accordingly
|
||||||
%define rpmversion 3.%{upstream_sublevel}.0
|
%define rpmversion 3.%{upstream_sublevel}.0
|
||||||
%endif
|
%endif
|
||||||
@ -128,7 +128,7 @@ Summary: The Linux kernel
|
|||||||
# Set debugbuildsenabled to 1 for production (build separate debug kernels)
|
# Set debugbuildsenabled to 1 for production (build separate debug kernels)
|
||||||
# and 0 for rawhide (all kernels are debug kernels).
|
# and 0 for rawhide (all kernels are debug kernels).
|
||||||
# See also 'make debug' and 'make release'.
|
# See also 'make debug' and 'make release'.
|
||||||
%define debugbuildsenabled 1
|
%define debugbuildsenabled 0
|
||||||
|
|
||||||
# Want to build a vanilla kernel build without any non-upstream patches?
|
# Want to build a vanilla kernel build without any non-upstream patches?
|
||||||
%define with_vanilla %{?_with_vanilla: 1} %{?!_with_vanilla: 0}
|
%define with_vanilla %{?_with_vanilla: 1} %{?!_with_vanilla: 0}
|
||||||
@ -542,8 +542,6 @@ Patch09: upstream-reverts.patch
|
|||||||
|
|
||||||
# Standalone patches
|
# Standalone patches
|
||||||
|
|
||||||
Patch390: defaults-acpi-video.patch
|
|
||||||
|
|
||||||
Patch450: input-kill-stupid-messages.patch
|
Patch450: input-kill-stupid-messages.patch
|
||||||
Patch452: no-pcspkr-modalias.patch
|
Patch452: no-pcspkr-modalias.patch
|
||||||
|
|
||||||
@ -606,7 +604,6 @@ Patch21020: arm-tegra-usb-no-reset-linux33.patch
|
|||||||
# ARM i.MX6
|
# ARM i.MX6
|
||||||
|
|
||||||
# ARM sunxi (AllWinner)
|
# ARM sunxi (AllWinner)
|
||||||
Patch21025: 0001-ARM-sunxi-Add-driver-for-SD-MMC-hosts-found-on-Allwi.patch
|
|
||||||
|
|
||||||
#rhbz 754518
|
#rhbz 754518
|
||||||
Patch21235: scsi-sd_revalidate_disk-prevent-NULL-ptr-deref.patch
|
Patch21235: scsi-sd_revalidate_disk-prevent-NULL-ptr-deref.patch
|
||||||
@ -624,21 +621,9 @@ Patch25047: drm-radeon-Disable-writeback-by-default-on-ppc.patch
|
|||||||
#rhbz 1025603
|
#rhbz 1025603
|
||||||
Patch25063: disable-libdw-unwind-on-non-x86.patch
|
Patch25063: disable-libdw-unwind-on-non-x86.patch
|
||||||
|
|
||||||
#rhbz 1048314
|
|
||||||
Patch25048: 0001-HID-rmi-introduce-RMI-driver-for-Synaptics-touchpads.patch
|
|
||||||
|
|
||||||
#rhbz 1089583
|
|
||||||
Patch25064: 0001-HID-rmi-do-not-handle-touchscreens-through-hid-rmi.patch
|
|
||||||
|
|
||||||
#rhbz 1090161
|
|
||||||
Patch25072: HID-rmi-do-not-fetch-more-than-16-bytes-in-a-query.patch
|
|
||||||
|
|
||||||
#rhbz 983342 1093120
|
#rhbz 983342 1093120
|
||||||
Patch25069: 0001-acpi-video-Add-4-new-models-to-the-use_native_backli.patch
|
Patch25069: 0001-acpi-video-Add-4-new-models-to-the-use_native_backli.patch
|
||||||
|
|
||||||
Patch25071: s390-appldata-add-slab.h-for-kzalloc-kfree.patch
|
|
||||||
|
|
||||||
|
|
||||||
# CVE-2014-3917 rhbz 1102571 1102715
|
# CVE-2014-3917 rhbz 1102571 1102715
|
||||||
Patch25093: auditsc-audit_krule-mask-accesses-need-bounds-checking.patch
|
Patch25093: auditsc-audit_krule-mask-accesses-need-bounds-checking.patch
|
||||||
|
|
||||||
@ -650,16 +635,12 @@ Patch26002: samsung-laptop-Add-broken-acpi-video-quirk-for-NC210.patch
|
|||||||
Patch26003: ideapad-laptop-Blacklist-rfkill-control-on-the-Lenov.patch
|
Patch26003: ideapad-laptop-Blacklist-rfkill-control-on-the-Lenov.patch
|
||||||
Patch26004: asus-wmi-Add-a-no-backlight-quirk.patch
|
Patch26004: asus-wmi-Add-a-no-backlight-quirk.patch
|
||||||
Patch26005: eeepc-wmi-Add-no-backlight-quirk-for-Asus-H87I-PLUS-.patch
|
Patch26005: eeepc-wmi-Add-no-backlight-quirk-for-Asus-H87I-PLUS-.patch
|
||||||
Patch26006: acpi-video-Don-t-register-acpi_video_resume-notifier.patch
|
|
||||||
Patch26007: acpi-video-Add-an-acpi_video_unregister_backlight-fu.patch
|
|
||||||
Patch26008: acer-wmi-Switch-to-acpi_video_unregister_backlight.patch
|
|
||||||
Patch26009: acer-wmi-Add-Aspire-5741-to-video_vendor_dmi_table.patch
|
|
||||||
Patch26010: nouveau-Don-t-check-acpi_video_backlight_support-bef.patch
|
|
||||||
Patch26011: backlight-Add-backlight-device-un-registration-notif.patch
|
|
||||||
Patch26012: acpi-video-Unregister-the-backlight-device-if-a-raw-.patch
|
|
||||||
Patch26013: acpi-video-Add-use-native-backlight-quirk-for-the-Th.patch
|
Patch26013: acpi-video-Add-use-native-backlight-quirk-for-the-Th.patch
|
||||||
Patch26014: acpi-video-Add-use_native_backlight-quirk-for-HP-Pro.patch
|
Patch26014: acpi-video-Add-use_native_backlight-quirk-for-HP-Pro.patch
|
||||||
|
|
||||||
|
Patch26015: kbuild-Add-recipe-cmd-an-at-less-cmd-variant.patch
|
||||||
|
Patch26016: x86-vdso-Fix-vdso_install.patch
|
||||||
|
|
||||||
# END OF PATCH DEFINITIONS
|
# END OF PATCH DEFINITIONS
|
||||||
|
|
||||||
%endif
|
%endif
|
||||||
@ -1253,7 +1234,6 @@ ApplyPatch 0001-lib-cpumask-Make-CPUMASK_OFFSTACK-usable-without-deb.patch
|
|||||||
# ARM
|
# ARM
|
||||||
#
|
#
|
||||||
ApplyPatch arm-tegra-usb-no-reset-linux33.patch
|
ApplyPatch arm-tegra-usb-no-reset-linux33.patch
|
||||||
ApplyPatch 0001-ARM-sunxi-Add-driver-for-SD-MMC-hosts-found-on-Allwi.patch
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# bugfixes to drivers and filesystems
|
# bugfixes to drivers and filesystems
|
||||||
@ -1274,7 +1254,6 @@ ApplyPatch 0001-ARM-sunxi-Add-driver-for-SD-MMC-hosts-found-on-Allwi.patch
|
|||||||
# WMI
|
# WMI
|
||||||
|
|
||||||
# ACPI
|
# ACPI
|
||||||
ApplyPatch defaults-acpi-video.patch
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# PCI
|
# PCI
|
||||||
@ -1359,21 +1338,12 @@ ApplyPatch ath9k_rx_dma_stop_check.patch
|
|||||||
|
|
||||||
ApplyPatch drm-radeon-Disable-writeback-by-default-on-ppc.patch
|
ApplyPatch drm-radeon-Disable-writeback-by-default-on-ppc.patch
|
||||||
|
|
||||||
#rhbz 1048314
|
|
||||||
ApplyPatch 0001-HID-rmi-introduce-RMI-driver-for-Synaptics-touchpads.patch
|
|
||||||
#rhbz 1089583
|
|
||||||
ApplyPatch 0001-HID-rmi-do-not-handle-touchscreens-through-hid-rmi.patch
|
|
||||||
#rhbz 1090161
|
|
||||||
ApplyPatch HID-rmi-do-not-fetch-more-than-16-bytes-in-a-query.patch
|
|
||||||
|
|
||||||
#rhbz 1025603
|
#rhbz 1025603
|
||||||
ApplyPatch disable-libdw-unwind-on-non-x86.patch
|
ApplyPatch disable-libdw-unwind-on-non-x86.patch
|
||||||
|
|
||||||
#rhbz 983342 1093120
|
#rhbz 983342 1093120
|
||||||
ApplyPatch 0001-acpi-video-Add-4-new-models-to-the-use_native_backli.patch
|
ApplyPatch 0001-acpi-video-Add-4-new-models-to-the-use_native_backli.patch
|
||||||
|
|
||||||
ApplyPatch s390-appldata-add-slab.h-for-kzalloc-kfree.patch
|
|
||||||
|
|
||||||
# CVE-2014-3917 rhbz 1102571 1102715
|
# CVE-2014-3917 rhbz 1102571 1102715
|
||||||
ApplyPatch auditsc-audit_krule-mask-accesses-need-bounds-checking.patch
|
ApplyPatch auditsc-audit_krule-mask-accesses-need-bounds-checking.patch
|
||||||
|
|
||||||
@ -1385,16 +1355,12 @@ ApplyPatch samsung-laptop-Add-broken-acpi-video-quirk-for-NC210.patch
|
|||||||
ApplyPatch ideapad-laptop-Blacklist-rfkill-control-on-the-Lenov.patch
|
ApplyPatch ideapad-laptop-Blacklist-rfkill-control-on-the-Lenov.patch
|
||||||
ApplyPatch asus-wmi-Add-a-no-backlight-quirk.patch
|
ApplyPatch asus-wmi-Add-a-no-backlight-quirk.patch
|
||||||
ApplyPatch eeepc-wmi-Add-no-backlight-quirk-for-Asus-H87I-PLUS-.patch
|
ApplyPatch eeepc-wmi-Add-no-backlight-quirk-for-Asus-H87I-PLUS-.patch
|
||||||
ApplyPatch acpi-video-Don-t-register-acpi_video_resume-notifier.patch
|
|
||||||
ApplyPatch acpi-video-Add-an-acpi_video_unregister_backlight-fu.patch
|
|
||||||
ApplyPatch acer-wmi-Switch-to-acpi_video_unregister_backlight.patch
|
|
||||||
ApplyPatch acer-wmi-Add-Aspire-5741-to-video_vendor_dmi_table.patch
|
|
||||||
ApplyPatch nouveau-Don-t-check-acpi_video_backlight_support-bef.patch
|
|
||||||
ApplyPatch backlight-Add-backlight-device-un-registration-notif.patch
|
|
||||||
ApplyPatch acpi-video-Unregister-the-backlight-device-if-a-raw-.patch
|
|
||||||
ApplyPatch acpi-video-Add-use-native-backlight-quirk-for-the-Th.patch
|
ApplyPatch acpi-video-Add-use-native-backlight-quirk-for-the-Th.patch
|
||||||
ApplyPatch acpi-video-Add-use_native_backlight-quirk-for-HP-Pro.patch
|
ApplyPatch acpi-video-Add-use_native_backlight-quirk-for-HP-Pro.patch
|
||||||
|
|
||||||
|
ApplyPatch kbuild-Add-recipe-cmd-an-at-less-cmd-variant.patch
|
||||||
|
ApplyPatch x86-vdso-Fix-vdso_install.patch
|
||||||
|
|
||||||
# END OF PATCH APPLICATIONS
|
# END OF PATCH APPLICATIONS
|
||||||
|
|
||||||
%endif
|
%endif
|
||||||
@ -2267,6 +2233,10 @@ fi
|
|||||||
# ||----w |
|
# ||----w |
|
||||||
# || ||
|
# || ||
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jun 10 2014 Josh Boyer <jwboyer@fedoraproject.org> - 3.16.0-0.rc0.git1.1
|
||||||
|
- Linux v3.15-7218-g3f17ea6dea8b
|
||||||
|
- Reenable debugging options.
|
||||||
|
|
||||||
* Mon Jun 09 2014 Josh Boyer <jwboyer@fedoraproject.org> - 3.15.0-1
|
* Mon Jun 09 2014 Josh Boyer <jwboyer@fedoraproject.org> - 3.15.0-1
|
||||||
- Linux v3.15
|
- Linux v3.15
|
||||||
- Disable debugging options.
|
- Disable debugging options.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
Bugzilla: N/A
|
Bugzilla: N/A
|
||||||
Upstream-status: Fedora mustard for now
|
Upstream-status: Fedora mustard for now
|
||||||
|
|
||||||
From 779183da2955e33a221c3f7a622766cd53e06d45 Mon Sep 17 00:00:00 2001
|
From fa2bfe718da40bf24f92c85846577e9bc788882c Mon Sep 17 00:00:00 2001
|
||||||
From: Dave Howells <dhowells@redhat.com>
|
From: Dave Howells <dhowells@redhat.com>
|
||||||
Date: Tue, 23 Oct 2012 09:30:54 -0400
|
Date: Tue, 23 Oct 2012 09:30:54 -0400
|
||||||
Subject: [PATCH 1/5] Add EFI signature data types
|
Subject: [PATCH 1/5] Add EFI signature data types
|
||||||
@ -15,12 +15,12 @@ Signed-off-by: David Howells <dhowells@redhat.com>
|
|||||||
1 file changed, 20 insertions(+)
|
1 file changed, 20 insertions(+)
|
||||||
|
|
||||||
diff --git a/include/linux/efi.h b/include/linux/efi.h
|
diff --git a/include/linux/efi.h b/include/linux/efi.h
|
||||||
index 3a77a70fff27..4c7f7011ea19 100644
|
index e73f391fd3c8..3d66a61bbbca 100644
|
||||||
--- a/include/linux/efi.h
|
--- a/include/linux/efi.h
|
||||||
+++ b/include/linux/efi.h
|
+++ b/include/linux/efi.h
|
||||||
@@ -575,6 +575,12 @@ typedef efi_status_t efi_query_variable_store_t(u32 attributes, unsigned long si
|
@@ -578,6 +578,12 @@ typedef efi_status_t efi_query_variable_store_t(u32 attributes, unsigned long si
|
||||||
#define EFI_FILE_SYSTEM_GUID \
|
#define DEVICE_TREE_GUID \
|
||||||
EFI_GUID( 0x964e5b22, 0x6459, 0x11d2, 0x8e, 0x39, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b )
|
EFI_GUID( 0xb1b621d5, 0xf19c, 0x41a5, 0x83, 0x0b, 0xd9, 0x15, 0x2c, 0x69, 0xaa, 0xe0 )
|
||||||
|
|
||||||
+#define EFI_CERT_SHA256_GUID \
|
+#define EFI_CERT_SHA256_GUID \
|
||||||
+ EFI_GUID( 0xc1c41626, 0x504c, 0x4092, 0xac, 0xa9, 0x41, 0xf9, 0x36, 0x93, 0x43, 0x28 )
|
+ EFI_GUID( 0xc1c41626, 0x504c, 0x4092, 0xac, 0xa9, 0x41, 0xf9, 0x36, 0x93, 0x43, 0x28 )
|
||||||
@ -31,7 +31,7 @@ index 3a77a70fff27..4c7f7011ea19 100644
|
|||||||
typedef struct {
|
typedef struct {
|
||||||
efi_guid_t guid;
|
efi_guid_t guid;
|
||||||
u64 table;
|
u64 table;
|
||||||
@@ -782,6 +788,20 @@ typedef struct _efi_file_io_interface {
|
@@ -793,6 +799,20 @@ typedef struct _efi_file_io_interface {
|
||||||
|
|
||||||
#define EFI_INVALID_TABLE_ADDR (~0UL)
|
#define EFI_INVALID_TABLE_ADDR (~0UL)
|
||||||
|
|
||||||
@ -53,10 +53,10 @@ index 3a77a70fff27..4c7f7011ea19 100644
|
|||||||
* All runtime access to EFI goes through this structure:
|
* All runtime access to EFI goes through this structure:
|
||||||
*/
|
*/
|
||||||
--
|
--
|
||||||
1.9.0
|
1.9.3
|
||||||
|
|
||||||
|
|
||||||
From 8592d1f6a8cc8d901c94582b9d0b57d170a0940b Mon Sep 17 00:00:00 2001
|
From 922e0512ce70101b596558d5bb075cd40a450322 Mon Sep 17 00:00:00 2001
|
||||||
From: Dave Howells <dhowells@redhat.com>
|
From: Dave Howells <dhowells@redhat.com>
|
||||||
Date: Tue, 23 Oct 2012 09:36:28 -0400
|
Date: Tue, 23 Oct 2012 09:36:28 -0400
|
||||||
Subject: [PATCH 2/5] Add an EFI signature blob parser and key loader.
|
Subject: [PATCH 2/5] Add an EFI signature blob parser and key loader.
|
||||||
@ -218,12 +218,12 @@ index 000000000000..424896a0b169
|
|||||||
+ return 0;
|
+ return 0;
|
||||||
+}
|
+}
|
||||||
diff --git a/include/linux/efi.h b/include/linux/efi.h
|
diff --git a/include/linux/efi.h b/include/linux/efi.h
|
||||||
index 4c7f7011ea19..96174a7f9e90 100644
|
index 3d66a61bbbca..7854ff3c0f11 100644
|
||||||
--- a/include/linux/efi.h
|
--- a/include/linux/efi.h
|
||||||
+++ b/include/linux/efi.h
|
+++ b/include/linux/efi.h
|
||||||
@@ -883,6 +883,10 @@ extern int efi_set_rtc_mmss(const struct timespec *now);
|
@@ -901,6 +901,10 @@ extern struct efi_memory_map memmap;
|
||||||
extern void efi_reserve_boot_services(void);
|
(md) <= (efi_memory_desc_t *)((m)->map_end - (m)->desc_size); \
|
||||||
extern struct efi_memory_map memmap;
|
(md) = (void *)(md) + (m)->desc_size)
|
||||||
|
|
||||||
+struct key;
|
+struct key;
|
||||||
+extern int __init parse_efi_signature_list(const void *data, size_t size,
|
+extern int __init parse_efi_signature_list(const void *data, size_t size,
|
||||||
@ -233,10 +233,10 @@ index 4c7f7011ea19..96174a7f9e90 100644
|
|||||||
* efi_range_is_wc - check the WC bit on an address range
|
* efi_range_is_wc - check the WC bit on an address range
|
||||||
* @start: starting kvirt address
|
* @start: starting kvirt address
|
||||||
--
|
--
|
||||||
1.9.0
|
1.9.3
|
||||||
|
|
||||||
|
|
||||||
From a4da3547b2eb4e0c7111eee7e5d5043413142835 Mon Sep 17 00:00:00 2001
|
From 2534dedee545507c00973279d5db515e122b5104 Mon Sep 17 00:00:00 2001
|
||||||
From: Josh Boyer <jwboyer@fedoraproject.org>
|
From: Josh Boyer <jwboyer@fedoraproject.org>
|
||||||
Date: Fri, 26 Oct 2012 12:36:24 -0400
|
Date: Fri, 26 Oct 2012 12:36:24 -0400
|
||||||
Subject: [PATCH 3/5] KEYS: Add a system blacklist keyring
|
Subject: [PATCH 3/5] KEYS: Add a system blacklist keyring
|
||||||
@ -270,10 +270,10 @@ index 8dabc399bd1d..e466de10ceec 100644
|
|||||||
|
|
||||||
#endif /* _KEYS_SYSTEM_KEYRING_H */
|
#endif /* _KEYS_SYSTEM_KEYRING_H */
|
||||||
diff --git a/init/Kconfig b/init/Kconfig
|
diff --git a/init/Kconfig b/init/Kconfig
|
||||||
index 9d3585bb2a7a..932f22f7cc40 100644
|
index 9d76b99af1b9..ac5f580437a0 100644
|
||||||
--- a/init/Kconfig
|
--- a/init/Kconfig
|
||||||
+++ b/init/Kconfig
|
+++ b/init/Kconfig
|
||||||
@@ -1658,6 +1658,15 @@ config SYSTEM_TRUSTED_KEYRING
|
@@ -1677,6 +1677,15 @@ config SYSTEM_TRUSTED_KEYRING
|
||||||
|
|
||||||
Keys in this keyring are used by module signature checking.
|
Keys in this keyring are used by module signature checking.
|
||||||
|
|
||||||
@ -348,10 +348,10 @@ index 52ebc70263f4..478c4f8ec908 100644
|
|||||||
}
|
}
|
||||||
|
|
||||||
--
|
--
|
||||||
1.9.0
|
1.9.3
|
||||||
|
|
||||||
|
|
||||||
From 25adb4e43fb5c23723f33a806399ad484f8dcfa5 Mon Sep 17 00:00:00 2001
|
From a72ed58241f0d62b7f9fbf4e1fbbcc1e02145098 Mon Sep 17 00:00:00 2001
|
||||||
From: Josh Boyer <jwboyer@fedoraproject.org>
|
From: Josh Boyer <jwboyer@fedoraproject.org>
|
||||||
Date: Fri, 26 Oct 2012 12:42:16 -0400
|
Date: Fri, 26 Oct 2012 12:42:16 -0400
|
||||||
Subject: [PATCH 4/5] MODSIGN: Import certificates from UEFI Secure Boot
|
Subject: [PATCH 4/5] MODSIGN: Import certificates from UEFI Secure Boot
|
||||||
@ -379,10 +379,10 @@ Signed-off-by: Josh Boyer <jwboyer@fedoraproject.org>
|
|||||||
create mode 100644 kernel/modsign_uefi.c
|
create mode 100644 kernel/modsign_uefi.c
|
||||||
|
|
||||||
diff --git a/include/linux/efi.h b/include/linux/efi.h
|
diff --git a/include/linux/efi.h b/include/linux/efi.h
|
||||||
index 96174a7f9e90..8f7466023105 100644
|
index 7854ff3c0f11..31fd75e7230b 100644
|
||||||
--- a/include/linux/efi.h
|
--- a/include/linux/efi.h
|
||||||
+++ b/include/linux/efi.h
|
+++ b/include/linux/efi.h
|
||||||
@@ -581,6 +581,12 @@ typedef efi_status_t efi_query_variable_store_t(u32 attributes, unsigned long si
|
@@ -584,6 +584,12 @@ typedef efi_status_t efi_query_variable_store_t(u32 attributes, unsigned long si
|
||||||
#define EFI_CERT_X509_GUID \
|
#define EFI_CERT_X509_GUID \
|
||||||
EFI_GUID( 0xa5c059a1, 0x94e4, 0x4aa7, 0x87, 0xb5, 0xab, 0x15, 0x5c, 0x2b, 0xf0, 0x72 )
|
EFI_GUID( 0xa5c059a1, 0x94e4, 0x4aa7, 0x87, 0xb5, 0xab, 0x15, 0x5c, 0x2b, 0xf0, 0x72 )
|
||||||
|
|
||||||
@ -396,10 +396,10 @@ index 96174a7f9e90..8f7466023105 100644
|
|||||||
efi_guid_t guid;
|
efi_guid_t guid;
|
||||||
u64 table;
|
u64 table;
|
||||||
diff --git a/init/Kconfig b/init/Kconfig
|
diff --git a/init/Kconfig b/init/Kconfig
|
||||||
index 932f22f7cc40..6023af12ef4f 100644
|
index ac5f580437a0..ca7268b594aa 100644
|
||||||
--- a/init/Kconfig
|
--- a/init/Kconfig
|
||||||
+++ b/init/Kconfig
|
+++ b/init/Kconfig
|
||||||
@@ -1812,6 +1812,15 @@ config MODULE_SIG_ALL
|
@@ -1831,6 +1831,15 @@ config MODULE_SIG_ALL
|
||||||
comment "Do not forget to sign required modules with scripts/sign-file"
|
comment "Do not forget to sign required modules with scripts/sign-file"
|
||||||
depends on MODULE_SIG_FORCE && !MODULE_SIG_ALL
|
depends on MODULE_SIG_FORCE && !MODULE_SIG_ALL
|
||||||
|
|
||||||
@ -535,10 +535,10 @@ index 000000000000..94b0eb38a284
|
|||||||
+}
|
+}
|
||||||
+late_initcall(load_uefi_certs);
|
+late_initcall(load_uefi_certs);
|
||||||
--
|
--
|
||||||
1.9.0
|
1.9.3
|
||||||
|
|
||||||
|
|
||||||
From 20b7de055a87e6f5555c27de8188b7c975e3e330 Mon Sep 17 00:00:00 2001
|
From 11bb98e3a62de77fc66a3e2197578dd9d891b998 Mon Sep 17 00:00:00 2001
|
||||||
From: Josh Boyer <jwboyer@fedoraproject.org>
|
From: Josh Boyer <jwboyer@fedoraproject.org>
|
||||||
Date: Thu, 3 Oct 2013 10:14:23 -0400
|
Date: Thu, 3 Oct 2013 10:14:23 -0400
|
||||||
Subject: [PATCH 5/5] MODSIGN: Support not importing certs from db
|
Subject: [PATCH 5/5] MODSIGN: Support not importing certs from db
|
||||||
@ -620,5 +620,5 @@ index 94b0eb38a284..ae28b974d49a 100644
|
|||||||
|
|
||||||
mok = get_cert_list(L"MokListRT", &mok_var, &moksize);
|
mok = get_cert_list(L"MokListRT", &mok_var, &moksize);
|
||||||
--
|
--
|
||||||
1.9.0
|
1.9.3
|
||||||
|
|
||||||
|
@ -1,79 +0,0 @@
|
|||||||
Bugzilla: 1093171
|
|
||||||
Upstream-status: Queued for 3.16
|
|
||||||
|
|
||||||
From abf17f7885656ccc181a608d2a9ee770b23d9e23 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Hans de Goede <hdegoede@redhat.com>
|
|
||||||
Date: Mon, 2 Jun 2014 17:41:07 +0200
|
|
||||||
Subject: [PATCH 10/14] nouveau: Don't check acpi_video_backlight_support()
|
|
||||||
before registering backlight
|
|
||||||
|
|
||||||
acpi_video_backlight_support() is supposed to be called by other (vendor
|
|
||||||
specific) firmware backlight controls, not by native / raw backlight controls
|
|
||||||
like nv_backlight.
|
|
||||||
|
|
||||||
Userspace will normally prefer firmware interfaces over raw interfaces, so
|
|
||||||
if acpi_video backlight support is present it will use that even if
|
|
||||||
nv_backlight is registered as well.
|
|
||||||
|
|
||||||
Except when video.use_native_backlight is present on the kernel cmdline
|
|
||||||
(or enabled through a dmi based quirk). As the name indicates the goal here
|
|
||||||
is to make only the raw interface available to userspace so that it will use
|
|
||||||
that (it only does this when it sees a win8 compliant bios).
|
|
||||||
|
|
||||||
This is done by:
|
|
||||||
1) Not registering any acpi_video# backlight devices; and
|
|
||||||
2) Making acpi_video_backlight_support() return true so that other firmware
|
|
||||||
drivers, ie acer_wmi, thinkpad_acpi, dell_laptop, etc. Don't register their
|
|
||||||
own vender specific interfaces.
|
|
||||||
|
|
||||||
Currently nouveau breaks this setup, as when acpi_video_backlight_support()
|
|
||||||
returns true, it does not register itself, resulting in no backlight control
|
|
||||||
at all.
|
|
||||||
|
|
||||||
This is esp. going to be a problem with 3.16 which will default to
|
|
||||||
video.use_native_backlight=1, and thus nouveau based laptops with a win8 bios
|
|
||||||
will get no backlight control at all.
|
|
||||||
|
|
||||||
This also likely explains why the previous attempt to make
|
|
||||||
video.use_native_backlight=1 the default was not a success, as without this
|
|
||||||
patch having a default of video.use_native_backlight=1 will cause regressions.
|
|
||||||
|
|
||||||
Note this effectively reverts commit 5bead799
|
|
||||||
|
|
||||||
Also see: https://bugzilla.redhat.com/show_bug.cgi?id=1093171
|
|
||||||
|
|
||||||
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
|
|
||||||
---
|
|
||||||
drivers/gpu/drm/nouveau/nouveau_backlight.c | 9 ---------
|
|
||||||
1 file changed, 9 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/drivers/gpu/drm/nouveau/nouveau_backlight.c b/drivers/gpu/drm/nouveau/nouveau_backlight.c
|
|
||||||
index 630f6e84fc01..2c1e4aad7da3 100644
|
|
||||||
--- a/drivers/gpu/drm/nouveau/nouveau_backlight.c
|
|
||||||
+++ b/drivers/gpu/drm/nouveau/nouveau_backlight.c
|
|
||||||
@@ -31,7 +31,6 @@
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include <linux/backlight.h>
|
|
||||||
-#include <linux/acpi.h>
|
|
||||||
|
|
||||||
#include "nouveau_drm.h"
|
|
||||||
#include "nouveau_reg.h"
|
|
||||||
@@ -222,14 +221,6 @@ nouveau_backlight_init(struct drm_device *dev)
|
|
||||||
struct nouveau_device *device = nv_device(drm->device);
|
|
||||||
struct drm_connector *connector;
|
|
||||||
|
|
||||||
-#ifdef CONFIG_ACPI
|
|
||||||
- if (acpi_video_backlight_support()) {
|
|
||||||
- NV_INFO(drm, "ACPI backlight interface available, "
|
|
||||||
- "not registering our own\n");
|
|
||||||
- return 0;
|
|
||||||
- }
|
|
||||||
-#endif
|
|
||||||
-
|
|
||||||
list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
|
|
||||||
if (connector->connector_type != DRM_MODE_CONNECTOR_LVDS &&
|
|
||||||
connector->connector_type != DRM_MODE_CONNECTOR_eDP)
|
|
||||||
--
|
|
||||||
1.9.0
|
|
||||||
|
|
@ -1,28 +0,0 @@
|
|||||||
From 1eb5e8b7449ff017c2f358d97bd2fcd4eb87cc53 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Jeff Mahoney <jeffm@suse.com>
|
|
||||||
Date: Sun, 27 Apr 2014 17:35:43 -0400
|
|
||||||
Subject: s390/appldata: add slab.h for kzalloc/kfree
|
|
||||||
|
|
||||||
This fixes:
|
|
||||||
arch/s390/appldata/appldata_mem.c:135:2: error: implicit declaration of function 'kzalloc' [-Werror=implicit-function-declaration]
|
|
||||||
arch/s390/appldata/appldata_mem.c:141:3: error: implicit declaration of function 'kfree' [-Werror=implicit-function-declaration]
|
|
||||||
|
|
||||||
Signed-off-by: Jeff Mahoney <jeffm@suse.com>
|
|
||||||
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
|
|
||||||
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
|
|
||||||
|
|
||||||
diff --git a/arch/s390/appldata/appldata_mem.c b/arch/s390/appldata/appldata_mem.c
|
|
||||||
index 42be537..edcf2a7 100644
|
|
||||||
--- a/arch/s390/appldata/appldata_mem.c
|
|
||||||
+++ b/arch/s390/appldata/appldata_mem.c
|
|
||||||
@@ -13,6 +13,7 @@
|
|
||||||
#include <linux/kernel_stat.h>
|
|
||||||
#include <linux/pagemap.h>
|
|
||||||
#include <linux/swap.h>
|
|
||||||
+#include <linux/slab.h>
|
|
||||||
#include <asm/io.h>
|
|
||||||
|
|
||||||
#include "appldata.h"
|
|
||||||
--
|
|
||||||
cgit v0.10.1
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
|||||||
Bugzilla: N/A
|
Bugzilla: N/A
|
||||||
Upstream-status: Fedora mustard
|
Upstream-status: Fedora mustard
|
||||||
|
|
||||||
From ffe1ee94d526900ce1e5191cdd38934477dd209a Mon Sep 17 00:00:00 2001
|
From ab0f460f8349c7ccb400b2dc8937c0682c8a0f47 Mon Sep 17 00:00:00 2001
|
||||||
From: Josh Boyer <jwboyer@fedoraproject.org>
|
From: Josh Boyer <jwboyer@fedoraproject.org>
|
||||||
Date: Fri, 26 Oct 2012 14:02:09 -0400
|
Date: Fri, 26 Oct 2012 14:02:09 -0400
|
||||||
Subject: [PATCH] hibernate: Disable in a signed modules environment
|
Subject: [PATCH] hibernate: Disable in a signed modules environment
|
||||||
@ -19,7 +19,7 @@ Signed-off-by: Josh Boyer <jwboyer@fedoraproject.com>
|
|||||||
3 files changed, 22 insertions(+), 2 deletions(-)
|
3 files changed, 22 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
diff --git a/kernel/power/hibernate.c b/kernel/power/hibernate.c
|
diff --git a/kernel/power/hibernate.c b/kernel/power/hibernate.c
|
||||||
index b26f5f1..e65228b 100644
|
index df88d55dc436..5c5834d7708b 100644
|
||||||
--- a/kernel/power/hibernate.c
|
--- a/kernel/power/hibernate.c
|
||||||
+++ b/kernel/power/hibernate.c
|
+++ b/kernel/power/hibernate.c
|
||||||
@@ -28,6 +28,8 @@
|
@@ -28,6 +28,8 @@
|
||||||
@ -31,7 +31,7 @@ index b26f5f1..e65228b 100644
|
|||||||
|
|
||||||
#include "power.h"
|
#include "power.h"
|
||||||
|
|
||||||
@@ -632,6 +634,10 @@ int hibernate(void)
|
@@ -639,6 +641,10 @@ int hibernate(void)
|
||||||
{
|
{
|
||||||
int error;
|
int error;
|
||||||
|
|
||||||
@ -42,7 +42,7 @@ index b26f5f1..e65228b 100644
|
|||||||
lock_system_sleep();
|
lock_system_sleep();
|
||||||
/* The snapshot device should not be opened while we're running */
|
/* The snapshot device should not be opened while we're running */
|
||||||
if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
|
if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
|
||||||
@@ -723,7 +729,7 @@ static int software_resume(void)
|
@@ -731,7 +737,7 @@ static int software_resume(void)
|
||||||
/*
|
/*
|
||||||
* If the user said "noresume".. bail out early.
|
* If the user said "noresume".. bail out early.
|
||||||
*/
|
*/
|
||||||
@ -51,7 +51,7 @@ index b26f5f1..e65228b 100644
|
|||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -889,6 +895,11 @@ static ssize_t disk_show(struct kobject *kobj, struct kobj_attribute *attr,
|
@@ -897,6 +903,11 @@ static ssize_t disk_show(struct kobject *kobj, struct kobj_attribute *attr,
|
||||||
int i;
|
int i;
|
||||||
char *start = buf;
|
char *start = buf;
|
||||||
|
|
||||||
@ -63,7 +63,7 @@ index b26f5f1..e65228b 100644
|
|||||||
for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
|
for (i = HIBERNATION_FIRST; i <= HIBERNATION_MAX; i++) {
|
||||||
if (!hibernation_modes[i])
|
if (!hibernation_modes[i])
|
||||||
continue;
|
continue;
|
||||||
@@ -923,6 +934,9 @@ static ssize_t disk_store(struct kobject *kobj, struct kobj_attribute *attr,
|
@@ -931,6 +942,9 @@ static ssize_t disk_store(struct kobject *kobj, struct kobj_attribute *attr,
|
||||||
char *p;
|
char *p;
|
||||||
int mode = HIBERNATION_INVALID;
|
int mode = HIBERNATION_INVALID;
|
||||||
|
|
||||||
@ -74,7 +74,7 @@ index b26f5f1..e65228b 100644
|
|||||||
len = p ? p - buf : n;
|
len = p ? p - buf : n;
|
||||||
|
|
||||||
diff --git a/kernel/power/main.c b/kernel/power/main.c
|
diff --git a/kernel/power/main.c b/kernel/power/main.c
|
||||||
index 1d1bf63..300f300 100644
|
index 573410d6647e..f5201093adc4 100644
|
||||||
--- a/kernel/power/main.c
|
--- a/kernel/power/main.c
|
||||||
+++ b/kernel/power/main.c
|
+++ b/kernel/power/main.c
|
||||||
@@ -15,6 +15,7 @@
|
@@ -15,6 +15,7 @@
|
||||||
@ -86,7 +86,7 @@ index 1d1bf63..300f300 100644
|
|||||||
#include "power.h"
|
#include "power.h"
|
||||||
|
|
||||||
@@ -301,7 +302,11 @@ static ssize_t state_show(struct kobject *kobj, struct kobj_attribute *attr,
|
@@ -301,7 +302,11 @@ static ssize_t state_show(struct kobject *kobj, struct kobj_attribute *attr,
|
||||||
}
|
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_HIBERNATION
|
#ifdef CONFIG_HIBERNATION
|
||||||
- s += sprintf(s, "%s\n", "disk");
|
- s += sprintf(s, "%s\n", "disk");
|
||||||
@ -99,7 +99,7 @@ index 1d1bf63..300f300 100644
|
|||||||
if (s != buf)
|
if (s != buf)
|
||||||
/* convert the last space to a newline */
|
/* convert the last space to a newline */
|
||||||
diff --git a/kernel/power/user.c b/kernel/power/user.c
|
diff --git a/kernel/power/user.c b/kernel/power/user.c
|
||||||
index 15cb72f..fa85ed5 100644
|
index efe99dee9510..5f5d1026f1e2 100644
|
||||||
--- a/kernel/power/user.c
|
--- a/kernel/power/user.c
|
||||||
+++ b/kernel/power/user.c
|
+++ b/kernel/power/user.c
|
||||||
@@ -25,6 +25,7 @@
|
@@ -25,6 +25,7 @@
|
||||||
@ -111,5 +111,5 @@ index 15cb72f..fa85ed5 100644
|
|||||||
#include <asm/uaccess.h>
|
#include <asm/uaccess.h>
|
||||||
|
|
||||||
--
|
--
|
||||||
1.8.3.1
|
1.9.3
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
Bugzilla: N/A
|
Bugzilla: N/A
|
||||||
Upstream-status: Fedora mustard. Replaced by securelevels, but that was nak'd
|
Upstream-status: Fedora mustard. Replaced by securelevels, but that was nak'd
|
||||||
|
|
||||||
From 0f81a4461431941c17ff26fd3d5e284ede4a368a Mon Sep 17 00:00:00 2001
|
From 18c06266b23a1241491e62003144ed8e74b7a725 Mon Sep 17 00:00:00 2001
|
||||||
From: Matthew Garrett <matthew.garrett@nebula.com>
|
From: Matthew Garrett <matthew.garrett@nebula.com>
|
||||||
Date: Fri, 9 Aug 2013 17:58:15 -0400
|
Date: Fri, 9 Aug 2013 17:58:15 -0400
|
||||||
Subject: [PATCH 01/14] Add secure_modules() call
|
Subject: [PATCH 01/14] Add secure_modules() call
|
||||||
@ -42,7 +42,7 @@ index f520a767c86c..fc9b54eb779e 100644
|
|||||||
|
|
||||||
#ifdef CONFIG_SYSFS
|
#ifdef CONFIG_SYSFS
|
||||||
diff --git a/kernel/module.c b/kernel/module.c
|
diff --git a/kernel/module.c b/kernel/module.c
|
||||||
index 11869408f79b..2b9204fe055f 100644
|
index 079c4615607d..90be09d5da44 100644
|
||||||
--- a/kernel/module.c
|
--- a/kernel/module.c
|
||||||
+++ b/kernel/module.c
|
+++ b/kernel/module.c
|
||||||
@@ -3835,3 +3835,13 @@ void module_layout(struct module *mod,
|
@@ -3835,3 +3835,13 @@ void module_layout(struct module *mod,
|
||||||
@ -60,10 +60,10 @@ index 11869408f79b..2b9204fe055f 100644
|
|||||||
+}
|
+}
|
||||||
+EXPORT_SYMBOL(secure_modules);
|
+EXPORT_SYMBOL(secure_modules);
|
||||||
--
|
--
|
||||||
1.8.5.3
|
1.9.3
|
||||||
|
|
||||||
|
|
||||||
From 806c4ee0e6484b529b88b3d0ceb49f6edf96ae11 Mon Sep 17 00:00:00 2001
|
From 6f64d0544f267a7410fde0e2062a5713248c258c Mon Sep 17 00:00:00 2001
|
||||||
From: Matthew Garrett <matthew.garrett@nebula.com>
|
From: Matthew Garrett <matthew.garrett@nebula.com>
|
||||||
Date: Thu, 8 Mar 2012 10:10:38 -0500
|
Date: Thu, 8 Mar 2012 10:10:38 -0500
|
||||||
Subject: [PATCH 02/14] PCI: Lock down BAR access when module security is
|
Subject: [PATCH 02/14] PCI: Lock down BAR access when module security is
|
||||||
@ -83,18 +83,18 @@ Signed-off-by: Matthew Garrett <matthew.garrett@nebula.com>
|
|||||||
3 files changed, 19 insertions(+), 2 deletions(-)
|
3 files changed, 19 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
diff --git a/drivers/pci/pci-sysfs.c b/drivers/pci/pci-sysfs.c
|
diff --git a/drivers/pci/pci-sysfs.c b/drivers/pci/pci-sysfs.c
|
||||||
index 4e0acefb7565..01b56d13d021 100644
|
index 84c350994b06..c4ee5c98f780 100644
|
||||||
--- a/drivers/pci/pci-sysfs.c
|
--- a/drivers/pci/pci-sysfs.c
|
||||||
+++ b/drivers/pci/pci-sysfs.c
|
+++ b/drivers/pci/pci-sysfs.c
|
||||||
@@ -29,6 +29,7 @@
|
@@ -30,6 +30,7 @@
|
||||||
#include <linux/slab.h>
|
|
||||||
#include <linux/vgaarb.h>
|
#include <linux/vgaarb.h>
|
||||||
#include <linux/pm_runtime.h>
|
#include <linux/pm_runtime.h>
|
||||||
|
#include <linux/of.h>
|
||||||
+#include <linux/module.h>
|
+#include <linux/module.h>
|
||||||
#include "pci.h"
|
#include "pci.h"
|
||||||
|
|
||||||
static int sysfs_initialized; /* = 0 */
|
static int sysfs_initialized; /* = 0 */
|
||||||
@@ -652,6 +653,9 @@ pci_write_config(struct file* filp, struct kobject *kobj,
|
@@ -710,6 +711,9 @@ pci_write_config(struct file* filp, struct kobject *kobj,
|
||||||
loff_t init_off = off;
|
loff_t init_off = off;
|
||||||
u8 *data = (u8*) buf;
|
u8 *data = (u8*) buf;
|
||||||
|
|
||||||
@ -104,7 +104,7 @@ index 4e0acefb7565..01b56d13d021 100644
|
|||||||
if (off > dev->cfg_size)
|
if (off > dev->cfg_size)
|
||||||
return 0;
|
return 0;
|
||||||
if (off + count > dev->cfg_size) {
|
if (off + count > dev->cfg_size) {
|
||||||
@@ -958,6 +962,9 @@ pci_mmap_resource(struct kobject *kobj, struct bin_attribute *attr,
|
@@ -1016,6 +1020,9 @@ pci_mmap_resource(struct kobject *kobj, struct bin_attribute *attr,
|
||||||
resource_size_t start, end;
|
resource_size_t start, end;
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
@ -114,7 +114,7 @@ index 4e0acefb7565..01b56d13d021 100644
|
|||||||
for (i = 0; i < PCI_ROM_RESOURCE; i++)
|
for (i = 0; i < PCI_ROM_RESOURCE; i++)
|
||||||
if (res == &pdev->resource[i])
|
if (res == &pdev->resource[i])
|
||||||
break;
|
break;
|
||||||
@@ -1065,6 +1072,9 @@ pci_write_resource_io(struct file *filp, struct kobject *kobj,
|
@@ -1123,6 +1130,9 @@ pci_write_resource_io(struct file *filp, struct kobject *kobj,
|
||||||
struct bin_attribute *attr, char *buf,
|
struct bin_attribute *attr, char *buf,
|
||||||
loff_t off, size_t count)
|
loff_t off, size_t count)
|
||||||
{
|
{
|
||||||
@ -179,10 +179,10 @@ index 24750a1b39b6..fa57896b97dd 100644
|
|||||||
|
|
||||||
dev = pci_get_bus_and_slot(bus, dfn);
|
dev = pci_get_bus_and_slot(bus, dfn);
|
||||||
--
|
--
|
||||||
1.8.5.3
|
1.9.3
|
||||||
|
|
||||||
|
|
||||||
From 16ee82e2add8684e374451e6ba34be3ee41e4ef1 Mon Sep 17 00:00:00 2001
|
From 9c9b7deb557fd099b7f8e4a9283003ee0bf43332 Mon Sep 17 00:00:00 2001
|
||||||
From: Matthew Garrett <matthew.garrett@nebula.com>
|
From: Matthew Garrett <matthew.garrett@nebula.com>
|
||||||
Date: Thu, 8 Mar 2012 10:35:59 -0500
|
Date: Thu, 8 Mar 2012 10:35:59 -0500
|
||||||
Subject: [PATCH 03/14] x86: Lock down IO port access when module security is
|
Subject: [PATCH 03/14] x86: Lock down IO port access when module security is
|
||||||
@ -252,10 +252,10 @@ index 917403fe10da..cdf839f9defe 100644
|
|||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
while (count-- > 0 && i < 65536) {
|
while (count-- > 0 && i < 65536) {
|
||||||
--
|
--
|
||||||
1.8.5.3
|
1.9.3
|
||||||
|
|
||||||
|
|
||||||
From 2fd4b35393b19cde87e4770d3b85d12760e72f6a Mon Sep 17 00:00:00 2001
|
From 2e2c456ba495b9bb3183279af630e0b36d8e2c4e Mon Sep 17 00:00:00 2001
|
||||||
From: Matthew Garrett <matthew.garrett@nebula.com>
|
From: Matthew Garrett <matthew.garrett@nebula.com>
|
||||||
Date: Fri, 9 Mar 2012 08:39:37 -0500
|
Date: Fri, 9 Mar 2012 08:39:37 -0500
|
||||||
Subject: [PATCH 04/14] ACPI: Limit access to custom_method
|
Subject: [PATCH 04/14] ACPI: Limit access to custom_method
|
||||||
@ -284,10 +284,10 @@ index c68e72414a67..4277938af700 100644
|
|||||||
/* parse the table header to get the table length */
|
/* parse the table header to get the table length */
|
||||||
if (count <= sizeof(struct acpi_table_header))
|
if (count <= sizeof(struct acpi_table_header))
|
||||||
--
|
--
|
||||||
1.8.5.3
|
1.9.3
|
||||||
|
|
||||||
|
|
||||||
From 543d64276237adb782ec30a5dab67d0b21afc1d4 Mon Sep 17 00:00:00 2001
|
From e604f163f62405afdf52860295767fcfabac0b05 Mon Sep 17 00:00:00 2001
|
||||||
From: Matthew Garrett <matthew.garrett@nebula.com>
|
From: Matthew Garrett <matthew.garrett@nebula.com>
|
||||||
Date: Fri, 9 Mar 2012 08:46:50 -0500
|
Date: Fri, 9 Mar 2012 08:46:50 -0500
|
||||||
Subject: [PATCH 05/14] asus-wmi: Restrict debugfs interface when module
|
Subject: [PATCH 05/14] asus-wmi: Restrict debugfs interface when module
|
||||||
@ -305,10 +305,10 @@ Signed-off-by: Matthew Garrett <matthew.garrett@nebula.com>
|
|||||||
1 file changed, 9 insertions(+)
|
1 file changed, 9 insertions(+)
|
||||||
|
|
||||||
diff --git a/drivers/platform/x86/asus-wmi.c b/drivers/platform/x86/asus-wmi.c
|
diff --git a/drivers/platform/x86/asus-wmi.c b/drivers/platform/x86/asus-wmi.c
|
||||||
index c5e082fb82fa..03c57fc8de8a 100644
|
index 91ef69a52263..3e6bf9075d9f 100644
|
||||||
--- a/drivers/platform/x86/asus-wmi.c
|
--- a/drivers/platform/x86/asus-wmi.c
|
||||||
+++ b/drivers/platform/x86/asus-wmi.c
|
+++ b/drivers/platform/x86/asus-wmi.c
|
||||||
@@ -1595,6 +1595,9 @@ static int show_dsts(struct seq_file *m, void *data)
|
@@ -1594,6 +1594,9 @@ static int show_dsts(struct seq_file *m, void *data)
|
||||||
int err;
|
int err;
|
||||||
u32 retval = -1;
|
u32 retval = -1;
|
||||||
|
|
||||||
@ -318,7 +318,7 @@ index c5e082fb82fa..03c57fc8de8a 100644
|
|||||||
err = asus_wmi_get_devstate(asus, asus->debug.dev_id, &retval);
|
err = asus_wmi_get_devstate(asus, asus->debug.dev_id, &retval);
|
||||||
|
|
||||||
if (err < 0)
|
if (err < 0)
|
||||||
@@ -1611,6 +1614,9 @@ static int show_devs(struct seq_file *m, void *data)
|
@@ -1610,6 +1613,9 @@ static int show_devs(struct seq_file *m, void *data)
|
||||||
int err;
|
int err;
|
||||||
u32 retval = -1;
|
u32 retval = -1;
|
||||||
|
|
||||||
@ -328,7 +328,7 @@ index c5e082fb82fa..03c57fc8de8a 100644
|
|||||||
err = asus_wmi_set_devstate(asus->debug.dev_id, asus->debug.ctrl_param,
|
err = asus_wmi_set_devstate(asus->debug.dev_id, asus->debug.ctrl_param,
|
||||||
&retval);
|
&retval);
|
||||||
|
|
||||||
@@ -1635,6 +1641,9 @@ static int show_call(struct seq_file *m, void *data)
|
@@ -1634,6 +1640,9 @@ static int show_call(struct seq_file *m, void *data)
|
||||||
union acpi_object *obj;
|
union acpi_object *obj;
|
||||||
acpi_status status;
|
acpi_status status;
|
||||||
|
|
||||||
@ -339,10 +339,10 @@ index c5e082fb82fa..03c57fc8de8a 100644
|
|||||||
1, asus->debug.method_id,
|
1, asus->debug.method_id,
|
||||||
&input, &output);
|
&input, &output);
|
||||||
--
|
--
|
||||||
1.8.5.3
|
1.9.3
|
||||||
|
|
||||||
|
|
||||||
From 6e2fec5547b597c43ca72e34729b8a402660a7c1 Mon Sep 17 00:00:00 2001
|
From 7a27eb92368ea62098831471625d7aadf240beaa Mon Sep 17 00:00:00 2001
|
||||||
From: Matthew Garrett <matthew.garrett@nebula.com>
|
From: Matthew Garrett <matthew.garrett@nebula.com>
|
||||||
Date: Fri, 9 Mar 2012 09:28:15 -0500
|
Date: Fri, 9 Mar 2012 09:28:15 -0500
|
||||||
Subject: [PATCH 06/14] Restrict /dev/mem and /dev/kmem when module loading is
|
Subject: [PATCH 06/14] Restrict /dev/mem and /dev/kmem when module loading is
|
||||||
@ -382,10 +382,10 @@ index cdf839f9defe..c63cf93b00eb 100644
|
|||||||
unsigned long to_write = min_t(unsigned long, count,
|
unsigned long to_write = min_t(unsigned long, count,
|
||||||
(unsigned long)high_memory - p);
|
(unsigned long)high_memory - p);
|
||||||
--
|
--
|
||||||
1.8.5.3
|
1.9.3
|
||||||
|
|
||||||
|
|
||||||
From 358cea0a54f726fa61839b411f3f54284d4588bf Mon Sep 17 00:00:00 2001
|
From 6a2a0adbe438e500fdc6d8aa4f75f0a75250629b Mon Sep 17 00:00:00 2001
|
||||||
From: Josh Boyer <jwboyer@redhat.com>
|
From: Josh Boyer <jwboyer@redhat.com>
|
||||||
Date: Mon, 25 Jun 2012 19:57:30 -0400
|
Date: Mon, 25 Jun 2012 19:57:30 -0400
|
||||||
Subject: [PATCH 07/14] acpi: Ignore acpi_rsdp kernel parameter when module
|
Subject: [PATCH 07/14] acpi: Ignore acpi_rsdp kernel parameter when module
|
||||||
@ -401,7 +401,7 @@ Signed-off-by: Josh Boyer <jwboyer@redhat.com>
|
|||||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c
|
diff --git a/drivers/acpi/osl.c b/drivers/acpi/osl.c
|
||||||
index f7fd72ac69cf..ccdae1c8c386 100644
|
index 147bc1b91b42..b6e63bc0671c 100644
|
||||||
--- a/drivers/acpi/osl.c
|
--- a/drivers/acpi/osl.c
|
||||||
+++ b/drivers/acpi/osl.c
|
+++ b/drivers/acpi/osl.c
|
||||||
@@ -44,6 +44,7 @@
|
@@ -44,6 +44,7 @@
|
||||||
@ -422,10 +422,10 @@ index f7fd72ac69cf..ccdae1c8c386 100644
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
--
|
--
|
||||||
1.8.5.3
|
1.9.3
|
||||||
|
|
||||||
|
|
||||||
From 89751b3ad4dea7cf5b806cd14126dd70657a9148 Mon Sep 17 00:00:00 2001
|
From dc797540b1dc002300c837aed6bb9a9361502db2 Mon Sep 17 00:00:00 2001
|
||||||
From: Matthew Garrett <matthew.garrett@nebula.com>
|
From: Matthew Garrett <matthew.garrett@nebula.com>
|
||||||
Date: Fri, 9 Aug 2013 03:33:56 -0400
|
Date: Fri, 9 Aug 2013 03:33:56 -0400
|
||||||
Subject: [PATCH 08/14] kexec: Disable at runtime if the kernel enforces module
|
Subject: [PATCH 08/14] kexec: Disable at runtime if the kernel enforces module
|
||||||
@ -441,7 +441,7 @@ Signed-off-by: Matthew Garrett <matthew.garrett@nebula.com>
|
|||||||
1 file changed, 8 insertions(+)
|
1 file changed, 8 insertions(+)
|
||||||
|
|
||||||
diff --git a/kernel/kexec.c b/kernel/kexec.c
|
diff --git a/kernel/kexec.c b/kernel/kexec.c
|
||||||
index c8380ad203bc..e6eb239f567a 100644
|
index 6748688813d0..d4d88984bf45 100644
|
||||||
--- a/kernel/kexec.c
|
--- a/kernel/kexec.c
|
||||||
+++ b/kernel/kexec.c
|
+++ b/kernel/kexec.c
|
||||||
@@ -33,6 +33,7 @@
|
@@ -33,6 +33,7 @@
|
||||||
@ -452,7 +452,7 @@ index c8380ad203bc..e6eb239f567a 100644
|
|||||||
|
|
||||||
#include <asm/page.h>
|
#include <asm/page.h>
|
||||||
#include <asm/uaccess.h>
|
#include <asm/uaccess.h>
|
||||||
@@ -948,6 +949,13 @@ SYSCALL_DEFINE4(kexec_load, unsigned long, entry, unsigned long, nr_segments,
|
@@ -946,6 +947,13 @@ SYSCALL_DEFINE4(kexec_load, unsigned long, entry, unsigned long, nr_segments,
|
||||||
return -EPERM;
|
return -EPERM;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -467,10 +467,10 @@ index c8380ad203bc..e6eb239f567a 100644
|
|||||||
* This leaves us room for future extensions.
|
* This leaves us room for future extensions.
|
||||||
*/
|
*/
|
||||||
--
|
--
|
||||||
1.8.5.3
|
1.9.3
|
||||||
|
|
||||||
|
|
||||||
From 31174421a7103571a1c3faf7ba27d4045e5fbc18 Mon Sep 17 00:00:00 2001
|
From 093851b8593880db428c36ddd897ed7cde3c9460 Mon Sep 17 00:00:00 2001
|
||||||
From: Matthew Garrett <matthew.garrett@nebula.com>
|
From: Matthew Garrett <matthew.garrett@nebula.com>
|
||||||
Date: Tue, 3 Sep 2013 11:23:29 -0400
|
Date: Tue, 3 Sep 2013 11:23:29 -0400
|
||||||
Subject: [PATCH 09/14] uswsusp: Disable when module loading is restricted
|
Subject: [PATCH 09/14] uswsusp: Disable when module loading is restricted
|
||||||
@ -507,10 +507,10 @@ index 98d357584cd6..efe99dee9510 100644
|
|||||||
|
|
||||||
if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
|
if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
|
||||||
--
|
--
|
||||||
1.8.5.3
|
1.9.3
|
||||||
|
|
||||||
|
|
||||||
From ea5cf8801db979fa7d5f90ab3faf72eb22490f9b Mon Sep 17 00:00:00 2001
|
From c3017981f472b25d68ffb1cbb19760374707ecaf Mon Sep 17 00:00:00 2001
|
||||||
From: Matthew Garrett <matthew.garrett@nebula.com>
|
From: Matthew Garrett <matthew.garrett@nebula.com>
|
||||||
Date: Fri, 8 Feb 2013 11:12:13 -0800
|
Date: Fri, 8 Feb 2013 11:12:13 -0800
|
||||||
Subject: [PATCH 10/14] x86: Restrict MSR access when module loading is
|
Subject: [PATCH 10/14] x86: Restrict MSR access when module loading is
|
||||||
@ -552,10 +552,10 @@ index c9603ac80de5..8bef43fc3f40 100644
|
|||||||
err = -EFAULT;
|
err = -EFAULT;
|
||||||
break;
|
break;
|
||||||
--
|
--
|
||||||
1.8.5.3
|
1.9.3
|
||||||
|
|
||||||
|
|
||||||
From 2985684ff78972bde7ebf1e295b52afd9bea29e0 Mon Sep 17 00:00:00 2001
|
From f1ce1d6cea8ac32712f7a555c47223d5350979c2 Mon Sep 17 00:00:00 2001
|
||||||
From: Matthew Garrett <matthew.garrett@nebula.com>
|
From: Matthew Garrett <matthew.garrett@nebula.com>
|
||||||
Date: Fri, 9 Aug 2013 18:36:30 -0400
|
Date: Fri, 9 Aug 2013 18:36:30 -0400
|
||||||
Subject: [PATCH 11/14] Add option to automatically enforce module signatures
|
Subject: [PATCH 11/14] Add option to automatically enforce module signatures
|
||||||
@ -591,10 +591,10 @@ index 199f453cb4de..ec38acf00b40 100644
|
|||||||
290/040 ALL edd_mbr_sig_buffer EDD MBR signatures
|
290/040 ALL edd_mbr_sig_buffer EDD MBR signatures
|
||||||
2D0/A00 ALL e820_map E820 memory map table
|
2D0/A00 ALL e820_map E820 memory map table
|
||||||
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
|
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
|
||||||
index 5b8ec0f53b57..085d5eb36361 100644
|
index b660088c220d..b4229b168d4e 100644
|
||||||
--- a/arch/x86/Kconfig
|
--- a/arch/x86/Kconfig
|
||||||
+++ b/arch/x86/Kconfig
|
+++ b/arch/x86/Kconfig
|
||||||
@@ -1534,6 +1534,16 @@ config EFI_MIXED
|
@@ -1555,6 +1555,16 @@ config EFI_MIXED
|
||||||
|
|
||||||
If unsure, say N.
|
If unsure, say N.
|
||||||
|
|
||||||
@ -612,7 +612,7 @@ index 5b8ec0f53b57..085d5eb36361 100644
|
|||||||
def_bool y
|
def_bool y
|
||||||
prompt "Enable seccomp to safely compute untrusted bytecode"
|
prompt "Enable seccomp to safely compute untrusted bytecode"
|
||||||
diff --git a/arch/x86/boot/compressed/eboot.c b/arch/x86/boot/compressed/eboot.c
|
diff --git a/arch/x86/boot/compressed/eboot.c b/arch/x86/boot/compressed/eboot.c
|
||||||
index 1e6146137f8e..b00745ff398a 100644
|
index 0331d765c2bb..85defaf5a27c 100644
|
||||||
--- a/arch/x86/boot/compressed/eboot.c
|
--- a/arch/x86/boot/compressed/eboot.c
|
||||||
+++ b/arch/x86/boot/compressed/eboot.c
|
+++ b/arch/x86/boot/compressed/eboot.c
|
||||||
@@ -12,6 +12,7 @@
|
@@ -12,6 +12,7 @@
|
||||||
@ -634,7 +634,7 @@ index 1e6146137f8e..b00745ff398a 100644
|
|||||||
+ efi_guid_t var_guid = EFI_GLOBAL_VARIABLE_GUID;
|
+ efi_guid_t var_guid = EFI_GLOBAL_VARIABLE_GUID;
|
||||||
+ efi_status_t status;
|
+ efi_status_t status;
|
||||||
+
|
+
|
||||||
+ status = efi_call_phys5(sys_table->runtime->get_variable,
|
+ status = efi_early->call((unsigned long)sys_table->runtime->get_variable,
|
||||||
+ L"SecureBoot", &var_guid, NULL, &datasize, &sb);
|
+ L"SecureBoot", &var_guid, NULL, &datasize, &sb);
|
||||||
+
|
+
|
||||||
+ if (status != EFI_SUCCESS)
|
+ if (status != EFI_SUCCESS)
|
||||||
@ -644,7 +644,7 @@ index 1e6146137f8e..b00745ff398a 100644
|
|||||||
+ return 0;
|
+ return 0;
|
||||||
+
|
+
|
||||||
+
|
+
|
||||||
+ status = efi_call_phys5(sys_table->runtime->get_variable,
|
+ status = efi_early->call((unsigned long)sys_table->runtime->get_variable,
|
||||||
+ L"SetupMode", &var_guid, NULL, &datasize,
|
+ L"SetupMode", &var_guid, NULL, &datasize,
|
||||||
+ &setup);
|
+ &setup);
|
||||||
+
|
+
|
||||||
@ -687,7 +687,7 @@ index 225b0988043a..90dbfb73e11f 100644
|
|||||||
* The sentinel is set to a nonzero value (0xff) in header.S.
|
* The sentinel is set to a nonzero value (0xff) in header.S.
|
||||||
*
|
*
|
||||||
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
|
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
|
||||||
index 09c76d265550..5a61d732fd5c 100644
|
index 78a0e6298922..8ecfec85e527 100644
|
||||||
--- a/arch/x86/kernel/setup.c
|
--- a/arch/x86/kernel/setup.c
|
||||||
+++ b/arch/x86/kernel/setup.c
|
+++ b/arch/x86/kernel/setup.c
|
||||||
@@ -1142,6 +1142,12 @@ void __init setup_arch(char **cmdline_p)
|
@@ -1142,6 +1142,12 @@ void __init setup_arch(char **cmdline_p)
|
||||||
@ -721,7 +721,7 @@ index fc9b54eb779e..7377bc851461 100644
|
|||||||
|
|
||||||
extern int modules_disabled; /* for sysctl */
|
extern int modules_disabled; /* for sysctl */
|
||||||
diff --git a/kernel/module.c b/kernel/module.c
|
diff --git a/kernel/module.c b/kernel/module.c
|
||||||
index 2b9204fe055f..2b8cc2d57c16 100644
|
index 90be09d5da44..452079124fb7 100644
|
||||||
--- a/kernel/module.c
|
--- a/kernel/module.c
|
||||||
+++ b/kernel/module.c
|
+++ b/kernel/module.c
|
||||||
@@ -3836,6 +3836,13 @@ void module_layout(struct module *mod,
|
@@ -3836,6 +3836,13 @@ void module_layout(struct module *mod,
|
||||||
@ -739,11 +739,11 @@ index 2b9204fe055f..2b8cc2d57c16 100644
|
|||||||
{
|
{
|
||||||
#ifdef CONFIG_MODULE_SIG
|
#ifdef CONFIG_MODULE_SIG
|
||||||
--
|
--
|
||||||
1.8.5.3
|
1.9.3
|
||||||
|
|
||||||
|
|
||||||
From b2e4ea728ccab2befbd5fe1bd834881a7dd8f34b Mon Sep 17 00:00:00 2001
|
From 58bd85fa405992926e9c8c6205bda6580cc150ff Mon Sep 17 00:00:00 2001
|
||||||
From: Josh Boyer <jwboyer@redhat.com>
|
From: Josh Boyer <jwboyer@fedoraproject.org>
|
||||||
Date: Tue, 5 Feb 2013 19:25:05 -0500
|
Date: Tue, 5 Feb 2013 19:25:05 -0500
|
||||||
Subject: [PATCH 12/14] efi: Disable secure boot if shim is in insecure mode
|
Subject: [PATCH 12/14] efi: Disable secure boot if shim is in insecure mode
|
||||||
|
|
||||||
@ -753,13 +753,13 @@ MokSBState that does not have the runtime attribute set. Given that the
|
|||||||
user explicitly disabled validation, we can honor that and not enable
|
user explicitly disabled validation, we can honor that and not enable
|
||||||
secure boot mode if that variable is set.
|
secure boot mode if that variable is set.
|
||||||
|
|
||||||
Signed-off-by: Josh Boyer <jwboyer@redhat.com>
|
Signed-off-by: Josh Boyer <jwboyer@fedoraproject.org>
|
||||||
---
|
---
|
||||||
arch/x86/boot/compressed/eboot.c | 20 +++++++++++++++++++-
|
arch/x86/boot/compressed/eboot.c | 20 +++++++++++++++++++-
|
||||||
1 file changed, 19 insertions(+), 1 deletion(-)
|
1 file changed, 19 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
diff --git a/arch/x86/boot/compressed/eboot.c b/arch/x86/boot/compressed/eboot.c
|
diff --git a/arch/x86/boot/compressed/eboot.c b/arch/x86/boot/compressed/eboot.c
|
||||||
index b00745ff398a..bf42cc5f083d 100644
|
index 85defaf5a27c..b4013a4ba005 100644
|
||||||
--- a/arch/x86/boot/compressed/eboot.c
|
--- a/arch/x86/boot/compressed/eboot.c
|
||||||
+++ b/arch/x86/boot/compressed/eboot.c
|
+++ b/arch/x86/boot/compressed/eboot.c
|
||||||
@@ -812,8 +812,9 @@ out:
|
@@ -812,8 +812,9 @@ out:
|
||||||
@ -781,7 +781,7 @@ index b00745ff398a..bf42cc5f083d 100644
|
|||||||
+ * doesn't have the runtime attribute set, we might as well honor that.
|
+ * doesn't have the runtime attribute set, we might as well honor that.
|
||||||
+ */
|
+ */
|
||||||
+ var_guid = EFI_SHIM_LOCK_GUID;
|
+ var_guid = EFI_SHIM_LOCK_GUID;
|
||||||
+ status = efi_call_phys5(sys_table->runtime->get_variable,
|
+ status = efi_early->call((unsigned long)sys_table->runtime->get_variable,
|
||||||
+ L"MokSBState", &var_guid, &attr, &datasize,
|
+ L"MokSBState", &var_guid, &attr, &datasize,
|
||||||
+ &moksbstate);
|
+ &moksbstate);
|
||||||
+
|
+
|
||||||
@ -798,10 +798,10 @@ index b00745ff398a..bf42cc5f083d 100644
|
|||||||
}
|
}
|
||||||
|
|
||||||
--
|
--
|
||||||
1.8.5.3
|
1.9.3
|
||||||
|
|
||||||
|
|
||||||
From fb418c682d01c447d30b5591a591fdbf33b1334e Mon Sep 17 00:00:00 2001
|
From 156ea92ad8cb0716fda8a4b9fe7cb21b39d0e405 Mon Sep 17 00:00:00 2001
|
||||||
From: Josh Boyer <jwboyer@fedoraproject.org>
|
From: Josh Boyer <jwboyer@fedoraproject.org>
|
||||||
Date: Tue, 27 Aug 2013 13:28:43 -0400
|
Date: Tue, 27 Aug 2013 13:28:43 -0400
|
||||||
Subject: [PATCH 13/14] efi: Make EFI_SECURE_BOOT_SIG_ENFORCE depend on EFI
|
Subject: [PATCH 13/14] efi: Make EFI_SECURE_BOOT_SIG_ENFORCE depend on EFI
|
||||||
@ -815,10 +815,10 @@ Signed-off-by: Josh Boyer <jwboyer@fedoraproject.org>
|
|||||||
1 file changed, 2 insertions(+), 1 deletion(-)
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
|
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
|
||||||
index 085d5eb36361..3e8d398a976d 100644
|
index b4229b168d4e..6b08f48417b0 100644
|
||||||
--- a/arch/x86/Kconfig
|
--- a/arch/x86/Kconfig
|
||||||
+++ b/arch/x86/Kconfig
|
+++ b/arch/x86/Kconfig
|
||||||
@@ -1535,7 +1535,8 @@ config EFI_MIXED
|
@@ -1556,7 +1556,8 @@ config EFI_MIXED
|
||||||
If unsure, say N.
|
If unsure, say N.
|
||||||
|
|
||||||
config EFI_SECURE_BOOT_SIG_ENFORCE
|
config EFI_SECURE_BOOT_SIG_ENFORCE
|
||||||
@ -829,10 +829,10 @@ index 085d5eb36361..3e8d398a976d 100644
|
|||||||
---help---
|
---help---
|
||||||
UEFI Secure Boot provides a mechanism for ensuring that the
|
UEFI Secure Boot provides a mechanism for ensuring that the
|
||||||
--
|
--
|
||||||
1.8.5.3
|
1.9.3
|
||||||
|
|
||||||
|
|
||||||
From 87bf357dd4589cfca043ec4b641b912a088b1234 Mon Sep 17 00:00:00 2001
|
From 8934fb355e0be514c9735bfa3afb0d28920a0210 Mon Sep 17 00:00:00 2001
|
||||||
From: Josh Boyer <jwboyer@fedoraproject.org>
|
From: Josh Boyer <jwboyer@fedoraproject.org>
|
||||||
Date: Tue, 27 Aug 2013 13:33:03 -0400
|
Date: Tue, 27 Aug 2013 13:33:03 -0400
|
||||||
Subject: [PATCH 14/14] efi: Add EFI_SECURE_BOOT bit
|
Subject: [PATCH 14/14] efi: Add EFI_SECURE_BOOT bit
|
||||||
@ -847,7 +847,7 @@ Signed-off-by: Josh Boyer <jwboyer@fedoraproject.org>
|
|||||||
2 files changed, 3 insertions(+)
|
2 files changed, 3 insertions(+)
|
||||||
|
|
||||||
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
|
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
|
||||||
index 5a61d732fd5c..23fe9bf3c401 100644
|
index 8ecfec85e527..5ce785fc9f05 100644
|
||||||
--- a/arch/x86/kernel/setup.c
|
--- a/arch/x86/kernel/setup.c
|
||||||
+++ b/arch/x86/kernel/setup.c
|
+++ b/arch/x86/kernel/setup.c
|
||||||
@@ -1144,7 +1144,9 @@ void __init setup_arch(char **cmdline_p)
|
@@ -1144,7 +1144,9 @@ void __init setup_arch(char **cmdline_p)
|
||||||
@ -861,10 +861,10 @@ index 5a61d732fd5c..23fe9bf3c401 100644
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
diff --git a/include/linux/efi.h b/include/linux/efi.h
|
diff --git a/include/linux/efi.h b/include/linux/efi.h
|
||||||
index 6c100ff0cae4..3a77a70fff27 100644
|
index 41bbf8ba4ba8..e73f391fd3c8 100644
|
||||||
--- a/include/linux/efi.h
|
--- a/include/linux/efi.h
|
||||||
+++ b/include/linux/efi.h
|
+++ b/include/linux/efi.h
|
||||||
@@ -899,6 +899,7 @@ extern int __init efi_setup_pcdp_console(char *);
|
@@ -917,6 +917,7 @@ extern int __init efi_setup_pcdp_console(char *);
|
||||||
#define EFI_MEMMAP 4 /* Can we use EFI memory map? */
|
#define EFI_MEMMAP 4 /* Can we use EFI memory map? */
|
||||||
#define EFI_64BIT 5 /* Is the firmware 64-bit? */
|
#define EFI_64BIT 5 /* Is the firmware 64-bit? */
|
||||||
#define EFI_ARCH_1 6 /* First arch-specific bit */
|
#define EFI_ARCH_1 6 /* First arch-specific bit */
|
||||||
@ -873,5 +873,5 @@ index 6c100ff0cae4..3a77a70fff27 100644
|
|||||||
#ifdef CONFIG_EFI
|
#ifdef CONFIG_EFI
|
||||||
/*
|
/*
|
||||||
--
|
--
|
||||||
1.8.5.3
|
1.9.3
|
||||||
|
|
||||||
|
1
sources
1
sources
@ -1,2 +1,3 @@
|
|||||||
97ca1625bb40368dc41b9a7971549071 linux-3.15.tar.xz
|
97ca1625bb40368dc41b9a7971549071 linux-3.15.tar.xz
|
||||||
ef8f4db937f521a7e323ec589536ba25 perf-man-3.15.tar.gz
|
ef8f4db937f521a7e323ec589536ba25 perf-man-3.15.tar.gz
|
||||||
|
95407bd4c78733772a0fe8dea00be3b7 patch-3.15-git1.xz
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
Bugzilla: N/A
|
Bugzilla: N/A
|
||||||
Upstream-status: Fedora mustard
|
Upstream-status: Fedora mustard
|
||||||
|
|
||||||
From 29c1f71a2d0845a71ea2ebd2fb33542373dc52dd Mon Sep 17 00:00:00 2001
|
From 603230771bdbca78e6530d29dbe8b239cdcc8473 Mon Sep 17 00:00:00 2001
|
||||||
From: Kyle McMartin <kyle@redhat.com>
|
From: Kyle McMartin <kyle@redhat.com>
|
||||||
Date: Fri, 30 Aug 2013 09:28:51 -0400
|
Date: Fri, 30 Aug 2013 09:28:51 -0400
|
||||||
Subject: [PATCH] Add sysrq option to disable secure boot mode
|
Subject: [PATCH] Add sysrq option to disable secure boot mode
|
||||||
@ -17,7 +17,7 @@ Subject: [PATCH] Add sysrq option to disable secure boot mode
|
|||||||
7 files changed, 65 insertions(+), 10 deletions(-)
|
7 files changed, 65 insertions(+), 10 deletions(-)
|
||||||
|
|
||||||
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
|
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
|
||||||
index c773add..92c480c 100644
|
index 5ce785fc9f05..2024cbb7169b 100644
|
||||||
--- a/arch/x86/kernel/setup.c
|
--- a/arch/x86/kernel/setup.c
|
||||||
+++ b/arch/x86/kernel/setup.c
|
+++ b/arch/x86/kernel/setup.c
|
||||||
@@ -70,6 +70,11 @@
|
@@ -70,6 +70,11 @@
|
||||||
@ -32,7 +32,7 @@ index c773add..92c480c 100644
|
|||||||
#include <video/edid.h>
|
#include <video/edid.h>
|
||||||
|
|
||||||
#include <asm/mtrr.h>
|
#include <asm/mtrr.h>
|
||||||
@@ -1275,6 +1280,37 @@ void __init i386_reserve_resources(void)
|
@@ -1268,6 +1273,37 @@ void __init i386_reserve_resources(void)
|
||||||
|
|
||||||
#endif /* CONFIG_X86_32 */
|
#endif /* CONFIG_X86_32 */
|
||||||
|
|
||||||
@ -71,10 +71,10 @@ index c773add..92c480c 100644
|
|||||||
.notifier_call = dump_kernel_offset
|
.notifier_call = dump_kernel_offset
|
||||||
};
|
};
|
||||||
diff --git a/drivers/input/misc/uinput.c b/drivers/input/misc/uinput.c
|
diff --git a/drivers/input/misc/uinput.c b/drivers/input/misc/uinput.c
|
||||||
index 7728359..a3e8ba8 100644
|
index 856936247500..1e87a1ea704b 100644
|
||||||
--- a/drivers/input/misc/uinput.c
|
--- a/drivers/input/misc/uinput.c
|
||||||
+++ b/drivers/input/misc/uinput.c
|
+++ b/drivers/input/misc/uinput.c
|
||||||
@@ -351,6 +351,7 @@ static int uinput_allocate_device(struct uinput_device *udev)
|
@@ -353,6 +353,7 @@ static int uinput_allocate_device(struct uinput_device *udev)
|
||||||
if (!udev->dev)
|
if (!udev->dev)
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
|
||||||
@ -83,10 +83,10 @@ index 7728359..a3e8ba8 100644
|
|||||||
input_set_drvdata(udev->dev, udev);
|
input_set_drvdata(udev->dev, udev);
|
||||||
|
|
||||||
diff --git a/drivers/tty/sysrq.c b/drivers/tty/sysrq.c
|
diff --git a/drivers/tty/sysrq.c b/drivers/tty/sysrq.c
|
||||||
index ce396ec..aee594a 100644
|
index 454b65898e2c..19d67594a3b8 100644
|
||||||
--- a/drivers/tty/sysrq.c
|
--- a/drivers/tty/sysrq.c
|
||||||
+++ b/drivers/tty/sysrq.c
|
+++ b/drivers/tty/sysrq.c
|
||||||
@@ -462,6 +462,7 @@ static struct sysrq_key_op *sysrq_key_table[36] = {
|
@@ -463,6 +463,7 @@ static struct sysrq_key_op *sysrq_key_table[36] = {
|
||||||
&sysrq_showstate_blocked_op, /* w */
|
&sysrq_showstate_blocked_op, /* w */
|
||||||
/* x: May be registered on ppc/powerpc for xmon */
|
/* x: May be registered on ppc/powerpc for xmon */
|
||||||
/* x: May be registered on sparc64 for global PMU dump */
|
/* x: May be registered on sparc64 for global PMU dump */
|
||||||
@ -94,7 +94,7 @@ index ce396ec..aee594a 100644
|
|||||||
NULL, /* x */
|
NULL, /* x */
|
||||||
/* y: May be registered on sparc64 for global register dump */
|
/* y: May be registered on sparc64 for global register dump */
|
||||||
NULL, /* y */
|
NULL, /* y */
|
||||||
@@ -505,7 +506,7 @@ static void __sysrq_put_key_op(int key, struct sysrq_key_op *op_p)
|
@@ -506,7 +507,7 @@ static void __sysrq_put_key_op(int key, struct sysrq_key_op *op_p)
|
||||||
sysrq_key_table[i] = op_p;
|
sysrq_key_table[i] = op_p;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -103,7 +103,7 @@ index ce396ec..aee594a 100644
|
|||||||
{
|
{
|
||||||
struct sysrq_key_op *op_p;
|
struct sysrq_key_op *op_p;
|
||||||
int orig_log_level;
|
int orig_log_level;
|
||||||
@@ -525,11 +526,15 @@ void __handle_sysrq(int key, bool check_mask)
|
@@ -526,11 +527,15 @@ void __handle_sysrq(int key, bool check_mask)
|
||||||
|
|
||||||
op_p = __sysrq_get_key_op(key);
|
op_p = __sysrq_get_key_op(key);
|
||||||
if (op_p) {
|
if (op_p) {
|
||||||
@ -120,7 +120,7 @@ index ce396ec..aee594a 100644
|
|||||||
printk("%s\n", op_p->action_msg);
|
printk("%s\n", op_p->action_msg);
|
||||||
console_loglevel = orig_log_level;
|
console_loglevel = orig_log_level;
|
||||||
op_p->handler(key);
|
op_p->handler(key);
|
||||||
@@ -560,7 +565,7 @@ void __handle_sysrq(int key, bool check_mask)
|
@@ -562,7 +567,7 @@ void __handle_sysrq(int key, bool check_mask)
|
||||||
void handle_sysrq(int key)
|
void handle_sysrq(int key)
|
||||||
{
|
{
|
||||||
if (sysrq_on())
|
if (sysrq_on())
|
||||||
@ -129,7 +129,7 @@ index ce396ec..aee594a 100644
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL(handle_sysrq);
|
EXPORT_SYMBOL(handle_sysrq);
|
||||||
|
|
||||||
@@ -640,7 +645,7 @@ static void sysrq_do_reset(unsigned long _state)
|
@@ -642,7 +647,7 @@ static void sysrq_do_reset(unsigned long _state)
|
||||||
static void sysrq_handle_reset_request(struct sysrq_state *state)
|
static void sysrq_handle_reset_request(struct sysrq_state *state)
|
||||||
{
|
{
|
||||||
if (state->reset_requested)
|
if (state->reset_requested)
|
||||||
@ -138,7 +138,7 @@ index ce396ec..aee594a 100644
|
|||||||
|
|
||||||
if (sysrq_reset_downtime_ms)
|
if (sysrq_reset_downtime_ms)
|
||||||
mod_timer(&state->keyreset_timer,
|
mod_timer(&state->keyreset_timer,
|
||||||
@@ -791,8 +796,10 @@ static bool sysrq_handle_keypress(struct sysrq_state *sysrq,
|
@@ -793,8 +798,10 @@ static bool sysrq_handle_keypress(struct sysrq_state *sysrq,
|
||||||
|
|
||||||
default:
|
default:
|
||||||
if (sysrq->active && value && value != 2) {
|
if (sysrq->active && value && value != 2) {
|
||||||
@ -150,7 +150,7 @@ index ce396ec..aee594a 100644
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -1080,7 +1087,7 @@ static ssize_t write_sysrq_trigger(struct file *file, const char __user *buf,
|
@@ -1089,7 +1096,7 @@ static ssize_t write_sysrq_trigger(struct file *file, const char __user *buf,
|
||||||
|
|
||||||
if (get_user(c, buf))
|
if (get_user(c, buf))
|
||||||
return -EFAULT;
|
return -EFAULT;
|
||||||
@ -160,7 +160,7 @@ index ce396ec..aee594a 100644
|
|||||||
|
|
||||||
return count;
|
return count;
|
||||||
diff --git a/include/linux/input.h b/include/linux/input.h
|
diff --git a/include/linux/input.h b/include/linux/input.h
|
||||||
index 82ce323..9e534f2 100644
|
index 82ce323b9986..9e534f228945 100644
|
||||||
--- a/include/linux/input.h
|
--- a/include/linux/input.h
|
||||||
+++ b/include/linux/input.h
|
+++ b/include/linux/input.h
|
||||||
@@ -42,6 +42,7 @@ struct input_value {
|
@@ -42,6 +42,7 @@ struct input_value {
|
||||||
@ -190,7 +190,7 @@ index 82ce323..9e534f2 100644
|
|||||||
* Verify that we are in sync with input_device_id mod_devicetable.h #defines
|
* Verify that we are in sync with input_device_id mod_devicetable.h #defines
|
||||||
*/
|
*/
|
||||||
diff --git a/include/linux/sysrq.h b/include/linux/sysrq.h
|
diff --git a/include/linux/sysrq.h b/include/linux/sysrq.h
|
||||||
index 387fa7d..4b07e30 100644
|
index 387fa7d05c98..4b07e30b3279 100644
|
||||||
--- a/include/linux/sysrq.h
|
--- a/include/linux/sysrq.h
|
||||||
+++ b/include/linux/sysrq.h
|
+++ b/include/linux/sysrq.h
|
||||||
@@ -28,6 +28,8 @@
|
@@ -28,6 +28,8 @@
|
||||||
@ -217,7 +217,7 @@ index 387fa7d..4b07e30 100644
|
|||||||
int unregister_sysrq_key(int key, struct sysrq_key_op *op);
|
int unregister_sysrq_key(int key, struct sysrq_key_op *op);
|
||||||
struct sysrq_key_op *__sysrq_get_key_op(int key);
|
struct sysrq_key_op *__sysrq_get_key_op(int key);
|
||||||
diff --git a/kernel/debug/kdb/kdb_main.c b/kernel/debug/kdb/kdb_main.c
|
diff --git a/kernel/debug/kdb/kdb_main.c b/kernel/debug/kdb/kdb_main.c
|
||||||
index 0b097c8..18b400d 100644
|
index 2f7c760305ca..abb29d9811af 100644
|
||||||
--- a/kernel/debug/kdb/kdb_main.c
|
--- a/kernel/debug/kdb/kdb_main.c
|
||||||
+++ b/kernel/debug/kdb/kdb_main.c
|
+++ b/kernel/debug/kdb/kdb_main.c
|
||||||
@@ -1924,7 +1924,7 @@ static int kdb_sr(int argc, const char **argv)
|
@@ -1924,7 +1924,7 @@ static int kdb_sr(int argc, const char **argv)
|
||||||
@ -230,7 +230,7 @@ index 0b097c8..18b400d 100644
|
|||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
diff --git a/kernel/module.c b/kernel/module.c
|
diff --git a/kernel/module.c b/kernel/module.c
|
||||||
index 92b73b1..a44fb2a 100644
|
index 452079124fb7..37dabbc1e902 100644
|
||||||
--- a/kernel/module.c
|
--- a/kernel/module.c
|
||||||
+++ b/kernel/module.c
|
+++ b/kernel/module.c
|
||||||
@@ -109,9 +109,9 @@ struct list_head *kdb_modules = &modules; /* kdb needs the list of modules */
|
@@ -109,9 +109,9 @@ struct list_head *kdb_modules = &modules; /* kdb needs the list of modules */
|
||||||
@ -246,5 +246,5 @@ index 92b73b1..a44fb2a 100644
|
|||||||
static int param_set_bool_enable_only(const char *val,
|
static int param_set_bool_enable_only(const char *val,
|
||||||
const struct kernel_param *kp)
|
const struct kernel_param *kp)
|
||||||
--
|
--
|
||||||
1.8.4.2
|
1.9.3
|
||||||
|
|
||||||
|
111
x86-vdso-Fix-vdso_install.patch
Normal file
111
x86-vdso-Fix-vdso_install.patch
Normal file
@ -0,0 +1,111 @@
|
|||||||
|
|
||||||
|
Delivered-To: jwboyer@gmail.com
|
||||||
|
Received: by 10.76.6.212 with SMTP id d20csp275722oaa;
|
||||||
|
Wed, 11 Jun 2014 09:20:25 -0700 (PDT)
|
||||||
|
X-Received: by 10.69.19.225 with SMTP id gx1mr6471089pbd.34.1402503625308;
|
||||||
|
Wed, 11 Jun 2014 09:20:25 -0700 (PDT)
|
||||||
|
Return-Path: <luto@amacapital.net>
|
||||||
|
Received: from bastion.fedoraproject.org (bastion02.fedoraproject.org. [209.132.181.3])
|
||||||
|
by mx.google.com with ESMTP id ql2si38457915pbb.240.2014.06.11.09.20.24
|
||||||
|
for <jwboyer@gmail.com>;
|
||||||
|
Wed, 11 Jun 2014 09:20:25 -0700 (PDT)
|
||||||
|
Received-SPF: softfail (google.com: domain of transitioning luto@amacapital.net does not designate 209.132.181.3 as permitted sender) client-ip=209.132.181.3;
|
||||||
|
Authentication-Results: mx.google.com;
|
||||||
|
spf=softfail (google.com: domain of transitioning luto@amacapital.net does not designate 209.132.181.3 as permitted sender) smtp.mail=luto@amacapital.net
|
||||||
|
Received: by bastion02.phx2.fedoraproject.org (Postfix)
|
||||||
|
id ABE9740A20; Wed, 11 Jun 2014 16:20:24 +0000 (UTC)
|
||||||
|
Delivered-To: jwboyer@fedoraproject.org
|
||||||
|
Received: from mx1.redhat.com (ext-mx14.extmail.prod.ext.phx2.redhat.com [10.5.110.19])
|
||||||
|
by bastion02.phx2.fedoraproject.org (Postfix) with ESMTP id 9199C40A1F
|
||||||
|
for <jwboyer@fedoraproject.org>; Wed, 11 Jun 2014 16:20:24 +0000 (UTC)
|
||||||
|
Received: from mail-pd0-f182.google.com (mail-pd0-f182.google.com [209.85.192.182])
|
||||||
|
by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s5BGKMOu006187
|
||||||
|
for <jwboyer@fedoraproject.org>; Wed, 11 Jun 2014 12:20:22 -0400
|
||||||
|
Received: by mail-pd0-f182.google.com with SMTP id y13so1508044pdi.41
|
||||||
|
for <jwboyer@fedoraproject.org>; Wed, 11 Jun 2014 09:20:22 -0700 (PDT)
|
||||||
|
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
|
||||||
|
d=1e100.net; s=20130820;
|
||||||
|
h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to
|
||||||
|
:references:in-reply-to:references;
|
||||||
|
bh=fvSn8VazUxkz9ExMYKy6+VgDXUnYm2e2axImee41iYo=;
|
||||||
|
b=doKgULGvb83kqKC2GoYr96Mlccfs3qcAuUmxMaHHgsoaLVoIpjQHWAR5Ljlf1urgNH
|
||||||
|
5dpvJa3vFGXcfv0Vqz/23JTrdN80HDpaTWO/nqYRXsgAL8pv/eeqQSbcDCEmN7u+cxjE
|
||||||
|
oQN4uemKozS3d+oz85NkvcKfaNo9TClMYfVfUfmyTw/ozP5mwB3r7W1ETQtzX9JVvlTy
|
||||||
|
SMn54//MfdI8OLFUHIDCkm/wRcZWVTByQGV0KWNw0e6M4e5b9K1QdMrc6JRggwjb83Ac
|
||||||
|
Jcmkw8T0QAUEMcPJb9RG4FlSWnpWNibDkLv5JQQXBjkkJWr15hyDSAfSsA+oZZRtTIpA
|
||||||
|
nBeg==
|
||||||
|
X-Gm-Message-State: ALoCoQkMXf8ZMZ5uLDoOV8k+pACZwfbQeckbP3vuvgRzInhcXkweeCIrAi3AC/TDzSbLfaNVjprH
|
||||||
|
X-Received: by 10.69.31.97 with SMTP id kl1mr6531199pbd.162.1402503622428;
|
||||||
|
Wed, 11 Jun 2014 09:20:22 -0700 (PDT)
|
||||||
|
Received: from localhost (50-76-60-73-ip-static.hfc.comcastbusiness.net. [50.76.60.73])
|
||||||
|
by mx.google.com with ESMTPSA id ga1sm75742069pbb.82.2014.06.11.09.20.21
|
||||||
|
for <multiple recipients>
|
||||||
|
(version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);
|
||||||
|
Wed, 11 Jun 2014 09:20:21 -0700 (PDT)
|
||||||
|
From: Andy Lutomirski <luto@amacapital.net>
|
||||||
|
To: "H. Peter Anvin" <hpa@zytor.com>, Josh Boyer <jwboyer@fedoraproject.org>
|
||||||
|
Cc: Michal Marek <mmarek@suse.cz>, linux-kbuild@vger.kernel.org,
|
||||||
|
"Linux-Kernel@Vger. Kernel. Org" <linux-kernel@vger.kernel.org>,
|
||||||
|
Andy Lutomirski <luto@amacapital.net>
|
||||||
|
Subject: [PATCH 2/2] x86,vdso: Fix vdso_install
|
||||||
|
Date: Wed, 11 Jun 2014 09:20:07 -0700
|
||||||
|
Message-Id: <fe51e9f5c338d33b1a8b20813441538df5e17add.1402503408.git.luto@amacapital.net>
|
||||||
|
X-Mailer: git-send-email 1.9.3
|
||||||
|
In-Reply-To: <cover.1402503408.git.luto@amacapital.net>
|
||||||
|
References: <5398749B.4090209@zytor.com>
|
||||||
|
<cover.1402503408.git.luto@amacapital.net>
|
||||||
|
In-Reply-To: <cover.1402503408.git.luto@amacapital.net>
|
||||||
|
References: <cover.1402503408.git.luto@amacapital.net>
|
||||||
|
X-RedHat-Spam-Score: -2.01 (BAYES_00,DCC_REPUT_13_19,RCVD_IN_DNSWL_NONE,SPF_PASS,URIBL_BLOCKED)
|
||||||
|
X-Scanned-By: MIMEDefang 2.68 on 10.5.110.19
|
||||||
|
|
||||||
|
Rather than monkeying with barely-comprehensible static pattern
|
||||||
|
rules, just use an explicit loop.
|
||||||
|
|
||||||
|
Signed-off-by: Andy Lutomirski <luto@amacapital.net>
|
||||||
|
---
|
||||||
|
arch/x86/vdso/Makefile | 20 +++++++-------------
|
||||||
|
1 file changed, 7 insertions(+), 13 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/arch/x86/vdso/Makefile b/arch/x86/vdso/Makefile
|
||||||
|
index 9769df0..b1c70cc 100644
|
||||||
|
--- a/arch/x86/vdso/Makefile
|
||||||
|
+++ b/arch/x86/vdso/Makefile
|
||||||
|
@@ -9,11 +9,6 @@ VDSOX32-$(CONFIG_X86_X32_ABI) := y
|
||||||
|
VDSO32-$(CONFIG_X86_32) := y
|
||||||
|
VDSO32-$(CONFIG_COMPAT) := y
|
||||||
|
|
||||||
|
-vdso-install-$(VDSO64-y) += vdso.so
|
||||||
|
-vdso-install-$(VDSOX32-y) += vdsox32.so
|
||||||
|
-vdso-install-$(VDSO32-y) += $(vdso32-images)
|
||||||
|
-
|
||||||
|
-
|
||||||
|
# files to link into the vdso
|
||||||
|
vobjs-y := vdso-note.o vclock_gettime.o vgetcpu.o
|
||||||
|
|
||||||
|
@@ -176,15 +171,14 @@ VDSO_LDFLAGS = -fPIC -shared $(call cc-ldoption, -Wl$(comma)--hash-style=sysv) \
|
||||||
|
GCOV_PROFILE := n
|
||||||
|
|
||||||
|
#
|
||||||
|
-# Install the unstripped copy of vdso*.so listed in $(vdso-install-y).
|
||||||
|
+# Install the unstripped copies of vdso*.so listed in $(vdso-install-y).
|
||||||
|
#
|
||||||
|
-quiet_cmd_vdso_install = INSTALL $@
|
||||||
|
- cmd_vdso_install = cp $(obj)/$@.dbg $(MODLIB)/vdso/$@
|
||||||
|
-$(vdso-install-y): %.so: $(obj)/%.so.dbg FORCE
|
||||||
|
- @mkdir -p $(MODLIB)/vdso
|
||||||
|
- $(call cmd,vdso_install)
|
||||||
|
+quiet_cmd_vdso_install = INSTALL $(sofile)
|
||||||
|
+ cmd_vdso_install = cp $(obj)/$(sofile).dbg $(MODLIB)/vdso/$(sofile)
|
||||||
|
|
||||||
|
-PHONY += vdso_install $(vdso-install-y)
|
||||||
|
-vdso_install: $(vdso-install-y)
|
||||||
|
+PHONY += vdso_install
|
||||||
|
+vdso_install: $(vdso_img_sodbg:%=$(obj)/%) FORCE
|
||||||
|
+ @mkdir -p $(MODLIB)/vdso
|
||||||
|
+ @$(foreach sofile,$(vdso_img_sodbg:%.dbg=%),$(call recipe-cmd,vdso_install);)
|
||||||
|
|
||||||
|
clean-files := vdso32-syscall* vdso32-sysenter* vdso32-int80*
|
||||||
|
--
|
||||||
|
1.9.3
|
||||||
|
|
Loading…
Reference in New Issue
Block a user