)]}'
{
  "log": [
    {
      "commit": "80b5184cc537718122e036afe7e62d202b70d077",
      "tree": "d4e2b400f0e951156d64d546fd563fa5a8ab02d3",
      "parents": [
        "ad84bb5b98bf81deae97e3bcd814675d6b4e6f72"
      ],
      "author": {
        "name": "Akinobu Mita",
        "email": "akinobu.mita@gmail.com",
        "time": "Wed May 26 14:43:32 2010 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Thu May 27 09:12:48 2010 -0700"
      },
      "message": "kernel/: convert cpu notifier to return encapsulate errno value\n\nBy the previous modification, the cpu notifier can return encapsulate\nerrno value.  This converts the cpu notifiers for kernel/*.c\n\nSigned-off-by: Akinobu Mita \u003cakinobu.mita@gmail.com\u003e\nCc: Ingo Molnar \u003cmingo@elte.hu\u003e\nCc: Peter Zijlstra \u003cpeterz@infradead.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "3789ae7dcd29fa146b23dc30377925d1f73c8adf",
      "tree": "39f4bc70ccbfafa9290f21bc23bbf296d8656538",
      "parents": [
        "0198ffd135f51d4fbb0c50036395716c06632ed9"
      ],
      "author": {
        "name": "Steffen Klassert",
        "email": "steffen.klassert@secunet.com",
        "time": "Wed May 19 13:45:35 2010 +1000"
      },
      "committer": {
        "name": "Herbert Xu",
        "email": "herbert@gondor.apana.org.au",
        "time": "Wed May 19 13:45:35 2010 +1000"
      },
      "message": "padata: Use get_online_cpus/put_online_cpus in padata_free\n\nAdd get_online_cpus/put_online_cpus to ensure that no cpu goes\noffline during the flushing of the padata percpu queues.\n\nSigned-off-by: Steffen Klassert \u003csteffen.klassert@secunet.com\u003e\nSigned-off-by: Herbert Xu \u003cherbert@gondor.apana.org.au\u003e\n"
    },
    {
      "commit": "0198ffd135f51d4fbb0c50036395716c06632ed9",
      "tree": "70ee8c360df43a2077eac0e033ab54a65394a29f",
      "parents": [
        "2b73b07ab8a44ce171e07a328439f311481a7ea7"
      ],
      "author": {
        "name": "Steffen Klassert",
        "email": "steffen.klassert@secunet.com",
        "time": "Wed May 19 13:44:27 2010 +1000"
      },
      "committer": {
        "name": "Herbert Xu",
        "email": "herbert@gondor.apana.org.au",
        "time": "Wed May 19 13:44:27 2010 +1000"
      },
      "message": "padata: Add some code comments\n\nSigned-off-by: Steffen Klassert \u003csteffen.klassert@secunet.com\u003e\nSigned-off-by: Herbert Xu \u003cherbert@gondor.apana.org.au\u003e\n"
    },
    {
      "commit": "2b73b07ab8a44ce171e07a328439f311481a7ea7",
      "tree": "0a050dbe8eca78e1a8efff9b023e192c1f11633f",
      "parents": [
        "d46a5ac7a7e2045e33c6ad6ffb8cf18a7e86a15a"
      ],
      "author": {
        "name": "Steffen Klassert",
        "email": "steffen.klassert@secunet.com",
        "time": "Wed May 19 13:43:46 2010 +1000"
      },
      "committer": {
        "name": "Herbert Xu",
        "email": "herbert@gondor.apana.org.au",
        "time": "Wed May 19 13:43:46 2010 +1000"
      },
      "message": "padata: Flush the padata queues actively\n\nyield was used to wait until all references of the internal control\nstructure in use are dropped before it is freed. This patch implements\npadata_flush_queues which actively flushes the padata percpu queues\nin this case.\n\nSigned-off-by: Steffen Klassert \u003csteffen.klassert@secunet.com\u003e\nSigned-off-by: Herbert Xu \u003cherbert@gondor.apana.org.au\u003e\n"
    },
    {
      "commit": "d46a5ac7a7e2045e33c6ad6ffb8cf18a7e86a15a",
      "tree": "2ccfba3ee24ed28e80ae3e3be330a7b44f77dbcf",
      "parents": [
        "18eb8ea6ee4cc9ed39b45f95b734f523bcfb586b"
      ],
      "author": {
        "name": "Steffen Klassert",
        "email": "steffen.klassert@secunet.com",
        "time": "Wed May 19 13:43:14 2010 +1000"
      },
      "committer": {
        "name": "Herbert Xu",
        "email": "herbert@gondor.apana.org.au",
        "time": "Wed May 19 13:43:14 2010 +1000"
      },
      "message": "padata: Use a timer to handle remaining objects in the reorder queues \n\npadata_get_next needs to check whether the next object that\nneed serialization must be parallel processed by the local cpu.\nThis check was wrong implemented and returned always true,\nso the try_again loop in padata_reorder was never taken. This\ncan lead to object leaks in some rare cases due to a race that\nappears with the trylock in padata_reorder. The try_again loop\nwas not a good idea after all, because a cpu could take that\nloop frequently, so we handle this with a timer instead.\n\nThis patch adds a timer to handle the race that appears with\nthe trylock. If cpu1 queues an object to the reorder queue while\ncpu2 holds the pd-\u003elock but left the while loop in padata_reorder\nalready, cpu2 can\u0027t care for this object and cpu1 exits because\nit can\u0027t get the lock. Usually the next cpu that takes the lock\ncares for this object too. We need the timer just if this object\nwas the last one that arrives to the reorder queues. The timer\nfunction sends it out in this case.\n\nSigned-off-by: Steffen Klassert \u003csteffen.klassert@secunet.com\u003e\nSigned-off-by: Herbert Xu \u003cherbert@gondor.apana.org.au\u003e\n"
    },
    {
      "commit": "6751fb3c0e0cfcc40a1a0acabca97370c9ec6c6b",
      "tree": "30ab0d2a12715e4c95e1858639b4f540ce45c6b5",
      "parents": [
        "7b389b2cc539dc2dc60b049240942be54958c93a"
      ],
      "author": {
        "name": "Steffen Klassert",
        "email": "steffen.klassert@secunet.com",
        "time": "Thu Apr 29 14:42:30 2010 +0200"
      },
      "committer": {
        "name": "Herbert Xu",
        "email": "herbert@gondor.apana.org.au",
        "time": "Mon May 03 11:32:12 2010 +0800"
      },
      "message": "padata: Use get_online_cpus/put_online_cpus\n\nThis patch puts get_online_cpus/put_online_cpus around the places\nwe modify the padata cpumask to ensure that no cpu goes offline\nduring this operation.\n\nSigned-off-by: Steffen Klassert \u003csteffen.klassert@secunet.com\u003e\nSigned-off-by: Herbert Xu \u003cherbert@gondor.apana.org.au\u003e\n"
    },
    {
      "commit": "7b389b2cc539dc2dc60b049240942be54958c93a",
      "tree": "7ab93b0052445c147d88c4479d7b0994769c671c",
      "parents": [
        "7d0d2d385ca7cc511f7d1c64735a1b4aaefd9a1b"
      ],
      "author": {
        "name": "Steffen Klassert",
        "email": "steffen.klassert@secunet.com",
        "time": "Thu Apr 29 14:41:36 2010 +0200"
      },
      "committer": {
        "name": "Herbert Xu",
        "email": "herbert@gondor.apana.org.au",
        "time": "Mon May 03 11:32:11 2010 +0800"
      },
      "message": "padata: Initialize the padata queues only for the used cpus\n\npadata_alloc_pd set up queues for all possible cpus.\nThis patch changes this to set up the queues just for\nthe used cpus.\n\nSigned-off-by: Steffen Klassert \u003csteffen.klassert@secunet.com\u003e\nSigned-off-by: Herbert Xu \u003cherbert@gondor.apana.org.au\u003e\n"
    },
    {
      "commit": "7d0d2d385ca7cc511f7d1c64735a1b4aaefd9a1b",
      "tree": "f25de7e27e7cf8f0aabf56462c6394ee950d21ee",
      "parents": [
        "e2cb2f1c2ccf19914e941859c07558ba5f8a4610"
      ],
      "author": {
        "name": "Steffen Klassert",
        "email": "steffen.klassert@secunet.com",
        "time": "Thu Apr 29 14:40:53 2010 +0200"
      },
      "committer": {
        "name": "Herbert Xu",
        "email": "herbert@gondor.apana.org.au",
        "time": "Mon May 03 11:32:11 2010 +0800"
      },
      "message": "padata: Remove superfluous might_sleep\n\nmight_sleep() was placed before mutex_lock() in some places.\nWe remove them because mutex_lock() does might_sleep() too.\n\nSigned-off-by: Steffen Klassert \u003csteffen.klassert@secunet.com\u003e\nSigned-off-by: Herbert Xu \u003cherbert@gondor.apana.org.au\u003e\n"
    },
    {
      "commit": "e2cb2f1c2ccf19914e941859c07558ba5f8a4610",
      "tree": "48abe8d63bb72052da1dd974ebe967a36e9e4af3",
      "parents": [
        "df2071bd081408318d659cd14a9cf6ff23d874c9"
      ],
      "author": {
        "name": "Steffen Klassert",
        "email": "steffen.klassert@secunet.com",
        "time": "Thu Apr 29 14:40:10 2010 +0200"
      },
      "committer": {
        "name": "Herbert Xu",
        "email": "herbert@gondor.apana.org.au",
        "time": "Mon May 03 11:32:11 2010 +0800"
      },
      "message": "padata: cpu hotplug code should depend on CONFIG_HOTPLUG_CPU\n\nThis patch makes the padata cpu hotplug code dependend on CONFIG_HOTPLUG_CPU.\n\nSigned-off-by: Steffen Klassert \u003csteffen.klassert@secunet.com\u003e\nSigned-off-by: Herbert Xu \u003cherbert@gondor.apana.org.au\u003e\n"
    },
    {
      "commit": "df2071bd081408318d659cd14a9cf6ff23d874c9",
      "tree": "b31291b5fd4b9f84c629833afbfaa8d431857475",
      "parents": [
        "97e3d94aac1c3e95bd04d1b186479a4df3663ab8",
        "be1066bbcd443a65df312fdecea7e4959adedb45"
      ],
      "author": {
        "name": "Herbert Xu",
        "email": "herbert@gondor.apana.org.au",
        "time": "Mon May 03 11:28:58 2010 +0800"
      },
      "committer": {
        "name": "Herbert Xu",
        "email": "herbert@gondor.apana.org.au",
        "time": "Mon May 03 11:28:58 2010 +0800"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6\n"
    },
    {
      "commit": "97e3d94aac1c3e95bd04d1b186479a4df3663ab8",
      "tree": "4cc049a6dfa84554279d39daca2db4dca0001751",
      "parents": [
        "8628e7c89075834fc7b44629d09ff4f9043af114"
      ],
      "author": {
        "name": "Steffen Klassert",
        "email": "steffen.klassert@secunet.com",
        "time": "Thu Apr 29 14:37:32 2010 +0200"
      },
      "committer": {
        "name": "Herbert Xu",
        "email": "herbert@gondor.apana.org.au",
        "time": "Mon May 03 11:16:13 2010 +0800"
      },
      "message": "padata: Dont scale the parallel objects with the cpus\n\nScaling the maximum number of objects in the parallel\ncodepath can lead to out of memory problems on bigsmp\nmachines.\n\nSigned-off-by: Steffen Klassert \u003csteffen.klassert@secunet.com\u003e\nSigned-off-by: Herbert Xu \u003cherbert@gondor.apana.org.au\u003e\n"
    },
    {
      "commit": "5a0e3ad6af8660be21ca98a971cd00f331318c05",
      "tree": "5bfb7be11a03176a87296a43ac6647975c00a1d1",
      "parents": [
        "ed391f4ebf8f701d3566423ce8f17e614cde9806"
      ],
      "author": {
        "name": "Tejun Heo",
        "email": "tj@kernel.org",
        "time": "Wed Mar 24 17:04:11 2010 +0900"
      },
      "committer": {
        "name": "Tejun Heo",
        "email": "tj@kernel.org",
        "time": "Tue Mar 30 22:02:32 2010 +0900"
      },
      "message": "include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h\n\npercpu.h is included by sched.h and module.h and thus ends up being\nincluded when building most .c files.  percpu.h includes slab.h which\nin turn includes gfp.h making everything defined by the two files\nuniversally available and complicating inclusion dependencies.\n\npercpu.h -\u003e slab.h dependency is about to be removed.  Prepare for\nthis change by updating users of gfp and slab facilities include those\nheaders directly instead of assuming availability.  As this conversion\nneeds to touch large number of source files, the following script is\nused as the basis of conversion.\n\n  http://userweb.kernel.org/~tj/misc/slabh-sweep.py\n\nThe script does the followings.\n\n* Scan files for gfp and slab usages and update includes such that\n  only the necessary includes are there.  ie. if only gfp is used,\n  gfp.h, if slab is used, slab.h.\n\n* When the script inserts a new include, it looks at the include\n  blocks and try to put the new include such that its order conforms\n  to its surrounding.  It\u0027s put in the include block which contains\n  core kernel includes, in the same order that the rest are ordered -\n  alphabetical, Christmas tree, rev-Xmas-tree or at the end if there\n  doesn\u0027t seem to be any matching order.\n\n* If the script can\u0027t find a place to put a new include (mostly\n  because the file doesn\u0027t have fitting include block), it prints out\n  an error message indicating which .h file needs to be added to the\n  file.\n\nThe conversion was done in the following steps.\n\n1. The initial automatic conversion of all .c files updated slightly\n   over 4000 files, deleting around 700 includes and adding ~480 gfp.h\n   and ~3000 slab.h inclusions.  The script emitted errors for ~400\n   files.\n\n2. Each error was manually checked.  Some didn\u0027t need the inclusion,\n   some needed manual addition while adding it to implementation .h or\n   embedding .c file was more appropriate for others.  This step added\n   inclusions to around 150 files.\n\n3. The script was run again and the output was compared to the edits\n   from #2 to make sure no file was left behind.\n\n4. Several build tests were done and a couple of problems were fixed.\n   e.g. lib/decompress_*.c used malloc/free() wrappers around slab\n   APIs requiring slab.h to be added manually.\n\n5. The script was run on all .h files but without automatically\n   editing them as sprinkling gfp.h and slab.h inclusions around .h\n   files could easily lead to inclusion dependency hell.  Most gfp.h\n   inclusion directives were ignored as stuff from gfp.h was usually\n   wildly available and often used in preprocessor macros.  Each\n   slab.h inclusion directive was examined and added manually as\n   necessary.\n\n6. percpu.h was updated not to include slab.h.\n\n7. Build test were done on the following configurations and failures\n   were fixed.  CONFIG_GCOV_KERNEL was turned off for all tests (as my\n   distributed build env didn\u0027t work with gcov compiles) and a few\n   more options had to be turned off depending on archs to make things\n   build (like ipr on powerpc/64 which failed due to missing writeq).\n\n   * x86 and x86_64 UP and SMP allmodconfig and a custom test config.\n   * powerpc and powerpc64 SMP allmodconfig\n   * sparc and sparc64 SMP allmodconfig\n   * ia64 SMP allmodconfig\n   * s390 SMP allmodconfig\n   * alpha SMP allmodconfig\n   * um on x86_64 SMP allmodconfig\n\n8. percpu.h modifications were reverted so that it could be applied as\n   a separate patch and serve as bisection point.\n\nGiven the fact that I had only a couple of failures from tests on step\n6, I\u0027m fairly confident about the coverage of this conversion patch.\nIf there is a breakage, it\u0027s likely to be something in one of the arch\nheaders which should be easily discoverable easily on most builds of\nthe specific arch.\n\nSigned-off-by: Tejun Heo \u003ctj@kernel.org\u003e\nGuess-its-ok-by: Christoph Lameter \u003ccl@linux-foundation.org\u003e\nCc: Ingo Molnar \u003cmingo@redhat.com\u003e\nCc: Lee Schermerhorn \u003cLee.Schermerhorn@hp.com\u003e\n"
    },
    {
      "commit": "975d260355fca4734b545a0e3366672af0356905",
      "tree": "821f50038706bc50e923a7e86fcaa0d28db88527",
      "parents": [
        "62e7bec49479e0c61e8cfd914f722a9ca6fd52e5"
      ],
      "author": {
        "name": "Henrik Kretzschmar",
        "email": "henne@nachtwindheim.de",
        "time": "Mon Mar 29 16:15:31 2010 +0800"
      },
      "committer": {
        "name": "Herbert Xu",
        "email": "herbert@gondor.apana.org.au",
        "time": "Mon Mar 29 16:15:31 2010 +0800"
      },
      "message": "padata: Section cleanup\n\nThis patch removes the __cupinit from padata_cpu_callback(),\nwhich is refered by the exportet function padata_alloc().\n\nThis could lead to problems if CONFIG_HOTPLUG_CPU is disabled,\nwhich should happen very often.\n\nWARNING: kernel/built-in.o(.text+0x7ffcb): Section mismatch in reference from the function padata_alloc() to the function .cpuinit.text:padata_cpu_callback()\nThe function padata_alloc() references\nthe function __cpuinit padata_cpu_callback().\nThis is often because padata_alloc lacks a __cpuinit\nannotation or the annotation of padata_cpu_callback is wrong.\n\nSigned-off-by: Henrik Kretzschmar \u003chenne@nachtwindheim.de\u003e\nSigned-off-by: Herbert Xu \u003cherbert@gondor.apana.org.au\u003e\n"
    },
    {
      "commit": "74781387822cd7a549123ae2b35862bf802689be",
      "tree": "3f6844cfbe3a58206e382b82a01c9300ae582c8a",
      "parents": [
        "50beceba7fdf5f10a04d8a053e62d40b742099ad"
      ],
      "author": {
        "name": "Steffen Klassert",
        "email": "steffen.klassert@secunet.com",
        "time": "Thu Mar 04 13:30:22 2010 +0800"
      },
      "committer": {
        "name": "Herbert Xu",
        "email": "herbert@gondor.apana.org.au",
        "time": "Thu Mar 04 13:30:22 2010 +0800"
      },
      "message": "padata: Allocate the cpumask for the padata instance\n\nThe cpumask of the padata instance was used without allocated.\nThis caused boot crashes if CONFIG_CPUMASK_OFFSTACK is enabled.\nThis patch fixes this by doing proper allocation for this cpumask.\n\nSigned-off-by: Steffen Klassert \u003csteffen.klassert@secunet.com\u003e\nSigned-off-by: Herbert Xu \u003cherbert@gondor.apana.org.au\u003e\n"
    },
    {
      "commit": "16295bec6398a3eedc9377e1af6ff4c71b98c300",
      "tree": "992d82d920b5e6b81fe08df58f8c2d677244f759",
      "parents": [
        "863b557a88f8c033f7419fabafef4712a5055f85"
      ],
      "author": {
        "name": "Steffen Klassert",
        "email": "steffen.klassert@secunet.com",
        "time": "Wed Jan 06 19:47:10 2010 +1100"
      },
      "committer": {
        "name": "Herbert Xu",
        "email": "herbert@gondor.apana.org.au",
        "time": "Wed Jan 06 19:47:10 2010 +1100"
      },
      "message": "padata: Generic parallelization/serialization interface\n\nThis patch introduces an interface to process data objects\nin parallel. The parallelized objects return after serialization\nin the same order as they were before the parallelization.\n\nSigned-off-by: Steffen Klassert \u003csteffen.klassert@secunet.com\u003e\nSigned-off-by: Herbert Xu \u003cherbert@gondor.apana.org.au\u003e\n"
    }
  ]
}
