)]}'
{
  "log": [
    {
      "commit": "234e340582901211f40d8c732afc49f0630ecf05",
      "tree": "753076500dfd883b3db56d4f5410af31d8945623",
      "parents": [
        "9b3ae64be658a573b33d05a8dc73b08d3345fa44"
      ],
      "author": {
        "name": "Stephen Boyd",
        "email": "sboyd@codeaurora.org",
        "time": "Thu Apr 05 14:25:11 2012 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Thu Apr 05 15:25:50 2012 -0700"
      },
      "message": "simple_open: automatically convert to simple_open()\n\nMany users of debugfs copy the implementation of default_open() when\nthey want to support a custom read/write function op.  This leads to a\nproliferation of the default_open() implementation across the entire\ntree.\n\nNow that the common implementation has been consolidated into libfs we\ncan replace all the users of this function with simple_open().\n\nThis replacement was done with the following semantic patch:\n\n\u003csmpl\u003e\n@ open @\nidentifier open_f !\u003d simple_open;\nidentifier i, f;\n@@\n-int open_f(struct inode *i, struct file *f)\n-{\n(\n-if (i-\u003ei_private)\n-f-\u003eprivate_data \u003d i-\u003ei_private;\n|\n-f-\u003eprivate_data \u003d i-\u003ei_private;\n)\n-return 0;\n-}\n\n@ has_open depends on open @\nidentifier fops;\nidentifier open.open_f;\n@@\nstruct file_operations fops \u003d {\n...\n-.open \u003d open_f,\n+.open \u003d simple_open,\n...\n};\n\u003c/smpl\u003e\n\n[akpm@linux-foundation.org: checkpatch fixes]\nSigned-off-by: Stephen Boyd \u003csboyd@codeaurora.org\u003e\nCc: Greg Kroah-Hartman \u003cgregkh@linuxfoundation.org\u003e\nCc: Al Viro \u003cviro@zeniv.linux.org.uk\u003e\nCc: Julia Lawall \u003cJulia.Lawall@lip6.fr\u003e\nAcked-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "87997aaa1bad1fc37e4ff7eb27850172017017a0",
      "tree": "c438b0ceadb5354409fb127b539e3f15b0680d3b",
      "parents": [
        "46451d6229723ce1428c69e5b4f3308a775473fd"
      ],
      "author": {
        "name": "Ohad Ben-Cohen",
        "email": "ohad@wizery.com",
        "time": "Wed Feb 22 11:14:46 2012 +0200"
      },
      "committer": {
        "name": "Joerg Roedel",
        "email": "joerg.roedel@amd.com",
        "time": "Fri Feb 24 14:10:54 2012 +0100"
      },
      "message": "iommu/omap: fix NULL pointer dereference\n\nFix this:\n\nroot@omap4430-panda:~# cat /debug/iommu/ducati/mem\n[   62.725708] Unable to handle kernel NULL pointer dereference at virtual addre\nss 0000001c\n[   62.725708] pgd \u003d e6240000\n[   62.737091] [0000001c] *pgd\u003da7168831, *pte\u003d00000000, *ppte\u003d00000000\n[   62.743682] Internal error: Oops: 17 [#1] SMP\n[   62.743682] Modules linked in: omap_iommu_debug omap_iovmm virtio_rpmsg_bus o\nmap_remoteproc remoteproc virtio_ring virtio mailbox_mach mailbox\n[   62.743682] CPU: 0    Not tainted  (3.3.0-rc1-00265-g382f84e-dirty #682)\n[   62.743682] PC is at debug_read_mem+0x5c/0xac [omap_iommu_debug]\n[   62.743682] LR is at 0x1004\n[   62.777832] pc : [\u003cbf033178\u003e]    lr : [\u003c00001004\u003e]    psr: 60000013\n[   62.777832] sp : e72c7f40  ip : c0763c00  fp : 00000001\n[   62.777832] r10: 00000000  r9 : 00000000  r8 : e72c7f80\n[   62.777832] r7 : e6ffdc08  r6 : bed1ac78  r5 : 00001000  r4 : e7276000\n[   62.777832] r3 : e60f3460  r2 : 00000000  r1 : e60f38c0  r0 : 00000000\n[   62.777832] Flags: nZCv  IRQs on  FIQs on  Mode SVC_32  ISA ARM  Segment user\n[   62.816375] Control: 10c53c7d  Table: a624004a  DAC: 00000015\n[   62.816375] Process cat (pid: 1176, stack limit \u003d 0xe72c62f8)\n[   62.828369] Stack: (0xe72c7f40 to 0xe72c8000)\n...\n[   62.884185] [\u003cbf033178\u003e] (debug_read_mem+0x5c/0xac [omap_iommu_debug]) from [\u003cc010e354\u003e] (vfs_read+0xac/0x130)\n[   62.884185] [\u003cc010e354\u003e] (vfs_read+0xac/0x130) from [\u003cc010e4a8\u003e] (sys_read+0x40/0x70)\n[   62.884185] [\u003cc010e4a8\u003e] (sys_read+0x40/0x70) from [\u003cc0014a00\u003e] (ret_fast_syscall+0x0/0x3c)\n\nFix also its \u0027echo bla \u003e /debug/iommu/ducati/mem\u0027 Oops sibling, too.\n\nSigned-off-by: Ohad Ben-Cohen \u003cohad@wizery.com\u003e\nCc: Tony Lindgren \u003ctony@atomide.com\u003e\nCc: Hiroshi Doyu \u003chdoyu@nvidia.com\u003e\nCc: Laurent Pinchart \u003claurent.pinchart@ideasonboard.com\u003e\nCc: Russell King \u003clinux@arm.linux.org.uk\u003e\nCc: Joerg Roedel \u003cJoerg.Roedel@amd.com\u003e\nCc: stable@vger.kernel.org\nSigned-off-by: Joerg Roedel \u003cjoerg.roedel@amd.com\u003e\n"
    },
    {
      "commit": "46451d6229723ce1428c69e5b4f3308a775473fd",
      "tree": "2c44c2c6ee8789a9ce7ecd87dc9de9b70e84b81d",
      "parents": [
        "05df1f3c2afaef5672627f2b7095f0d4c4dbc3a0"
      ],
      "author": {
        "name": "Ohad Ben-Cohen",
        "email": "ohad@wizery.com",
        "time": "Wed Feb 22 10:52:51 2012 +0200"
      },
      "committer": {
        "name": "Joerg Roedel",
        "email": "joerg.roedel@amd.com",
        "time": "Fri Feb 24 14:10:50 2012 +0100"
      },
      "message": "iommu/omap: fix erroneous omap-iommu-debug API calls\n\nAdapt omap-iommu-debug to the latest omap-iommu API changes, which\nwere introduced by commit fabdbca \"iommu/omap: eliminate the public\nomap_find_iommu_device() method\".\n\nIn a nutshell, iommu users are not expected to provide the omap_iommu\nhandle anymore - instead, iommus are attached using their user\u0027s device\nhandle.\n\nomap-iommu-debug is a hybrid beast though: it invokes both public and\nprivate omap iommu API, so fix it as necessary (otherwise a crash\nis imminent).\n\nNote: omap-iommu-debug is a bit disturbing, as it fiddles with internal\nomap iommu data and requires exposing API which is otherwise not needed.\nIt should better be more tightly coupled with omap-iommu, to prevent\nfurther bit rot and avoid exposing redundant API. Naturally that\u0027s out\nof scope for the -rc cycle, so for now just fix the obvious.\n\nReported-by: Russell King \u003clinux@arm.linux.org.uk\u003e\nSigned-off-by: Ohad Ben-Cohen \u003cohad@wizery.com\u003e\nCc: Tony Lindgren \u003ctony@atomide.com\u003e\nCc: Hiroshi Doyu \u003chdoyu@nvidia.com\u003e\nCc: Laurent Pinchart \u003claurent.pinchart@ideasonboard.com\u003e\nCc: Joerg Roedel \u003cJoerg.Roedel@amd.com\u003e\nSigned-off-by: Joerg Roedel \u003cjoerg.roedel@amd.com\u003e\n"
    },
    {
      "commit": "08f2e6312c67fed80df9342e06ad36daf11eb80b",
      "tree": "6e5581f7b6029b1b4516872f38a8c5d133c970b9",
      "parents": [
        "1ea6b8f48918282bdca0b32a34095504ee65bab5"
      ],
      "author": {
        "name": "Ming Lei",
        "email": "tom.leiming@gmail.com",
        "time": "Tue Nov 08 18:29:15 2011 +0800"
      },
      "committer": {
        "name": "Joerg Roedel",
        "email": "joerg.roedel@amd.com",
        "time": "Tue Nov 08 17:11:57 2011 +0100"
      },
      "message": "iommu: omap: Fix compile failure\n\nFix compile failure in drivers/iommu/omap-iommu-debug.c\nbecause of missing module.h include.\n\nSigned-off-by: Ming Lei \u003ctom.leiming@gmail.com\u003e\nSigned-off-by: Joerg Roedel \u003cjoerg.roedel@amd.com\u003e\n"
    },
    {
      "commit": "6c32df437c7c5b1fc29d3ca29b0ff44f8dfafc56",
      "tree": "939d751cbae86291f6b5152cee4615284165fece",
      "parents": [
        "384fa675795ae3796dbc263e5d0f35b9a27d6462"
      ],
      "author": {
        "name": "Ohad Ben-Cohen",
        "email": "ohad@wizery.com",
        "time": "Wed Aug 17 22:57:56 2011 +0300"
      },
      "committer": {
        "name": "Joerg Roedel",
        "email": "joerg.roedel@amd.com",
        "time": "Fri Aug 26 11:46:01 2011 +0200"
      },
      "message": "omap: iommu: omapify \u0027struct iommu\u0027 and exposed API\n\nPrepend \u0027omap_\u0027 to OMAP\u0027s \u0027struct iommu\u0027 and exposed API, to prevent\nnamespace pollution and generally to improve readability of the code\nthat still uses the driver directly.\n\nUpdate the users as needed as well.\n\nSigned-off-by: Ohad Ben-Cohen \u003cohad@wizery.com\u003e\nAcked-by: Laurent Pinchart \u003claurent.pinchart@ideasonboard.com\u003e\nAcked-by: Hiroshi DOYU \u003cHiroshi.DOYU@nokia.com\u003e\nAcked-by: Tony Lindgren \u003ctony@atomide.com\u003e\nSigned-off-by: Joerg Roedel \u003cjoerg.roedel@amd.com\u003e\n"
    },
    {
      "commit": "fcf3a6ef4a588c9f06ad7b01c83534ab81985a3f",
      "tree": "d73b98dda1ad4def8eb2f4cc012eb931ef881e1b",
      "parents": [
        "f626b52d4a568d4315cd152123ef2d1ea406def2"
      ],
      "author": {
        "name": "Ohad Ben-Cohen",
        "email": "ohad@wizery.com",
        "time": "Mon Aug 15 23:21:41 2011 +0300"
      },
      "committer": {
        "name": "Joerg Roedel",
        "email": "joerg.roedel@amd.com",
        "time": "Fri Aug 26 11:46:00 2011 +0200"
      },
      "message": "omap: iommu/iovmm: move to dedicated iommu folder\n\nMove OMAP\u0027s iommu drivers to the dedicated iommu drivers folder.\n\nWhile OMAP\u0027s iovmm (virtual memory manager) driver does not strictly\nbelong to the iommu drivers folder, move it there as well, because\nit\u0027s by no means OMAP-specific (in concept. technically it is still\ncoupled with OMAP\u0027s iommu).\n\nEventually, iovmm will be completely replaced with the generic,\niommu-based, dma-mapping API.\n\nSigned-off-by: Ohad Ben-Cohen \u003cohad@wizery.com\u003e\nAcked-by: Laurent Pinchart \u003claurent.pinchart@ideasonboard.com\u003e\nAcked-by: Hiroshi DOYU \u003cHiroshi.DOYU@nokia.com\u003e\nAcked-by: Tony Lindgren \u003ctony@atomide.com\u003e\nSigned-off-by: Joerg Roedel \u003cjoerg.roedel@amd.com\u003e\n"
    },
    {
      "commit": "c0b0aca0e0e8c479c43c1e126cddc5fc82b2803a",
      "tree": "8eda714bc35740c57ee0da5382c27efe3e02854b",
      "parents": [
        "05271ec424d526968d75b4dd9860f8078bcff0a6"
      ],
      "author": {
        "name": "Arnd Bergmann",
        "email": "arnd@arndb.de",
        "time": "Tue Jul 06 19:16:33 2010 +0200"
      },
      "committer": {
        "name": "Arnd Bergmann",
        "email": "arnd@arndb.de",
        "time": "Thu Sep 16 10:33:11 2010 +0200"
      },
      "message": "arm/omap: use generic_file_llseek in iommu_debug\n\nIn future kernels, debugfs files need to specify\nthe llseek operation explicitly to allow seeking.\nThis sets the llseek operation in the omap iommu\ndebugfs files to generic_file_llseek, which is\nappropriate for files using simple_read_from_buffer.\n\nSigned-off-by: Arnd Bergmann \u003carnd@arndb.de\u003e\nCc: Tony Lindgren \u003ctony@atomide.com\u003e\nCc: linux-omap@vger.kernel.org\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": "ce491cf85466c3377228c5a852ea627ec5136956",
      "tree": "3396aa3dc80ac30de662b59218d3bf788d105996",
      "parents": [
        "3eff851b9dc1e84aa0822772e0be9afb0c973585"
      ],
      "author": {
        "name": "Tony Lindgren",
        "email": "tony@atomide.com",
        "time": "Tue Oct 20 09:40:47 2009 -0700"
      },
      "committer": {
        "name": "Tony Lindgren",
        "email": "tony@atomide.com",
        "time": "Tue Oct 20 09:40:47 2009 -0700"
      },
      "message": "omap: headers: Move remaining headers from include/mach to include/plat\n\nMove the remaining headers under plat-omap/include/mach\nto plat-omap/include/plat. Also search and replace the\nfiles using these headers to include using the right path.\n\nThis was done with:\n\n#!/bin/bash\nmach_dir_old\u003d\"arch/arm/plat-omap/include/mach\"\nplat_dir_new\u003d\"arch/arm/plat-omap/include/plat\"\nheaders\u003d$(cd $mach_dir_old \u0026\u0026 ls *.h)\nomap_dirs\u003d\"arch/arm/*omap*/ \\\ndrivers/video/omap \\\nsound/soc/omap\"\nother_files\u003d\"drivers/leds/leds-ams-delta.c \\\ndrivers/mfd/menelaus.c \\\ndrivers/mfd/twl4030-core.c \\\ndrivers/mtd/nand/ams-delta.c\"\n\nfor header in $headers; do\n\told\u003d\"#include \u003cmach\\/$header\"\n\tnew\u003d\"#include \u003cplat\\/$header\"\n\tfor dir in $omap_dirs; do\n\t\tfind $dir -type f -name \\*.[chS] | \\\n\t\t\txargs sed -i \"s/$old/$new/\"\n\tdone\n\tfind drivers/ -type f -name \\*omap*.[chS] | \\\n\t\txargs sed -i \"s/$old/$new/\"\n\tfor file in $other_files; do\n\t\tsed -i \"s/$old/$new/\" $file\n\tdone\ndone\n\nfor header in $(ls $mach_dir_old/*.h); do\n\tgit mv $header $plat_dir_new/\ndone\n\nSigned-off-by: Tony Lindgren \u003ctony@atomide.com\u003e\n"
    },
    {
      "commit": "14e0e6796a0d460ac6f7727616161dc317bbbf3a",
      "tree": "06ff0894445ad8b08aa15e479742131396e1021b",
      "parents": [
        "613f77696e2c489e87def86a443fb4889acb95aa"
      ],
      "author": {
        "name": "Hiroshi DOYU",
        "email": "Hiroshi.DOYU@nokia.com",
        "time": "Fri Aug 28 10:54:41 2009 -0700"
      },
      "committer": {
        "name": "Tony Lindgren",
        "email": "tony@atomide.com",
        "time": "Fri Aug 28 10:54:41 2009 -0700"
      },
      "message": "OMAP: iommu: add initial debugfs support\n\nThis enables to peek the following data.\n\n$ /debug/iommu/isp# ls\nmem             nr_tlb_entries  regs\nmmap            pagetable       tlb\n$ /debug/iommu/isp# head pagetable\nL:      da:      pa:\n-----------------------------------------\n2: 00001000 8ae4a002\n2: 00002000 8e7bb002\n2: 00003000 8ae49002\n2: 00004000 8ae65002\n.....\n\nSigned-off-by: Hiroshi DOYU \u003cHiroshi.DOYU@nokia.com\u003e\nSigned-off-by: Tony Lindgren \u003ctony@atomide.com\u003e\n"
    }
  ]
}
