)]}'
{
  "log": [
    {
      "commit": "7fc14bcee0fc0fe1b7e1bd78d4fc0da395ebef35",
      "tree": "f73d13b6c3f68423d04d1e0373c8d318c5cd38a0",
      "parents": [
        "ece0ac98a13a555e6d46a02225fa15934abe7a3d"
      ],
      "author": {
        "name": "Roel Kluin",
        "email": "roel.kluin@gmail.com",
        "time": "Tue Jul 13 13:24:31 2010 +0300"
      },
      "committer": {
        "name": "David Woodhouse",
        "email": "David.Woodhouse@intel.com",
        "time": "Mon Aug 02 09:06:20 2010 +0100"
      },
      "message": "mtd: tests: return -1 if verify failed\n\nSigned-off-by: Roel Kluin \u003croel.kluin@gmail.com\u003e\nSigned-off-by: Artem Bityutskiy \u003cArtem.Bityutskiy@nokia.com\u003e\nSigned-off-by: David Woodhouse \u003cDavid.Woodhouse@intel.com\u003e\n"
    },
    {
      "commit": "2bfefa4c9632fb09bfe3277cf7b690818b147654",
      "tree": "9ddbd55e57e266dfea47e38fa007f47731fed8fb",
      "parents": [
        "ecce2a6f9bdc7635838baeff8a09a76c9a70e7e0"
      ],
      "author": {
        "name": "Julia Lawall",
        "email": "julia@diku.dk",
        "time": "Thu May 13 22:03:15 2010 +0200"
      },
      "committer": {
        "name": "David Woodhouse",
        "email": "David.Woodhouse@intel.com",
        "time": "Thu May 13 21:23:06 2010 +0100"
      },
      "message": "drivers/mtd: Use kzalloc\n\nUse kzalloc rather than the combination of kmalloc and memset.\n\nThe semantic patch that makes this change is as follows:\n(http://coccinelle.lip6.fr/)\n\n// \u003csmpl\u003e\n@@\nexpression x,size,flags;\nstatement S;\n@@\n\n-x \u003d kmalloc(size,flags);\n+x \u003d kzalloc(size,flags);\n if (x \u003d\u003d NULL) S\n-memset(x, 0, size);\n// \u003c/smpl\u003e\n\nSigned-off-by: Julia Lawall \u003cjulia@diku.dk\u003e\nSigned-off-by: David Woodhouse \u003cDavid.Woodhouse@intel.com\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": "f5e2bae0aad03164ffc7ce9dfeee6608e2c87dba",
      "tree": "6993fa233c58a12ffe4f8136a28309c2d9cc762e",
      "parents": [
        "f6a8c60960bbea378142d1fa1b3d111555ee41c7"
      ],
      "author": {
        "name": "Morten Thunberg Svendsen",
        "email": "mts.doredevelopment@gmail.com",
        "time": "Wed Jan 06 10:48:18 2010 +0100"
      },
      "committer": {
        "name": "David Woodhouse",
        "email": "David.Woodhouse@intel.com",
        "time": "Wed Jan 13 09:06:17 2010 +0000"
      },
      "message": "mtd: tests: fix read, speed and stress tests on NOR flash\n\nBefore using block_isbad() check if mtd-\u003eblock_isbad() is defined.\nCalculating pgcnt must be done using pgsize defined to 512 on\nNOR and mtd-\u003ewritesize for NAND, not using  mtd-\u003ewritesize directly.\n\nSigned-off-by: Morten Thunberg Svendsen \u003cmts.doredevelopment@gmail.com\u003e\nAcked-by: Artem Bityutskiy \u003cArtem.Bityutskiy@nokia.com\u003e\nSigned-off-by: David Woodhouse \u003cDavid.Woodhouse@intel.com\u003e\n"
    },
    {
      "commit": "4c2b8a62bb0e35f2db0f713b4101b265be7fa985",
      "tree": "a54fe210dd515ea52cfd8bb18efb704623bbd373",
      "parents": [
        "daa0f15a8dc6ef81655c7853f84a3670be7d144a"
      ],
      "author": {
        "name": "Artem Bityutskiy",
        "email": "Artem.Bityutskiy@nokia.com",
        "time": "Fri Nov 27 16:58:08 2009 +0200"
      },
      "committer": {
        "name": "David Woodhouse",
        "email": "David.Woodhouse@intel.com",
        "time": "Mon Nov 30 10:02:41 2009 +0000"
      },
      "message": "mtd: make pagetest work\n\nThe mtd_pagetest test did not initialize the pgsize variable, which\nbasically means it did not work. This problem was reported by\nTörök Edwin \u003cedwintorok@gmail.com\u003e\n\nSigned-off-by: Artem Bityutskiy \u003cArtem.Bityutskiy@nokia.com\u003e\nSigned-off-by: David Woodhouse \u003cDavid.Woodhouse@intel.com\u003e\n"
    },
    {
      "commit": "7126bd8be4ee009c56c4ec037f07f2c0884413fc",
      "tree": "0c453ef8f478f10d70aa5a913a36795244711bfc",
      "parents": [
        "1c63aca32903efc219fb9df72bae5344f3e54ed5"
      ],
      "author": {
        "name": "Akinobu Mita",
        "email": "akinobu.mita@gmail.com",
        "time": "Thu Oct 22 16:53:33 2009 +0900"
      },
      "committer": {
        "name": "David Woodhouse",
        "email": "David.Woodhouse@intel.com",
        "time": "Mon Nov 30 09:41:49 2009 +0000"
      },
      "message": "mtd: add nand_ecc test module\n\nThis module tests NAND ECC functions.\n\nThe test is simple.\n\n1. Create a 256 or 512 bytes block of data filled with random bytes (data)\n2. Duplicate the data block and inject single bit error (error_data)\n3. Try to correct error_data\n4. Compare data and error_data\n\nSigned-off-by: Akinobu Mita \u003cakinobu.mita@gmail.com\u003e\nAcked-by: Vimal Singh \u003cvimalsingh@ti.com\u003e\nSigned-off-by: Artem Bityutskiy \u003cArtem.Bityutskiy@nokia.com\u003e\nSigned-off-by: David Woodhouse \u003cDavid.Woodhouse@intel.com\u003e\n"
    },
    {
      "commit": "f54d6336372b97d3624d1c5c179b2dd062472bd1",
      "tree": "b3273e94befaa95785717498c2df0cdeda2a50ea",
      "parents": [
        "5a134239e707b23c65948f41f40b828d40e440af"
      ],
      "author": {
        "name": "Akinobu Mita",
        "email": "akinobu.mita@gmail.com",
        "time": "Fri Oct 09 18:43:52 2009 +0900"
      },
      "committer": {
        "name": "David Woodhouse",
        "email": "David.Woodhouse@intel.com",
        "time": "Sat Oct 17 15:39:48 2009 +0100"
      },
      "message": "mtd: cleanup mtd_oobtest\n\n- Remove unnecessary memset for bbt\n  All entries will be initialized at a few lines below\n- Remove unnecessary initialization for mtd-\u003eerasesize\n- Use write_whole_device()\n\nSigned-off-by: Akinobu Mita \u003cakinobu.mita@gmail.com\u003e\nSigned-off-by: Artem Bityutskiy \u003cArtem.Bityutskiy@nokia.com\u003e\nSigned-off-by: David Woodhouse \u003cDavid.Woodhouse@intel.com\u003e\n"
    },
    {
      "commit": "c6f7e7beb9e6a64816f534a3a0dd0cfa4937f1fe",
      "tree": "c0fed3deeb9862dffac83ac45814e70341317c2e",
      "parents": [
        "269c0ee66367b11de9758ee64ea039843f0c7cad"
      ],
      "author": {
        "name": "Roel Kluin",
        "email": "roel.kluin@gmail.com",
        "time": "Fri Jul 31 16:21:01 2009 +0200"
      },
      "committer": {
        "name": "David Woodhouse",
        "email": "David.Woodhouse@intel.com",
        "time": "Fri Sep 04 09:40:17 2009 +0100"
      },
      "message": "mtd: tests: fix read buffer overflows\n\nCheck whether index is within bounds before testing the element.\n\nSigned-off-by: Roel Kluin \u003croel.kluin@gmail.com\u003e\nSigned-off-by: Artem Bityutskiy \u003cArtem.Bityutskiy@nokia.com\u003e\nSigned-off-by: David Woodhouse \u003cDavid.Woodhouse@intel.com\u003e\n"
    },
    {
      "commit": "23d42494915d4dbdf99bccd35a76f3d45fbed62e",
      "tree": "8403a58885cdb95bb889688def72eedb8ff1ab09",
      "parents": [
        "9c12bd8601a505d10fb5a93fed59a973088cbb85"
      ],
      "author": {
        "name": "Hannes Eder",
        "email": "hannes@hanneseder.net",
        "time": "Thu Mar 05 20:15:01 2009 +0100"
      },
      "committer": {
        "name": "Jiri Kosina",
        "email": "jkosina@suse.cz",
        "time": "Mon Mar 30 15:22:04 2009 +0200"
      },
      "message": "trivial: NULL noise: drivers/mtd/tests/mtd_*test.c\n\nFix this sparse warnings:\n  drivers/mtd/tests/mtd_oobtest.c:139:33: warning: Using plain integer as NULL pointer\n  drivers/mtd/tests/mtd_oobtest.c:192:33: warning: Using plain integer as NULL pointer\n  drivers/mtd/tests/mtd_oobtest.c:219:41: warning: Using plain integer as NULL pointer\n  drivers/mtd/tests/mtd_oobtest.c:284:25: warning: Using plain integer as NULL pointer\n  drivers/mtd/tests/mtd_oobtest.c:525:25: warning: Using plain integer as NULL pointer\n  drivers/mtd/tests/mtd_oobtest.c:545:25: warning: Using plain integer as NULL pointer\n  drivers/mtd/tests/mtd_oobtest.c:569:33: warning: Using plain integer as NULL pointer\n  drivers/mtd/tests/mtd_oobtest.c:589:33: warning: Using plain integer as NULL pointer\n  drivers/mtd/tests/mtd_oobtest.c:613:33: warning: Using plain integer as NULL pointer\n  drivers/mtd/tests/mtd_oobtest.c:633:33: warning: Using plain integer as NULL pointer\n  drivers/mtd/tests/mtd_oobtest.c:673:41: warning: Using plain integer as NULL pointer\n  drivers/mtd/tests/mtd_oobtest.c:701:33: warning: Using plain integer as NULL pointer\n  drivers/mtd/tests/mtd_readtest.c:74:41: warning: Using plain integer as NULL pointer\n\nSigned-off-by: Hannes Eder \u003channes@hanneseder.net\u003e\nAcked-by: Artem Bityutskiy \u003cArtem.Bityutskiy@nokia.com\u003e\nSigned-off-by: Jiri Kosina \u003cjkosina@suse.cz\u003e\n"
    },
    {
      "commit": "647b0d3854d776485faea9de7e7ed7fd4bdc6f20",
      "tree": "9a527f270afdf6157699d8c360b63a53c0419146",
      "parents": [
        "572acc41274522b865440d0644d5f986e3c83755"
      ],
      "author": {
        "name": "David Woodhouse",
        "email": "David.Woodhouse@intel.com",
        "time": "Mon Jan 05 16:31:03 2009 +0000"
      },
      "committer": {
        "name": "David Woodhouse",
        "email": "David.Woodhouse@intel.com",
        "time": "Mon Jan 05 16:31:03 2009 +0000"
      },
      "message": "[MTD] [TESTS] Fix some size_t printk format warnings\n\nSigned-off-by: David Woodhouse \u003cDavid.Woodhouse@intel.com\u003e\n"
    },
    {
      "commit": "9faa8153bef4d82395e6ff7f87cb7c457055007c",
      "tree": "a0602abd31d029f5d74d73789ced50e435b9307a",
      "parents": [
        "4db451a7649decfdcb29d21016d7e031accc5cda"
      ],
      "author": {
        "name": "Artem Bityutskiy",
        "email": "Artem.Bityutskiy@nokia.com",
        "time": "Mon Dec 08 13:39:25 2008 +0200"
      },
      "committer": {
        "name": "Artem Bityutskiy",
        "email": "Artem.Bityutskiy@nokia.com",
        "time": "Wed Dec 10 17:00:44 2008 +0200"
      },
      "message": "MTD: add MTD tests to compilation\n\nAdd MTD tests to Kconfig and Makefiles.\n\nSigned-off-by: Artem Bityutskiy \u003cArtem.Bityutskiy@nokia.com\u003e\n"
    },
    {
      "commit": "4db451a7649decfdcb29d21016d7e031accc5cda",
      "tree": "e09806c2dd71a4ec3146236e217291a6f534ed4b",
      "parents": [
        "bf60862a58f7cd881cfe86a3b2aceaea4a22b3b0"
      ],
      "author": {
        "name": "Artem Bityutskiy",
        "email": "Artem.Bityutskiy@nokia.com",
        "time": "Mon Dec 08 13:38:34 2008 +0200"
      },
      "committer": {
        "name": "Artem Bityutskiy",
        "email": "Artem.Bityutskiy@nokia.com",
        "time": "Wed Dec 10 17:00:40 2008 +0200"
      },
      "message": "MTD: tests: add mtd_torturetest\n\nThis test is designed to work for very long time and it tries to\nwear few eraseblocks.\n\nSigned-off-by: Artem Bityutskiy \u003cArtem.Bityutskiy@nokia.com\u003e\n"
    },
    {
      "commit": "bf60862a58f7cd881cfe86a3b2aceaea4a22b3b0",
      "tree": "622e85be4854a4ba65524d0caa4140ab1da9b108",
      "parents": [
        "7163cea15f7b362795b858e7c130cd617aecc0aa"
      ],
      "author": {
        "name": "Artem Bityutskiy",
        "email": "Artem.Bityutskiy@nokia.com",
        "time": "Mon Dec 08 13:37:48 2008 +0200"
      },
      "committer": {
        "name": "Artem Bityutskiy",
        "email": "Artem.Bityutskiy@nokia.com",
        "time": "Mon Dec 08 13:56:14 2008 +0200"
      },
      "message": "MTD: tests: add mtd_subpagetest\n\nThis tests makes sure sub-pages on NAND MTD device work fine.\n\nSigned-off-by: Artem Bityutskiy \u003cArtem.Bityutskiy@nokia.com\u003e\n"
    },
    {
      "commit": "7163cea15f7b362795b858e7c130cd617aecc0aa",
      "tree": "7e21e948c3ab1ef98d3c7b9c40d942321fc4a42e",
      "parents": [
        "72069be936028ff236a6f783cb9a57abc5da7f41"
      ],
      "author": {
        "name": "Artem Bityutskiy",
        "email": "Artem.Bityutskiy@nokia.com",
        "time": "Mon Dec 08 13:36:47 2008 +0200"
      },
      "committer": {
        "name": "Artem Bityutskiy",
        "email": "Artem.Bityutskiy@nokia.com",
        "time": "Mon Dec 08 13:56:14 2008 +0200"
      },
      "message": "MTD: tests: add mtd_stresstest\n\nThis test just performs random operations on random eraseblocks.\n\nSigned-off-by: Artem Bityutskiy \u003cArtem.Bityutskiy@nokia.com\u003e\n"
    },
    {
      "commit": "72069be936028ff236a6f783cb9a57abc5da7f41",
      "tree": "eb8efd1dae5c1bf684812e14b0792a85efccb281",
      "parents": [
        "72091b6889c6dc9a8303887389c44008f657dde7"
      ],
      "author": {
        "name": "Artem Bityutskiy",
        "email": "Artem.Bityutskiy@nokia.com",
        "time": "Mon Dec 08 13:36:18 2008 +0200"
      },
      "committer": {
        "name": "Artem Bityutskiy",
        "email": "Artem.Bityutskiy@nokia.com",
        "time": "Mon Dec 08 13:56:14 2008 +0200"
      },
      "message": "MTD: tests: add mtd_speedtest\n\nThis test examines I/O speed of the flash device.\n\nSigned-off-by: Artem Bityutskiy \u003cArtem.Bityutskiy@nokia.com\u003e\n"
    },
    {
      "commit": "72091b6889c6dc9a8303887389c44008f657dde7",
      "tree": "95ee6e6798666cc945a72794cbe157370bebd51f",
      "parents": [
        "e73f217439c7f3e49f9c0048bd04cb77ba656e66"
      ],
      "author": {
        "name": "Artem Bityutskiy",
        "email": "Artem.Bityutskiy@nokia.com",
        "time": "Mon Dec 08 13:34:59 2008 +0200"
      },
      "committer": {
        "name": "Artem Bityutskiy",
        "email": "Artem.Bityutskiy@nokia.com",
        "time": "Mon Dec 08 13:56:14 2008 +0200"
      },
      "message": "MTD: tests: add mtd_readtest\n\nA simple tests which reads whole MTD device one page at a time.\n\nSigned-off-by: Artem Bityutskiy \u003cArtem.Bityutskiy@nokia.com\u003e\n"
    },
    {
      "commit": "e73f217439c7f3e49f9c0048bd04cb77ba656e66",
      "tree": "367b1e7758c95f0d3655fd654f574c105fbad3e9",
      "parents": [
        "e3644da7563d844e94b186a468e480c5575a6572"
      ],
      "author": {
        "name": "Artem Bityutskiy",
        "email": "Artem.Bityutskiy@nokia.com",
        "time": "Mon Dec 08 13:34:16 2008 +0200"
      },
      "committer": {
        "name": "Artem Bityutskiy",
        "email": "Artem.Bityutskiy@nokia.com",
        "time": "Mon Dec 08 13:56:14 2008 +0200"
      },
      "message": "MTD: tests: add mtd_pagetest\n\nThis test checks that NAND pages read/write work fine.\n\nSigned-off-by: Artem Bityutskiy \u003cArtem.Bityutskiy@nokia.com\u003e\n"
    },
    {
      "commit": "e3644da7563d844e94b186a468e480c5575a6572",
      "tree": "6230a431e66944b005261630a1b019d3c8cd7044",
      "parents": [
        "e93f1be503efd0e44e46fc1fd4c13dbee72a6561"
      ],
      "author": {
        "name": "Artem Bityutskiy",
        "email": "Artem.Bityutskiy@nokia.com",
        "time": "Mon Dec 08 13:33:29 2008 +0200"
      },
      "committer": {
        "name": "Artem Bityutskiy",
        "email": "Artem.Bityutskiy@nokia.com",
        "time": "Mon Dec 08 13:56:13 2008 +0200"
      },
      "message": "MTD: tests: add mtd_oobtest\n\nThis test checks that OOB of a NAND MTD device works fine.\n\nSigned-off-by: Artem Bityutskiy \u003cArtem.Bityutskiy@nokia.com\u003e\n"
    }
  ]
}
