diff --git a/.gitignore b/.gitignore index 49bbef401..165240bfc 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,4 @@ clog *.rpm kernel-2.6.*/ /patch-2.6.37-rc1.bz2 -/patch-2.6.37-rc1-git7.bz2 +/patch-2.6.37-rc1-git10.bz2 diff --git a/config-generic b/config-generic index 9a0b10bc7..5b6b2912d 100644 --- a/config-generic +++ b/config-generic @@ -3670,6 +3670,7 @@ CONFIG_KGDB_LOW_LEVEL_TRAP=y # Security options # CONFIG_SECURITY=y +# CONFIG_SECURITY_DMESG_RESTRICT is not set CONFIG_SECURITY_NETWORK=y CONFIG_SECURITY_NETWORK_XFRM=y # CONFIG_SECURITY_PATH is not set @@ -4019,6 +4020,8 @@ CONFIG_LEDS_REGULATOR=m CONFIG_LEDS_LT3593=m CONFIG_LEDS_TRIGGER_GPIO=m CONFIG_LEDS_INTEL_SS4200=m +CONFIG_LEDS_LP5521=m +CONFIG_LEDS_LP5523=m CONFIG_DMADEVICES=y CONFIG_DMA_ENGINE=y diff --git a/kernel.spec b/kernel.spec index 5d2afdb82..7f1cfd531 100644 --- a/kernel.spec +++ b/kernel.spec @@ -84,7 +84,7 @@ Summary: The Linux kernel # The rc snapshot level %define rcrev 1 # The git snapshot level -%define gitrev 7 +%define gitrev 10 # Set rpm version accordingly %define rpmversion 2.6.%{upstream_sublevel} %endif @@ -693,7 +693,6 @@ Patch12018: neuter_intel_microcode_load.patch Patch12030: tpm-fix-stall-on-boot.patch # Runtime power management -Patch12200: linux-2.6-bluetooth-autosuspend.patch Patch12203: linux-2.6-usb-pci-autosuspend.patch Patch12204: linux-2.6-enable-more-pci-autosuspend.patch Patch12205: runtime_pm_fixups.patch @@ -1281,7 +1280,6 @@ ApplyPatch neuter_intel_microcode_load.patch ApplyPatch tpm-fix-stall-on-boot.patch # Runtime PM -ApplyPatch linux-2.6-bluetooth-autosuspend.patch ApplyPatch linux-2.6-usb-pci-autosuspend.patch ApplyPatch linux-2.6-enable-more-pci-autosuspend.patch ApplyPatch runtime_pm_fixups.patch @@ -1901,6 +1899,13 @@ fi # || || %changelog +* Sat Nov 13 2010 Kyle McMartin 2.6.37-0.1.rc1.git10 +- Linux 2.6.37-rc1-git10 +- SECURITY_DMESG_RESTRICT added, the principle of least surprise dictates + we should probably have it off. If you want to restrict dmesg access + you may use the kernel.dmesg_restrict sysctl. +- linux-2.6-bluetooth-autosuspend.patch: merged upstream. + * Tue Nov 09 2010 Kyle McMartin 2.6.37-0.1.rc1.git7 - Linux 2.6.37-rc1-git7 diff --git a/linux-2.6-bluetooth-autosuspend.patch b/linux-2.6-bluetooth-autosuspend.patch deleted file mode 100644 index 663b79979..000000000 --- a/linux-2.6-bluetooth-autosuspend.patch +++ /dev/null @@ -1,159 +0,0 @@ -commit 6aa42966dea9a1fc02a714211ea489c3278bf8d4 -Author: Matthew Garrett -Date: Thu Sep 16 13:34:55 2010 -0400 - - bluetooth: Take a runtime pm reference on hid connections - - Bluetooth runtime PM interacts badly with input devices - the connection - will be dropped if the device becomes idle, resulting in noticable lag when - the user interacts with the input device again. Bump the pm runtime count - when the device is associated and release it when it's disassociated in - order to avoid this. - - Signed-off-by: Matthew Garrett - -diff --git a/net/bluetooth/hidp/core.c b/net/bluetooth/hidp/core.c -index bfe641b..a4489a7 100644 ---- a/net/bluetooth/hidp/core.c -+++ b/net/bluetooth/hidp/core.c -@@ -36,6 +36,7 @@ - #include - #include - #include -+#include - #include - - #include -@@ -622,6 +623,14 @@ static int hidp_session(void *arg) - return 0; - } - -+static struct hci_dev *hidp_get_hci(struct hidp_session *session) -+{ -+ bdaddr_t *src = &bt_sk(session->ctrl_sock->sk)->src; -+ bdaddr_t *dst = &bt_sk(session->ctrl_sock->sk)->dst; -+ -+ return hci_get_route(dst, src); -+} -+ - static struct device *hidp_get_device(struct hidp_session *session) - { - bdaddr_t *src = &bt_sk(session->ctrl_sock->sk)->src; -@@ -819,6 +828,7 @@ fault: - int hidp_add_connection(struct hidp_connadd_req *req, struct socket *ctrl_sock, struct socket *intr_sock) - { - struct hidp_session *session, *s; -+ struct hci_dev *hdev; - int err; - - BT_DBG(""); -@@ -889,6 +899,10 @@ int hidp_add_connection(struct hidp_connadd_req *req, struct socket *ctrl_sock, - hidp_input_event(session->input, EV_LED, 0, 0); - } - -+ hdev = hidp_get_hci(session); -+ pm_runtime_get(hdev->parent); -+ hci_dev_put(hdev); -+ - up_write(&hidp_session_sem); - return 0; - -@@ -925,6 +939,7 @@ failed: - int hidp_del_connection(struct hidp_conndel_req *req) - { - struct hidp_session *session; -+ struct hci_dev *hdev; - int err = 0; - - BT_DBG(""); -@@ -952,6 +967,9 @@ int hidp_del_connection(struct hidp_conndel_req *req) - } else - err = -ENOENT; - -+ hdev = hidp_get_hci(session); -+ pm_runtime_put(hdev->parent); -+ hci_dev_put(hdev); - up_read(&hidp_session_sem); - return err; - } - -commit 482eca592615e85b048753750b101d051b77fde9 -Author: Matthew Garrett -Date: Thu Sep 16 13:49:24 2010 -0400 - - bluetooth: Remove some unnecessary error messages - - The main reason for these urbs to error out on submission is that runtime - pm has kicked in, which is unnecessary noise. Let's just drop them. - - Signed-off-by: Matthew Garrett - -diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c -index d22ce3c..3ace025 100644 ---- a/drivers/bluetooth/btusb.c -+++ b/drivers/bluetooth/btusb.c -@@ -229,11 +229,8 @@ static void btusb_intr_complete(struct urb *urb) - usb_anchor_urb(urb, &data->intr_anchor); - - err = usb_submit_urb(urb, GFP_ATOMIC); -- if (err < 0) { -- BT_ERR("%s urb %p failed to resubmit (%d)", -- hdev->name, urb, -err); -+ if (err < 0) - usb_unanchor_urb(urb); -- } - } - - static int btusb_submit_intr_urb(struct hci_dev *hdev, gfp_t mem_flags) -@@ -313,11 +310,8 @@ static void btusb_bulk_complete(struct urb *urb) - usb_mark_last_busy(data->udev); - - err = usb_submit_urb(urb, GFP_ATOMIC); -- if (err < 0) { -- BT_ERR("%s urb %p failed to resubmit (%d)", -- hdev->name, urb, -err); -+ if (err < 0) - usb_unanchor_urb(urb); -- } - } - - static int btusb_submit_bulk_urb(struct hci_dev *hdev, gfp_t mem_flags) -@@ -402,11 +396,8 @@ static void btusb_isoc_complete(struct urb *urb) - usb_anchor_urb(urb, &data->isoc_anchor); - - err = usb_submit_urb(urb, GFP_ATOMIC); -- if (err < 0) { -- BT_ERR("%s urb %p failed to resubmit (%d)", -- hdev->name, urb, -err); -+ if (err < 0) - usb_unanchor_urb(urb); -- } - } - - static void inline __fill_isoc_descriptor(struct urb *urb, int len, int mtu) - -commit fd763c5b14ed99ac2401f8e8f1a07c3687ae01cc -Author: Matthew Garrett -Date: Thu Sep 16 13:37:38 2010 -0400 - - bluetooth: Enable USB autosuspend by default on btusb - - We've done this for a while in Fedora without any obvious problems other - than some interaction with input devices. Those should be fixed now, so - let's try this in mainline. - - Signed-off-by: Matthew Garrett - -diff --git a/drivers/bluetooth/btusb.c b/drivers/bluetooth/btusb.c -index 3ace025..03b64e4 100644 ---- a/drivers/bluetooth/btusb.c -+++ b/drivers/bluetooth/btusb.c -@@ -1014,6 +1014,8 @@ static int btusb_probe(struct usb_interface *intf, - - usb_set_intfdata(intf, data); - -+ usb_enable_autosuspend(interface_to_usbdev(intf)); -+ - return 0; - } - diff --git a/sources b/sources index 9b2f9bea7..285c81366 100644 --- a/sources +++ b/sources @@ -1,3 +1,3 @@ 61f3739a73afb6914cb007f37fb09b62 linux-2.6.36.tar.bz2 7364d9629734c34d09ec9ebd351d40b9 patch-2.6.37-rc1.bz2 -b794491328289db900d725673a23fd08 patch-2.6.37-rc1-git7.bz2 +99827f19411ac74a4789cb6395e4568d patch-2.6.37-rc1-git10.bz2