]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
.37 patches
authorGreg Kroah-Hartman <gregkh@suse.de>
Thu, 24 Mar 2011 21:12:34 +0000 (14:12 -0700)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 24 Mar 2011 21:12:34 +0000 (14:12 -0700)
queue-2.6.37/input-xen-kbdfront-advertise-either-absolute-or-relative-coordinates.patch [new file with mode: 0644]
queue-2.6.37/series
queue-2.6.37/x86-cleanup-highmap-after-brk-is-concluded.patch [new file with mode: 0644]

diff --git a/queue-2.6.37/input-xen-kbdfront-advertise-either-absolute-or-relative-coordinates.patch b/queue-2.6.37/input-xen-kbdfront-advertise-either-absolute-or-relative-coordinates.patch
new file mode 100644 (file)
index 0000000..c82fd04
--- /dev/null
@@ -0,0 +1,126 @@
+From 8c3c283e6bf463ab498d6e7823aff6c4762314b6 Mon Sep 17 00:00:00 2001
+From: Olaf Hering <olaf@aepfle.de>
+Date: Wed, 16 Mar 2011 22:11:46 -0700
+Subject: Input: xen-kbdfront - advertise either absolute or relative coordinates
+
+From: Olaf Hering <olaf@aepfle.de>
+
+commit 8c3c283e6bf463ab498d6e7823aff6c4762314b6 upstream.
+
+A virtualized display device is usually viewed with the vncviewer
+application, either by 'xm vnc domU' or with vncviewer localhost:port.
+vncviewer and the RFB protocol provides absolute coordinates to the
+virtual display. These coordinates are either passed through to a PV
+guest or converted to relative coordinates for a HVM guest.
+
+A PV guest receives these coordinates and passes them to the kernels
+evdev driver. There it can be picked up by applications such as the
+xorg-input drivers. Using absolute coordinates avoids issues such as
+guest mouse pointer not tracking host mouse pointer due to wrong mouse
+acceleration settings in the guests X display.
+
+Advertise either absolute or relative coordinates to the input system
+and the evdev driver, depending on what dom0 provides. The xorg-input
+driver prefers relative coordinates even if a devices provides both.
+
+Signed-off-by: Olaf Hering <olaf@aepfle.de>
+Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
+Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
+Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
+
+---
+ drivers/input/xen-kbdfront.c |   45 ++++++++++++++++++++++---------------------
+ 1 file changed, 24 insertions(+), 21 deletions(-)
+
+--- a/drivers/input/xen-kbdfront.c
++++ b/drivers/input/xen-kbdfront.c
+@@ -109,7 +109,7 @@ static irqreturn_t input_handler(int rq,
+ static int __devinit xenkbd_probe(struct xenbus_device *dev,
+                                 const struct xenbus_device_id *id)
+ {
+-      int ret, i;
++      int ret, i, abs;
+       struct xenkbd_info *info;
+       struct input_dev *kbd, *ptr;
+@@ -127,6 +127,11 @@ static int __devinit xenkbd_probe(struct
+       if (!info->page)
+               goto error_nomem;
++      if (xenbus_scanf(XBT_NIL, dev->otherend, "feature-abs-pointer", "%d", &abs) < 0)
++              abs = 0;
++      if (abs)
++              xenbus_printf(XBT_NIL, dev->nodename, "request-abs-pointer", "1");
++
+       /* keyboard */
+       kbd = input_allocate_device();
+       if (!kbd)
+@@ -136,11 +141,12 @@ static int __devinit xenkbd_probe(struct
+       kbd->id.bustype = BUS_PCI;
+       kbd->id.vendor = 0x5853;
+       kbd->id.product = 0xffff;
+-      kbd->evbit[0] = BIT(EV_KEY);
++
++      __set_bit(EV_KEY, kbd->evbit);
+       for (i = KEY_ESC; i < KEY_UNKNOWN; i++)
+-              set_bit(i, kbd->keybit);
++              __set_bit(i, kbd->keybit);
+       for (i = KEY_OK; i < KEY_MAX; i++)
+-              set_bit(i, kbd->keybit);
++              __set_bit(i, kbd->keybit);
+       ret = input_register_device(kbd);
+       if (ret) {
+@@ -159,12 +165,20 @@ static int __devinit xenkbd_probe(struct
+       ptr->id.bustype = BUS_PCI;
+       ptr->id.vendor = 0x5853;
+       ptr->id.product = 0xfffe;
+-      ptr->evbit[0] = BIT(EV_KEY) | BIT(EV_REL) | BIT(EV_ABS);
++
++      if (abs) {
++              __set_bit(EV_ABS, ptr->evbit);
++              input_set_abs_params(ptr, ABS_X, 0, XENFB_WIDTH, 0, 0);
++              input_set_abs_params(ptr, ABS_Y, 0, XENFB_HEIGHT, 0, 0);
++      } else {
++              input_set_capability(ptr, EV_REL, REL_X);
++              input_set_capability(ptr, EV_REL, REL_Y);
++      }
++      input_set_capability(ptr, EV_REL, REL_WHEEL);
++
++      __set_bit(EV_KEY, ptr->evbit);
+       for (i = BTN_LEFT; i <= BTN_TASK; i++)
+-              set_bit(i, ptr->keybit);
+-      ptr->relbit[0] = BIT(REL_X) | BIT(REL_Y) | BIT(REL_WHEEL);
+-      input_set_abs_params(ptr, ABS_X, 0, XENFB_WIDTH, 0, 0);
+-      input_set_abs_params(ptr, ABS_Y, 0, XENFB_HEIGHT, 0, 0);
++              __set_bit(i, ptr->keybit);
+       ret = input_register_device(ptr);
+       if (ret) {
+@@ -271,7 +285,7 @@ static void xenkbd_backend_changed(struc
+                                  enum xenbus_state backend_state)
+ {
+       struct xenkbd_info *info = dev_get_drvdata(&dev->dev);
+-      int ret, val;
++      int val;
+       switch (backend_state) {
+       case XenbusStateInitialising:
+@@ -284,17 +298,6 @@ static void xenkbd_backend_changed(struc
+       case XenbusStateInitWait:
+ InitWait:
+-              ret = xenbus_scanf(XBT_NIL, info->xbdev->otherend,
+-                                 "feature-abs-pointer", "%d", &val);
+-              if (ret < 0)
+-                      val = 0;
+-              if (val) {
+-                      ret = xenbus_printf(XBT_NIL, info->xbdev->nodename,
+-                                          "request-abs-pointer", "1");
+-                      if (ret)
+-                              printk(KERN_WARNING
+-                                     "xenkbd: can't request abs-pointer");
+-              }
+               xenbus_switch_state(dev, XenbusStateConnected);
+               break;
index 5242bda3c73f8bd1916881caebfc17fef3a7999d..6f5a0a7784c35db9a8154d9a79a3eb547e017883 100644 (file)
@@ -40,3 +40,5 @@ usb-cdc-acm-fix-memory-corruption-panic.patch
 usb-cdc-acm-fix-potential-null-pointer-dereference.patch
 usb-cdc-acm-fix-potential-null-pointer-dereference-on-disconnect.patch
 fs-assign-sb-s_bdi-to-default_backing_dev_info-if-the-bdi-is-going-away.patch
+input-xen-kbdfront-advertise-either-absolute-or-relative-coordinates.patch
+x86-cleanup-highmap-after-brk-is-concluded.patch
diff --git a/queue-2.6.37/x86-cleanup-highmap-after-brk-is-concluded.patch b/queue-2.6.37/x86-cleanup-highmap-after-brk-is-concluded.patch
new file mode 100644 (file)
index 0000000..0138b89
--- /dev/null
@@ -0,0 +1,129 @@
+From e5f15b45ddf3afa2bbbb10c7ea34fb32b6de0a0e Mon Sep 17 00:00:00 2001
+From: Yinghai Lu <yinghai@kernel.org>
+Date: Fri, 18 Feb 2011 11:30:30 +0000
+Subject: x86: Cleanup highmap after brk is concluded
+
+From: Yinghai Lu <yinghai@kernel.org>
+
+commit e5f15b45ddf3afa2bbbb10c7ea34fb32b6de0a0e upstream.
+
+Now cleanup_highmap actually is in two steps: one is early in head64.c
+and only clears above _end; a second one is in init_memory_mapping() and
+tries to clean from _brk_end to _end.
+It should check if those boundaries are PMD_SIZE aligned but currently
+does not.
+Also init_memory_mapping() is called several times for numa or memory
+hotplug, so we really should not handle initial kernel mappings there.
+
+This patch moves cleanup_highmap() down after _brk_end is settled so
+we can do everything in one step.
+Also we honor max_pfn_mapped in the implementation of cleanup_highmap.
+
+Signed-off-by: Yinghai Lu <yinghai@kernel.org>
+Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
+LKML-Reference: <alpine.DEB.2.00.1103171739050.3382@kaball-desktop>
+Signed-off-by: H. Peter Anvin <hpa@zytor.com>
+Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
+
+---
+ arch/x86/kernel/head64.c |    3 ---
+ arch/x86/kernel/setup.c  |    5 +++++
+ arch/x86/mm/init.c       |   19 -------------------
+ arch/x86/mm/init_64.c    |   11 ++++++-----
+ 4 files changed, 11 insertions(+), 27 deletions(-)
+
+--- a/arch/x86/kernel/head64.c
++++ b/arch/x86/kernel/head64.c
+@@ -77,9 +77,6 @@ void __init x86_64_start_kernel(char * r
+       /* Make NULL pointers segfault */
+       zap_identity_mappings();
+-      /* Cleanup the over mapped high alias */
+-      cleanup_highmap();
+-
+       max_pfn_mapped = KERNEL_IMAGE_SIZE >> PAGE_SHIFT;
+       for (i = 0; i < NUM_EXCEPTION_VECTORS; i++) {
+--- a/arch/x86/kernel/setup.c
++++ b/arch/x86/kernel/setup.c
+@@ -297,6 +297,9 @@ static void __init init_gbpages(void)
+ static inline void init_gbpages(void)
+ {
+ }
++static void __init cleanup_highmap(void)
++{
++}
+ #endif
+ static void __init reserve_brk(void)
+@@ -922,6 +925,8 @@ void __init setup_arch(char **cmdline_p)
+        */
+       reserve_brk();
++      cleanup_highmap();
++
+       memblock.current_limit = get_max_mapped();
+       memblock_x86_fill();
+--- a/arch/x86/mm/init.c
++++ b/arch/x86/mm/init.c
+@@ -279,25 +279,6 @@ unsigned long __init_refok init_memory_m
+       load_cr3(swapper_pg_dir);
+ #endif
+-#ifdef CONFIG_X86_64
+-      if (!after_bootmem && !start) {
+-              pud_t *pud;
+-              pmd_t *pmd;
+-
+-              mmu_cr4_features = read_cr4();
+-
+-              /*
+-               * _brk_end cannot change anymore, but it and _end may be
+-               * located on different 2M pages. cleanup_highmap(), however,
+-               * can only consider _end when it runs, so destroy any
+-               * mappings beyond _brk_end here.
+-               */
+-              pud = pud_offset(pgd_offset_k(_brk_end), _brk_end);
+-              pmd = pmd_offset(pud, _brk_end - 1);
+-              while (++pmd <= pmd_offset(pud, (unsigned long)_end - 1))
+-                      pmd_clear(pmd);
+-      }
+-#endif
+       __flush_tlb_all();
+       if (!after_bootmem && e820_table_end > e820_table_start)
+--- a/arch/x86/mm/init_64.c
++++ b/arch/x86/mm/init_64.c
+@@ -51,6 +51,7 @@
+ #include <asm/numa.h>
+ #include <asm/cacheflush.h>
+ #include <asm/init.h>
++#include <asm/setup.h>
+ static int __init parse_direct_gbpages_off(char *arg)
+ {
+@@ -293,18 +294,18 @@ void __init init_extra_mapping_uc(unsign
+  * to the compile time generated pmds. This results in invalid pmds up
+  * to the point where we hit the physaddr 0 mapping.
+  *
+- * We limit the mappings to the region from _text to _end.  _end is
+- * rounded up to the 2MB boundary. This catches the invalid pmds as
++ * We limit the mappings to the region from _text to _brk_end.  _brk_end
++ * is rounded up to the 2MB boundary. This catches the invalid pmds as
+  * well, as they are located before _text:
+  */
+ void __init cleanup_highmap(void)
+ {
+       unsigned long vaddr = __START_KERNEL_map;
+-      unsigned long end = roundup((unsigned long)_end, PMD_SIZE) - 1;
++      unsigned long vaddr_end = __START_KERNEL_map + (max_pfn_mapped << PAGE_SHIFT);
++      unsigned long end = roundup((unsigned long)_brk_end, PMD_SIZE) - 1;
+       pmd_t *pmd = level2_kernel_pgt;
+-      pmd_t *last_pmd = pmd + PTRS_PER_PMD;
+-      for (; pmd < last_pmd; pmd++, vaddr += PMD_SIZE) {
++      for (; vaddr + PMD_SIZE - 1 < vaddr_end; pmd++, vaddr += PMD_SIZE) {
+               if (pmd_none(*pmd))
+                       continue;
+               if (vaddr < (unsigned long) _text || vaddr > end)