Merge branch 'stable/cleanups-3.2' of git://git.kernel.org/pub/scm/linux/kernel/git...
authorLinus Torvalds <torvalds@linux-foundation.org>
Mon, 7 Nov 2011 04:13:34 +0000 (20:13 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Mon, 7 Nov 2011 04:13:34 +0000 (20:13 -0800)
* 'stable/cleanups-3.2' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/xen:
  xen: use static initializers in xen-balloon.c
  Xen: fix braces and tabs coding style issue in xenbus_probe.c
  Xen: fix braces coding style issue in xenbus_probe.h
  Xen: fix whitespaces,tabs coding style issue in drivers/xen/pci.c
  Xen: fix braces coding style issue in gntdev.c and grant-table.c
  Xen: fix whitespaces,tabs coding style issue in drivers/xen/events.c
  Xen: fix whitespaces,tabs coding style issue in drivers/xen/balloon.c

Fix up trivial whitespace-conflicts in
 drivers/xen/{balloon.c,pci.c,xenbus/xenbus_probe.c}

1  2 
drivers/xen/balloon.c
drivers/xen/events.c
drivers/xen/gntdev.c
drivers/xen/grant-table.c
drivers/xen/pci.c
drivers/xen/xenbus/xenbus_probe.c

index 1779338e1d865d313947cbfbf200092f7a3e505e,61c0ee7aa7dd9623df1ff48f225a66e0b4e349e8..a767884a6c7a10cfb526aff86de7b0ca1848eb9f
@@@ -502,17 -373,16 +501,17 @@@ EXPORT_SYMBOL_GPL(balloon_set_new_targe
   * alloc_xenballooned_pages - get pages that have been ballooned out
   * @nr_pages: Number of pages to get
   * @pages: pages returned
 + * @highmem: highmem or lowmem pages
   * @return 0 on success, error otherwise
   */
 -int alloc_xenballooned_pages(int nr_pages, struct page **pages)
 +int alloc_xenballooned_pages(int nr_pages, struct page **pages, bool highmem)
  {
        int pgno = 0;
-       struct pagepage;
+       struct page *page;
        mutex_lock(&balloon_mutex);
        while (pgno < nr_pages) {
 -              page = balloon_retrieve(true);
 -              if (page) {
 +              page = balloon_retrieve(highmem);
 +              if (page && PageHighMem(page) == highmem) {
                        pages[pgno++] = page;
                } else {
                        enum bp_state st;
Simple merge
Simple merge
Simple merge
Simple merge
index 0e867eeecb045569094c1d52d019ce8f306494b6,d4c7a9ffbcb93d880614bbbdfebdfcae9fe47dc1..1b178c6e893796c2807d8a5a1992c9cc27a7b97a
@@@ -771,7 -759,12 +770,7 @@@ static int __init xenbus_init(void
        proc_mkdir("xen", NULL);
  #endif
  
-  out_error:
 -      return 0;
 -
+ out_error:
 -      if (page != 0)
 -              free_page(page);
 -
        return err;
  }