)]}'
{
  "log": [
    {
      "commit": "a8fc3d8decfd5601fb14a2163952f81fa6b971bb",
      "tree": "9666ef0fefde06061b0fc3e1a6ef3c1f8e9cfb0a",
      "parents": [
        "ab67a4d511188680beb8a0d82a90f55dbeb53d5c"
      ],
      "author": {
        "name": "Kris Katterjohn",
        "email": "kjak@users.sourceforge.net",
        "time": "Tue Jan 17 13:03:54 2006 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Jan 17 13:03:54 2006 -0800"
      },
      "message": "[NET]: \"signed long\" -\u003e \"long\"\n\nSigned-off-by: Kris Katterjohn \u003ckjak@users.sourceforge.net\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "ab67a4d511188680beb8a0d82a90f55dbeb53d5c",
      "tree": "c2a9842b9877df27a50448506c3cfe3a6f00f6df",
      "parents": [
        "ae82af54d73becd66804d942cf39b049e625fa89"
      ],
      "author": {
        "name": "Patrick McHardy",
        "email": "kaber@trash.net",
        "time": "Tue Jan 17 13:01:31 2006 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Jan 17 13:01:31 2006 -0800"
      },
      "message": "[EBTABLES]: Handle SCTP/DCCP in ebt_{ip,log}\n\nSigned-off-by: Patrick McHardy \u003ckaber@trash.net\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "ae82af54d73becd66804d942cf39b049e625fa89",
      "tree": "d987461ee9dfbfb963bb96052cf92bca176469ff",
      "parents": [
        "2f970d83576cf4938fd75551c465050f6a16c33c"
      ],
      "author": {
        "name": "Patrick McHardy",
        "email": "kaber@trash.net",
        "time": "Tue Jan 17 13:01:06 2006 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Jan 17 13:01:06 2006 -0800"
      },
      "message": "[PKT_SCHED]: Handle SCTP/DCCP in sfq_hash\n\nSigned-off-by: Patrick McHardy \u003ckaber@trash.net\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "2f970d83576cf4938fd75551c465050f6a16c33c",
      "tree": "7bb43aabfbd8afdab49549e4d56c0a15015d5995",
      "parents": [
        "8243126c5e29030bf1a3fb75187a513966dcba62"
      ],
      "author": {
        "name": "Eric Dumazet",
        "email": "dada1@cosmosbay.com",
        "time": "Tue Jan 17 02:54:36 2006 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Jan 17 02:54:36 2006 -0800"
      },
      "message": "[IPV4]: rt_cache_stat can be statically defined\n\nUsing __get_cpu_var(obj) is slightly faster than per_cpu_ptr(obj, \nraw_smp_processor_id()).\n\n1) Smaller code and memory use\nFor static and small objects, DEFINE_PER_CPU(type, object) is preferred over a \nalloc_percpu() : Better and smaller code to access them, and no extra memory \n(storing the pointer, and the percpu array of pointers)\n\nx86_64 code before patch\n\nmov    1237577(%rip),%rax        # ffffffff803e5990 \u003crt_cache_stat\u003e\nnot    %rax  # part of per_cpu machinery\nmov    %gs:0x3c,%edx # get cpu number\nmovslq %edx,%rdx # extend 32 bits cpu number to 64 bits\nmov    (%rax,%rdx,8),%rax # get the pointer for this cpu\nincl   0x38(%rax)\n\nx86_64 code after patch\n\nmov    $per_cpu__rt_cache_stat,%rdx\nmov    %gs:0x48,%rax # get percpu data offset\nincl   0x38(%rax,%rdx,1)\n\n2) False sharing avoidance for SMP :\nFor a small NR_CPUS, the array of per cpu pointers allocated in alloc_percpu() \ncan be \u003c\u003d 32 bytes. This let slab code gives a part of a cache line. If the \nother part of this 64 bytes (or 128 bytes) cache line is used by a mostly \nwritten object, we can have false sharing and expensive per_cpu_ptr() operations.\n\nSize of rt_cache_stat is 64 bytes, so this patch is not a danger of a too big \nincrease of bss (in UP mode) or static per_cpu data for SMP \n(PERCPU_ENOUGH_ROOM is currently 32768 bytes)\n\nSigned-off-by: Eric Dumazet \u003cdada1@cosmosbay.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "8243126c5e29030bf1a3fb75187a513966dcba62",
      "tree": "39750d44770efcdac150f041f71b7272c8da20f9",
      "parents": [
        "f09484ff87f677056ce631aa3d8e486861501b51"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Tue Jan 17 02:54:21 2006 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Tue Jan 17 02:54:21 2006 -0800"
      },
      "message": "[NET]: Make second arg to skb_reserved() signed.\n\nSome subsystems, such as PPP, can send negative values\nhere.  It just happened to work correctly on 32-bit with\nan unsigned value, but on 64-bit this explodes.\n\nFigured out by Paul Mackerras based upon several PPP crash\nreports.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "f09484ff87f677056ce631aa3d8e486861501b51",
      "tree": "9c9d208a5e4f2d359087e3e9b00d7b00b4a2ec93",
      "parents": [
        "ec41c7dfd525468decb9da9281dbc9ed82d98c98"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Tue Jan 17 02:42:02 2006 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Tue Jan 17 02:42:02 2006 -0800"
      },
      "message": "[NETFILTER]: ip_conntrack_proto_gre.c needs linux/interrupt.h\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "ec41c7dfd525468decb9da9281dbc9ed82d98c98",
      "tree": "02ac7f0b1318c69d53a2405972f8a6880dc8b7c6",
      "parents": [
        "f0daaa654af68c1651add9d21188d81c19672551"
      ],
      "author": {
        "name": "Michael Chan",
        "email": "mchan@broadcom.com",
        "time": "Tue Jan 17 02:40:55 2006 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Jan 17 02:40:55 2006 -0800"
      },
      "message": "[TG3]: Refine nvram locking\n\nAdd nvram lock count so that calls to tg3_nvram_lock()/unlock() can\nbe nested. Add error checking to all callers of tg3_nvram_lock()\nwhere appropriate. To prevent nvram lock failures after halting the\nfirmware, it is also necessary to release firmware\u0027s nvram lock in\ntg3_halt_cpu().\n\nUpdate version to 3.48.\n\nBased on David Miller\u0027s initial patch.\n\nSigned-off-by: Michael Chan \u003cmchan@broadcom.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "f0daaa654af68c1651add9d21188d81c19672551",
      "tree": "50eebd2b494c15498c96a82bdaf5315b39b0e0fa",
      "parents": [
        "e0069caede8387c585060b7e2e87729e9efcebc6"
      ],
      "author": {
        "name": "Yasuyuki Kozakai",
        "email": "yasuyuki.kozakai@toshiba.co.jp",
        "time": "Tue Jan 17 02:39:39 2006 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Jan 17 02:39:39 2006 -0800"
      },
      "message": "[NETFILTER] ip6tables: whitespace and indent cosmetic cleanup\n\nSigned-off-by: Yasuyuki Kozakai \u003cyasuyuki.kozakai@toshiba.co.jp\u003e\nSigned-off-by: Harald Welte \u003claforge@netfilter.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "e0069caede8387c585060b7e2e87729e9efcebc6",
      "tree": "dec3b2bd98aa2081519a370569c70640592c0909",
      "parents": [
        "6dd42af7904336c6f59a01f9fd3599ee650e78ed"
      ],
      "author": {
        "name": "Yasuyuki Kozakai",
        "email": "yasuyuki.kozakai@toshiba.co.jp",
        "time": "Tue Jan 17 02:39:19 2006 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Jan 17 02:39:19 2006 -0800"
      },
      "message": "[NETFILTER] ip6tables: remove unused definitions\n\nThese definitions ware used for only internal use in kernel \u003c\u003d 2.6.13,\nwhich had not introduced the unified parser of IPv6 extension header yet.\n\nSigned-off-by: Yasuyuki Kozakai \u003cyasuyuki.kozakai@toshiba.co.jp\u003e\nSigned-off-by: Harald Welte \u003claforge@netfilter.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "6dd42af7904336c6f59a01f9fd3599ee650e78ed",
      "tree": "b8688c0fc87a67352a26f4772f02c2232a7bafc5",
      "parents": [
        "ccc91324a1b44d345ab4f814eb2ff453c7e98f9e"
      ],
      "author": {
        "name": "Yasuyuki Kozakai",
        "email": "yasuyuki.kozakai@toshiba.co.jp",
        "time": "Tue Jan 17 02:38:56 2006 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Jan 17 02:38:56 2006 -0800"
      },
      "message": "[NETFILTER] Makefile cleanup\n\nThese are replaced with x_tables matches and no longer exist.\n\nSigned-off-by: Yasuyuki Kozakai \u003cyasuyuki.kozakai@toshiba.co.jp\u003e\nSigned-off-by: Harald Welte \u003claforge@netfilter.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "ccc91324a1b44d345ab4f814eb2ff453c7e98f9e",
      "tree": "24ac07d2a014a5f6b8dcc685fb76afea1048485d",
      "parents": [
        "e35bedf369b17120dbd7d554bee45407a3825267"
      ],
      "author": {
        "name": "Benoit Boissinot",
        "email": "benoit.boissinot@ens-lyon.org",
        "time": "Tue Jan 17 02:26:34 2006 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Jan 17 02:26:34 2006 -0800"
      },
      "message": "[NETFILTER] ip[6]t_policy: Fix compilation warnings\n\nip[6]t_policy argument conversion slipped when merging with x_tables\n\nSigned-off-by: Benoit Boissinot \u003cbenoit.boissinot@ens-lyon.org\u003e\nSigned-off-by: Harald Welte \u003claforge@netfilter.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "e35bedf369b17120dbd7d554bee45407a3825267",
      "tree": "5ac5aa1c71c0e2d349a13b9103147c0346129326",
      "parents": [
        "dd914b4082cfbe28849898a0a98757827829c813"
      ],
      "author": {
        "name": "Kris Katterjohn",
        "email": "kjak@users.sourceforge.net",
        "time": "Tue Jan 17 02:25:52 2006 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Jan 17 02:25:52 2006 -0800"
      },
      "message": "[NET]: Fix whitespace issues in net/core/filter.c\n\nThis fixes some whitespace issues in net/core/filter.c\n\nSigned-off-by: Kris Katterjohn \u003ckjak@users.sourceforge.net\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "dd914b4082cfbe28849898a0a98757827829c813",
      "tree": "b1a022975ab230e9496fdcddbb057f0b0b0d7e41",
      "parents": [
        "9343e79a7bb2d3268d68997163608b87d58d8098"
      ],
      "author": {
        "name": "Amnon Aaronsohn",
        "email": "bla@cs.huji.ac.il",
        "time": "Tue Jan 17 02:24:26 2006 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Jan 17 02:24:26 2006 -0800"
      },
      "message": "[PKT_SCHED] sch_prio: fix qdisc bands init\n\nCurrently when PRIO is configured to use N bands, it lets the packets be\ndirected to any of the bands 0..N-1. However, PRIO attaches a fifo qdisc\nonly to the bands that appear in the priomap; the rest of the N bands\nremain with a noop qdisc attached. This patch changes PRIO\u0027s behavior so\nthat it attaches a fifo qdisc to all of the N bands.\n\nSigned-off-by: Amnon Aaronsohn \u003cbla@cs.huji.ac.il\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "9343e79a7bb2d3268d68997163608b87d58d8098",
      "tree": "1016bc38ce877e988e26ec644a48e73cc1c1545d",
      "parents": [
        "2664b25051f7ab96b22b199aa2f5ef6a949a4296"
      ],
      "author": {
        "name": "YOSHIFUJI Hideaki",
        "email": "yoshfuji@linux-ipv6.org",
        "time": "Tue Jan 17 02:10:53 2006 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Jan 17 02:10:53 2006 -0800"
      },
      "message": "[IPV6]: Preserve procfs IPV6 address output format\n\nProcfs always output IPV6 addresses without the colon\ncharacters, and we cannot change that.\n\nSigned-off-by: YOSHIFUJI Hideaki \u003cyoshfuji@linux-ipv6.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "2664b25051f7ab96b22b199aa2f5ef6a949a4296",
      "tree": "6ba4c1bd5220889e584c84e56a14888aecc2e5f9",
      "parents": [
        "fb60a9fee970a1159a006abddc33e9685f89a83e"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:44:47 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:44:47 2006 -0800"
      },
      "message": "Linux v2.6.16-rc1\n"
    },
    {
      "commit": "fb60a9fee970a1159a006abddc33e9685f89a83e",
      "tree": "618acfde015fdfa9c8710bd9fd58ce0f75571a70",
      "parents": [
        "f4caf1606d3bbe3a790997e3dc5bb2779c6b7daf",
        "b7bfcf7cbd58d2a64aa46f3b4bec921e346e604f"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:43:11 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:43:11 2006 -0800"
      },
      "message": "Merge branch \u0027for-linus\u0027 of git://brick.kernel.dk/data/git/linux-2.6-block\n"
    },
    {
      "commit": "f4caf1606d3bbe3a790997e3dc5bb2779c6b7daf",
      "tree": "4810d6604df1be8c89546b4508d95772da7d7549",
      "parents": [
        "1384cee55d326e806158cea4b983ef2a9d26e035"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 17:27:38 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:31:29 2006 -0800"
      },
      "message": "[PATCH] Remove unused code from rioctrl.c (Last for this batch of work)\n\nSigned-off-by: Alan Cox \u003calan@redhat.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "1384cee55d326e806158cea4b983ef2a9d26e035",
      "tree": "84b63922ab82f789e290f238ef72b20f478722f0",
      "parents": [
        "542ea6c37c2a77f7523c0703c326b8a9af2892bc"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 17:25:42 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:31:28 2006 -0800"
      },
      "message": "[PATCH] Remove rio_table.c unused code\n\nSigned-off-by: Alan Cox \u003calan@redhat.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "542ea6c37c2a77f7523c0703c326b8a9af2892bc",
      "tree": "fd06ec091cd3092244df56f13ed419e9cd23915a",
      "parents": [
        "283c9d546ed7506b03f0d9da4441145aa5f2f6f9"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 17:24:47 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:31:28 2006 -0800"
      },
      "message": "[PATCH] Remove unused code from rio_linux.c\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "283c9d546ed7506b03f0d9da4441145aa5f2f6f9",
      "tree": "950375a7bb037dd133a9ad21a47a3bc41fed4f5c",
      "parents": [
        "8b03de1f667a5c15d1e4d50318a27a67669f8980"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 17:21:25 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:31:28 2006 -0800"
      },
      "message": "[PATCH] Remove unused CHECK code from riocmd.c\n\nSigned-off-by: Alan Cox \u003calan@redhat.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "8b03de1f667a5c15d1e4d50318a27a67669f8980",
      "tree": "859381fd898eba9a66040b88576ede5a47c198b8",
      "parents": [
        "f099bfb7089735ad1760b3c6938069af10a88cc0"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 17:19:52 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:31:28 2006 -0800"
      },
      "message": "[PATCH] Remove unused code from rioroute.h\n\nSigned-off-by: Alan Cox \u003calan@redhat.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "f099bfb7089735ad1760b3c6938069af10a88cc0",
      "tree": "400a33d80c643bcdd231f47b346c37d2b933c038",
      "parents": [
        "c7306c02874bf4d22bc0b1dbea34282d0b9a3df1"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 17:18:05 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:31:28 2006 -0800"
      },
      "message": "[PATCH] Remove unused code from rioboot.h\n\nSigned-off-by: Alan Cox \u003calan@redhat.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "c7306c02874bf4d22bc0b1dbea34282d0b9a3df1",
      "tree": "26d22dc836589b438a0e57222dc8910f0ac41f69",
      "parents": [
        "a6176eeab0ef1750ce21790a6c6f61ba6c9ffc63"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 17:14:25 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:31:28 2006 -0800"
      },
      "message": "[PATCH] Remove unused code from rioboot\n\nSigned-off-by: Alan Cox \u003calan@redhat.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "a6176eeab0ef1750ce21790a6c6f61ba6c9ffc63",
      "tree": "4b3f55bd031823085acdf731ceffea8a48558db7",
      "parents": [
        "925d70d64bfeccb669c0750943585944abb28b51"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 17:11:50 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:31:27 2006 -0800"
      },
      "message": "[PATCH] Remove #if 0 and other long dead code from rio_tty\n\nSigned-off-by: Alan Cox \u003calan@redhat.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "925d70d64bfeccb669c0750943585944abb28b51",
      "tree": "80cb5fff01a025d2cfd3bc0985eebb917b14c10a",
      "parents": [
        "09979236d6dc6a51c21131c4a8c0be7e1992a398"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 17:10:23 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:31:27 2006 -0800"
      },
      "message": "[PATCH] Remove long dead #if 0 code from rio_param\n\nSigned-off-by: Alan Cox \u003calan@redhat.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "09979236d6dc6a51c21131c4a8c0be7e1992a398",
      "tree": "2339465aae6addcfb35be74476d3c87a17982093",
      "parents": [
        "3918276ce5e3f5473428f307194fef422c0b12b8"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 17:07:54 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:31:27 2006 -0800"
      },
      "message": "[PATCH] Remove old firmware headers from rio drivers\n\nSigned-off-by: Alan Cox \u003calan@redhat.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3918276ce5e3f5473428f307194fef422c0b12b8",
      "tree": "b3738a145d5e2d82e8d01a348df04f6265ec3673",
      "parents": [
        "169da21f403adf6698ef9bbb759e27c1f496b2b5"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 17:05:55 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:31:27 2006 -0800"
      },
      "message": "[PATCH] Remove rtahw.h from rio driver (unused file)\n\nSigned-off-by: Alan Cox \u003calan@redhat.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "169da21f403adf6698ef9bbb759e27c1f496b2b5",
      "tree": "ec0047246934159f2006dd77138423396fd9e7e3",
      "parents": [
        "a09be029bbf8ceded3d9dd9715df70f1f8297b80"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 17:03:49 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:30:31 2006 -0800"
      },
      "message": "[PATCH] Remove file riscos.h from rio driver (unused file)\n\nSigned-off-by: Alan Cox \u003calan@redhat.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "a09be029bbf8ceded3d9dd9715df70f1f8297b80",
      "tree": "9f5a2a9fb295fc0d58cebe2672c99d371f0d4f20",
      "parents": [
        "69da7f9a63679a8af67325c572a3bd1338c05df8"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 17:02:43 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:30:31 2006 -0800"
      },
      "message": "[PATCH] Remove file riowinif.h from rio driver (unused file)\n\nSigned-off-by: Alan Cox \u003calan@redhat.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "69da7f9a63679a8af67325c572a3bd1338c05df8",
      "tree": "e91720240a1b8dd1ceac2fe0a70c451ebab39637",
      "parents": [
        "8618751503b66f1c2b1f8e715ffc006fa91c2400"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 17:01:41 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:30:31 2006 -0800"
      },
      "message": "[PATCH] Remove riotime.h from rio driver (unused file)\n\nSigned-off-by: Alan Cox \u003calan@redhat.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "8618751503b66f1c2b1f8e715ffc006fa91c2400",
      "tree": "8f94dcdb14adc2892ee9549d6f713d88ea625611",
      "parents": [
        "0d336ceb1e35e12ec26936be421da99eeff0a3de"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 16:59:40 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:30:31 2006 -0800"
      },
      "message": "[PATCH] Remove file riolocks.h from rio driver (unused file)\n\nSigned-off-by: Alan Cox \u003calan@redhat.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "0d336ceb1e35e12ec26936be421da99eeff0a3de",
      "tree": "d19dd035a233b0750810a792a0c68ca18005a6a4",
      "parents": [
        "735f88c62ec8df5a3ec730c1bbf47907d76b6f75"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 16:58:38 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:30:30 2006 -0800"
      },
      "message": "[PATCH] Remove proto.h from rio driver (unused file)\n\nSigned-off-by: Alan Cox \u003calan@redhat.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "735f88c62ec8df5a3ec730c1bbf47907d76b6f75",
      "tree": "fef2e3c9907e9014eb093e30d70efa8533d8e595",
      "parents": [
        "009c4cb8aa0a32548c5aaec5b7b49b307fb6bf6a"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 16:57:18 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:30:30 2006 -0800"
      },
      "message": "[PATCH] Remove poll.h from rio driver (unused file)\n\nSigned-off-by: Alan Cox \u003calan@redhat.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "009c4cb8aa0a32548c5aaec5b7b49b307fb6bf6a",
      "tree": "6ec5d4cd8c85a452490b2e0d59222dfe5f76447e",
      "parents": [
        "125ca8fb5bbab8ff726bb538120b553f30cd136f"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 16:56:16 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:30:30 2006 -0800"
      },
      "message": "[PATCH] Remove mesg.h from rio driver (unused file)\n\nSigned-off-by: Alan Cox \u003calan@redhat.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "125ca8fb5bbab8ff726bb538120b553f30cd136f",
      "tree": "12a8b2b2bf8329fc4bf280af85c242456aa30720",
      "parents": [
        "67abbfe7deccf4a800fb246f9cecd6b7836ab150"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 16:54:30 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:30:30 2006 -0800"
      },
      "message": "[PATCH] Remove mca.h from rio driver (unused file)\n\nSigned-off-by: Alan Cox \u003calan@redhat.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "67abbfe7deccf4a800fb246f9cecd6b7836ab150",
      "tree": "0131099d1afd3aecf32a8ca4a18b37c9034f571d",
      "parents": [
        "b52a90dbe654c89bb9a50c90462a69931701428f"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 16:53:38 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:30:30 2006 -0800"
      },
      "message": "[PATCH] Remove internal firmware building files from rio\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "b52a90dbe654c89bb9a50c90462a69931701428f",
      "tree": "25d55b8468c69827708f08123d46dcff3e469c37",
      "parents": [
        "85ae2f9cabbb029b0fce3fa8c641de7f0983e308"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 16:52:36 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:30:30 2006 -0800"
      },
      "message": "[PATCH] Remove hosthw.h from rio (unused file)\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "85ae2f9cabbb029b0fce3fa8c641de7f0983e308",
      "tree": "e04396517c7e51c36aafae663cfd4239f5dc4102",
      "parents": [
        "bed445d41e0ca4b09ffbb82274fb79fb444030e7"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 16:51:37 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:30:30 2006 -0800"
      },
      "message": "[PATCH] Remove formpkt.h from rio (unused file)\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "bed445d41e0ca4b09ffbb82274fb79fb444030e7",
      "tree": "ec9c373eb82fa13557c24ca7e77078eb127df2cc",
      "parents": [
        "e67f76a6b1ab418b8232791d99ee728a395bd335"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 16:50:07 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:30:29 2006 -0800"
      },
      "message": "[PATCH] Remove enable.h from rio (unused file)\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "e67f76a6b1ab418b8232791d99ee728a395bd335",
      "tree": "ed24f7438882efe0515579887c11cbca149ed933",
      "parents": [
        "0d233681274013a554194ce8e2fe8945cd49979f"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 16:49:15 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:30:29 2006 -0800"
      },
      "message": "[PATCH] Remove enable.h from rio driver (unused file)\n\nSigned-off-by: Alan Cox \u003calan@redhat.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "0d233681274013a554194ce8e2fe8945cd49979f",
      "tree": "671c2357fe145cc7f10a8d3e115867c52096fc2a",
      "parents": [
        "4198d8c3687418f245d7b351fd34702fb7fe0668"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 16:48:12 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:30:29 2006 -0800"
      },
      "message": "[PATCH] Remove debug.h from rio.h (unused file)\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "4198d8c3687418f245d7b351fd34702fb7fe0668",
      "tree": "98639242a534829d1a259395448903659f2cdcc6",
      "parents": [
        "98da212f0d22cb6ef7fee96e62572c763194c77b"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 16:47:14 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:30:29 2006 -0800"
      },
      "message": "[PATCH] Remove data.h from rio driver (unused file)\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "98da212f0d22cb6ef7fee96e62572c763194c77b",
      "tree": "3bfd7dfb21c1c41379d9cce56943dfb7e17c65ba",
      "parents": [
        "e8a9858aa2af3d14a37eafc6182d3b12923be41c"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 16:46:17 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:30:29 2006 -0800"
      },
      "message": "[PATCH] Remove chan.h from rio driver (unused file)\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "e8a9858aa2af3d14a37eafc6182d3b12923be41c",
      "tree": "9cbcb6c42b956d77706ad3557b819ab5b40cadff",
      "parents": [
        "f504fb59c7e356d00ac56933a4462a6ba74d0c1d"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 16:45:18 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:30:29 2006 -0800"
      },
      "message": "[PATCH] Remove cmd.h from rio driver (unused file)\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "f504fb59c7e356d00ac56933a4462a6ba74d0c1d",
      "tree": "c37190e38baea806f684a5aa50a243a751a6fdd4",
      "parents": [
        "4f4e2dc3ce46d279a311e5250ac3cbd394279c31"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Mon Jan 16 16:44:05 2006 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:30:29 2006 -0800"
      },
      "message": "[PATCH] Remove brates.h from rio driver (unused file)\n\nSigned-off-by: Alan Cox \u003calan@redhat.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "4f4e2dc3ce46d279a311e5250ac3cbd394279c31",
      "tree": "65a69cef38f5a682a2f7249d7144d4be9a2b2bc1",
      "parents": [
        "a462e9ff524f33da3e504fc71b8dd2b7584e4f28"
      ],
      "author": {
        "name": "Xose Vazquez Perez",
        "email": "xose.vazquez@gmail.com",
        "time": "Sat Jan 14 19:56:28 2006 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:26:01 2006 -0800"
      },
      "message": "[PATCH] README updated\n\nReplace old information with newer from kernel.org\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "a462e9ff524f33da3e504fc71b8dd2b7584e4f28",
      "tree": "6bb8042622121fdf61aad20169e317e743fbec26",
      "parents": [
        "ea13dbc89caecd982500894d4238766a6bd3c8f4"
      ],
      "author": {
        "name": "Dmitry Torokhov",
        "email": "dtor_core@ameritech.net",
        "time": "Sun Jan 15 23:32:53 2006 -0500"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:24:10 2006 -0800"
      },
      "message": "[PATCH] Fix compile warning in bt8xx module\n\nSigned-off-by: Dmitry Torokhov \u003cdtor@mail.ru\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "ea13dbc89caecd982500894d4238766a6bd3c8f4",
      "tree": "80b6c17a1389cbab83e13d4f5d6034a756a0e798",
      "parents": [
        "d669af9d5afb5bdb629f78d024b35e507465f570"
      ],
      "author": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Mon Jan 16 10:59:41 2006 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:21:12 2006 -0800"
      },
      "message": "[PATCH] kernel/hrtimer.c sparse warning fix\n\nfix the following sparse warning:\n\n kernel/hrtimer.c:665:34: warning: incorrect type in argument 2 (different address spaces)\n kernel/hrtimer.c:665:34:    expected void const *from\n kernel/hrtimer.c:665:34:    got struct timespec [noderef] *\u003cnoident\u003e\u003casn:1\u003e\n kernel/hrtimer.c:664:2: warning: dereference of noderef expression\n\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "d669af9d5afb5bdb629f78d024b35e507465f570",
      "tree": "711ab23d69098fa05973b69efbd0ae61cc7ff927",
      "parents": [
        "2ddb55f091a9c74a297d72b50f8310c0c8ed7d1d",
        "f87d09be8c2c270b83c2ad80d06206a7306e2fa9"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:20:01 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:20:01 2006 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/mchehab/v4l-dvb\n"
    },
    {
      "commit": "2ddb55f091a9c74a297d72b50f8310c0c8ed7d1d",
      "tree": "c2389badfdb028dc30bbd0948c16ff25e2a77c27",
      "parents": [
        "c09b42404d29c8a9266f8186632330dc8474bf2e"
      ],
      "author": {
        "name": "Ravikiran G Thirumalai",
        "email": "kiran@scalex86.org",
        "time": "Tue Jan 17 07:03:47 2006 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:18:35 2006 -0800"
      },
      "message": "[PATCH] x86_64: Fix VSMP build\n\nPatch fixes a build problem with CONFIG_X86_VSMP.  The vSMP bits probably\n\ngathered some fuzz on its way to mainline, and safe_halt() which was outside\nthe #endif (CONFIG_X86_VSMP) somehow got inside the !CONFIG_X86_VSMP condition,\nhence being undefined and breaking CONFIG_X86_VSMP builds.  Patch takes\nsafe_halt() and halt() macros out of the #endif\n\nSigned-off-by: Ravikiran Thirumalai \u003ckiran@scalex86.org\u003e\nSigned-off-by: Andi Kleen \u003cak@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "c09b42404d29c8a9266f8186632330dc8474bf2e",
      "tree": "26477ddbd49e6de7ef16e21d7a7440b9b9f11c57",
      "parents": [
        "44df75e629106efcada087cead6c3f33ed6bcc60"
      ],
      "author": {
        "name": "Matt Tolentino",
        "email": "metolent@cs.vt.edu",
        "time": "Tue Jan 17 07:03:44 2006 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:18:35 2006 -0800"
      },
      "message": "[PATCH] x86_64: add __meminit for memory hotplug\n\nAdd __meminit to the __init lineup to ensure functions default\nto __init when memory hotplug is not enabled.  Replace __devinit\nwith __meminit on functions that were changed when the memory\nhotplug code was introduced.\n\nSigned-off-by: Matt Tolentino \u003cmatthew.e.tolentino@intel.com\u003e\nSigned-off-by: Andi Kleen \u003cak@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "44df75e629106efcada087cead6c3f33ed6bcc60",
      "tree": "34f7c85748bf1b77c3568d4d1cc0d3d0195abcc7",
      "parents": [
        "8817210d4d968e58f7d93db2eecd17b20dd03d40"
      ],
      "author": {
        "name": "Matt Tolentino",
        "email": "metolent@cs.vt.edu",
        "time": "Tue Jan 17 07:03:41 2006 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:18:35 2006 -0800"
      },
      "message": "[PATCH] x86_64: add x86-64 support for memory hot-add\n\nAdd x86-64 specific memory hot-add functions, Kconfig options,\nand runtime kernel page table update functions to make\nhot-add usable on x86-64 machines.  Also, fixup the nefarious\nconditional locking and exports pointed out by Andi.\n\nTested on Intel and IBM x86-64 memory hot-add capable systems.\n\nSigned-off-by: Matt Tolentino \u003cmatthew.e.tolentino@intel.com\u003e\nSigned-off-by: Andi Kleen \u003cak@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "8817210d4d968e58f7d93db2eecd17b20dd03d40",
      "tree": "4a4084011f348f44c388e1876e55c0d2a03f46b4",
      "parents": [
        "562795fe5770d0c7ee7fe269890e37d9fd475fdf"
      ],
      "author": {
        "name": "Andi Kleen",
        "email": "ak@suse.de",
        "time": "Tue Jan 17 07:03:38 2006 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:18:35 2006 -0800"
      },
      "message": "[PATCH] x86_64: Flexmap for 32bit and randomized mappings for 64bit\n\nAnother try at this.\n\nFor 32bit follow the 32bit implementation from Ingo -\nmappings are growing down from the end of stack now\nand vary randomly by 1GB.\n\nRandomized mappings for 64bit just vary the normal mmap break\nby 1TB. I didn\u0027t bother implementing full flex mmap for 64bit\nbecause it shouldn\u0027t be needed there.\n\nCc: mingo@elte.hu\n\nSigned-off-by: Andi Kleen \u003cak@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "562795fe5770d0c7ee7fe269890e37d9fd475fdf",
      "tree": "5c38a34bca3f1ee29b56fe796deece432bc281ae",
      "parents": [
        "f0cf5d1a34725f3eab39120204da4afa43874269"
      ],
      "author": {
        "name": "Andi Kleen",
        "email": "ak@suse.de",
        "time": "Tue Jan 17 07:03:35 2006 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:18:35 2006 -0800"
      },
      "message": "[PATCH] x86_64: Remove elf32_map in 32bit ELF loader\n\nIt\u0027s identical to the standard elf_map.\n\nSigned-off-by: Andi Kleen \u003cak@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "f0cf5d1a34725f3eab39120204da4afa43874269",
      "tree": "14d87fb5f2f3ace1294d85f8a9fd3666ce33ec8d",
      "parents": [
        "0addb142afa12a9bdf6cc53d3e86670c59c82d8f"
      ],
      "author": {
        "name": "Jan Beulich",
        "email": "jbeulich@novell.com",
        "time": "Tue Jan 17 07:03:32 2006 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:18:35 2006 -0800"
      },
      "message": "[PATCH] x86_64: eliminate empty_bad_{page,{pte,pmd}_table}\n\n... as they are no longer needed. Since there were hard-coded numbers in the\nfile, the patch also adds a mechanism to avoid these (otherwise potential\nfuture changes would again and again require adjusting these numbers).\n\nSigned-Off-By: Jan Beulich \u003cjbeulich@novell.com\u003e\nSigned-off-by: Andi Kleen \u003cak@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "0addb142afa12a9bdf6cc53d3e86670c59c82d8f",
      "tree": "873568980164def18bb38d21f5acee8f2402daef",
      "parents": [
        "17115e0388ece8d7141c0282c88e7dfc61953f92"
      ],
      "author": {
        "name": "Andi Kleen",
        "email": "ak@suse.de",
        "time": "Tue Jan 17 07:03:29 2006 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:18:34 2006 -0800"
      },
      "message": "[PATCH] x86_64: Update defconfig\n\nSigned-off-by: Andi Kleen \u003cak@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "17115e0388ece8d7141c0282c88e7dfc61953f92",
      "tree": "80009eb4e7158a6c57de447901a04de3f799135d",
      "parents": [
        "4c2645830e29c082217662e7486572e9637e9f1d"
      ],
      "author": {
        "name": "NeilBrown",
        "email": "neilb@suse.de",
        "time": "Mon Jan 16 22:14:57 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:32 2006 -0800"
      },
      "message": "[PATCH] md: Clear clevel whenever level is set.\n\nThe \u0027level\u0027 of an md array can be set as either a number of a string.  When\none is set, the other must be marked \u0027undefined\u0027.  This wasn\u0027t being done\nin one place: where new arrays are created.\n\nResult: if md1 is a raid1, it is stopped and a raid5 is created there, it\nmight still appear to be a raid1.\n\nSigned-off-by: Neil Brown \u003cneilb@suse.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "4c2645830e29c082217662e7486572e9637e9f1d",
      "tree": "655bc2d3825e7a1b1ee1f60a40e98bf165577b5c",
      "parents": [
        "5aeebe01cb2ba1bca4cd9b8a6e77386bd7499dc2"
      ],
      "author": {
        "name": "Chuck Ebbert",
        "email": "76306.1226@compuserve.com",
        "time": "Mon Jan 16 22:14:55 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:32 2006 -0800"
      },
      "message": "[PATCH] elevator\u003das back-compatibility\n\nAs of 2.6.15 you need to use \"anticipatory\" instead of \"as\".  Fix that up\nso that `elevator\u003das\u0027 still works.\n\nSigned-off-by: Chuck Ebbert \u003c76306.1226@compuserve.com\u003e\nCc: Nick Piggin \u003cnickpiggin@yahoo.com.au\u003e\nCc: Jens Axboe \u003caxboe@suse.de\u003e\nCc: \u003cstable@kernel.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "5aeebe01cb2ba1bca4cd9b8a6e77386bd7499dc2",
      "tree": "297659520d5a5de54601557f188feb5161ae4580",
      "parents": [
        "095da6cbb6a1c54c19b11190218eb0fbac666b6d"
      ],
      "author": {
        "name": "Lennert Buytenhek",
        "email": "buytenh@wantstofly.org",
        "time": "Mon Jan 16 22:14:53 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:32 2006 -0800"
      },
      "message": "[PATCH] cs89x0: credit Dmitry Pervushin\n\nCredit Dmitry Pervushin for the PNX010X platform support.\n\nSigned-off-by: Lennert Buytenhek \u003cbuytenh@wantstofly.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "095da6cbb6a1c54c19b11190218eb0fbac666b6d",
      "tree": "29ba46cea17454fe1888182f6722aee64e1a7ef5",
      "parents": [
        "bacac382fbf53f717ca7f83558e45cce44e67df9"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Mon Jan 16 22:14:52 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:31 2006 -0800"
      },
      "message": "[PATCH] fuse: fix bitfield race\n\nFix race in setting bitfields of fuse_conn.  Spotted by Andrew Morton.\n\nThe two fields -\u003econnected and -\u003emounted were always changed with the\nfuse_lock held.  But other bitfields in the same structure were changed\nwithout the lock.  In theory this could lead to losing the assignment of\neven the ones under lock.  The chosen solution is to change these two\nfields to be a full unsigned type.  The other bitfields aren\u0027t \"important\"\nenough to warrant the extra complexity of full locking or changing them to\nbitops.\n\nFor all bitfields document why they are safe wrt. concurrent\nassignments.\n\nAlso make the initialization of the \u0027num_waiting\u0027 atomic counter explicit.\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "bacac382fbf53f717ca7f83558e45cce44e67df9",
      "tree": "1de51ebaa900b9c16712945171b2474e98446404",
      "parents": [
        "c1aa96a52e9594fb16296c0d76c2066773d62933"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Mon Jan 16 22:14:47 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:31 2006 -0800"
      },
      "message": "[PATCH] fuse: update documentation for sysfs\n\nAdd documentation for new attributes in sysfs.  Also describe the filesystem.\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nCc: Greg KH \u003cgreg@kroah.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "c1aa96a52e9594fb16296c0d76c2066773d62933",
      "tree": "a4fce3fa93710d66f536a8333be97fb629429eed",
      "parents": [
        "361b1eb55ea84181505c7f0674ca1205da1127ab"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Mon Jan 16 22:14:46 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:31 2006 -0800"
      },
      "message": "[PATCH] fuse: use asynchronous READ requests for readpages\n\nThis patch changes fuse_readpages() to send READ requests asynchronously.\n\nThis makes it possible for userspace filesystems to utilize the kernel\nreadahead logic instead of having to implement their own (resulting in double\ncaching).\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "361b1eb55ea84181505c7f0674ca1205da1127ab",
      "tree": "f0151b501120447eeb67d73e90142c079c7650e4",
      "parents": [
        "9b9a04693fa2d9e60933154e4c4aca83c219ef0a"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Mon Jan 16 22:14:45 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:31 2006 -0800"
      },
      "message": "[PATCH] fuse: READ request initialization\n\nAdd a separate function for filling in the READ request.  This will make it\npossible to send asynchronous READ requests as well as synchronous ones.\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "9b9a04693fa2d9e60933154e4c4aca83c219ef0a",
      "tree": "c68562dfcf224e32c7bbbfdcad70caa758616881",
      "parents": [
        "64c6d8ed4c55f0a99b1b81558851da80c8d58244"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Mon Jan 16 22:14:44 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:31 2006 -0800"
      },
      "message": "[PATCH] fuse: move INIT handling to inode.c\n\nNow the INIT requests can be completely handled in inode.c and the\nfuse_send_init() function need not be global any more.\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "64c6d8ed4c55f0a99b1b81558851da80c8d58244",
      "tree": "b8cfa96b8de4357e969e9492bfea65b22b0cca88",
      "parents": [
        "69a53bf267fa58b89aa659d121dfe38436562a30"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Mon Jan 16 22:14:42 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:31 2006 -0800"
      },
      "message": "[PATCH] fuse: add asynchronous request support\n\nAdd possibility for requests to run asynchronously and call an \u0027end\u0027 callback\nwhen finished.\n\nWith this, the special handling of the INIT and RELEASE requests can be\ncleaned up too.\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "69a53bf267fa58b89aa659d121dfe38436562a30",
      "tree": "36276fdbf7bfdc787708e8d5b2d4b79a0b5a4c56",
      "parents": [
        "0cd5b88553acf0611474dbaf8e43770eed268060"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Mon Jan 16 22:14:41 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:30 2006 -0800"
      },
      "message": "[PATCH] fuse: add connection aborting\n\nAdd ability to abort a filesystem connection.\n\nWith the introduction of asynchronous reads, the ability to interrupt any\nrequest is not enough to dissolve deadlocks, since now waiting for the request\ncompletion (page unlocked) is independent of the actual request, so in a\ndeadlock all threads will be uninterruptible.\n\nThe solution is to make it possible to abort all requests, even those\ncurrently undergoing I/O to/from userspace.  The natural interface for this is\n\u0027mount -f mountpoint\u0027, but that only works as long as the filesystem is\nattached.  So also add an \u0027abort\u0027 attribute to the sysfs view of the\nconnection.\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nCc: Greg KH \u003cgreg@kroah.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "0cd5b88553acf0611474dbaf8e43770eed268060",
      "tree": "f3b08ab3a4a1cb42d92e2997f60f30d945601600",
      "parents": [
        "f543f253f3aa721a24557d7df8259145bb01b734"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Mon Jan 16 22:14:38 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:30 2006 -0800"
      },
      "message": "[PATCH] fuse: add number of waiting requests attribute\n\nThis patch adds the \u0027waiting\u0027 attribute which indicates how many filesystem\nrequests are currently waiting to be completed.  A non-zero value without any\nfilesystem activity indicates a hung or deadlocked filesystem.\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "f543f253f3aa721a24557d7df8259145bb01b734",
      "tree": "173fbfc0c90a2a615e1bd8a2bc49726c1824349c",
      "parents": [
        "9ba7cbba100bdaca7316d71d6c6298e61191f8b2"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Mon Jan 16 22:14:35 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:30 2006 -0800"
      },
      "message": "[PATCH] fuse: make fuse connection a kobject\n\nKobjectify fuse_conn, and make it visible under /sys/fs/fuse/connections.\n\nLacking any natural naming, connections are numbered.\n\nThis patch doesn\u0027t add any attributes, just the infrastructure.\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nCc: Greg KH \u003cgreg@kroah.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "9ba7cbba100bdaca7316d71d6c6298e61191f8b2",
      "tree": "999e964132731388ff312df78623020600fe32e2",
      "parents": [
        "d77a1d5b611742c538364f041ff4610d27b14fe7"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Mon Jan 16 22:14:34 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:30 2006 -0800"
      },
      "message": "[PATCH] fuse: extend semantics of connected flag\n\nThe -\u003econnected flag for a fuse_conn object previously only indicated whether\nthe device file for this connection is currently open or not.\n\nChange it\u0027s meaning so that it indicates whether the connection is active or\nnot: now either umount or device release will clear the flag.\n\nThe separate -\u003emounted flag is still needed for handling background requests.\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "d77a1d5b611742c538364f041ff4610d27b14fe7",
      "tree": "c18cf2c112ad17e07a3e0d0459c55f04b257e3e3",
      "parents": [
        "83cfd4935124b165e942c317dc3e9ebb0a3e6a63"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Mon Jan 16 22:14:31 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:30 2006 -0800"
      },
      "message": "[PATCH] fuse: introduce list for requests under I/O\n\nCreate a new list for requests in the process of being transfered to/from\nuserspace.  This will be needed to be able to abort all requests even those\ncurrently under I/O\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "83cfd4935124b165e942c317dc3e9ebb0a3e6a63",
      "tree": "6b6276dde7fbe07dd9e5d44332eef5f2b9451d4c",
      "parents": [
        "6383bdaa2ed2d461d9f4d369dfaa9d610fc972e3"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Mon Jan 16 22:14:31 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:30 2006 -0800"
      },
      "message": "[PATCH] fuse: introduce unified request state\n\nThe state of request was made up of 2 bitfields (-\u003esent and -\u003efinished) and of\nthe fact that the request was on a list or not.\n\nUnify this into a single state field.\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "6383bdaa2ed2d461d9f4d369dfaa9d610fc972e3",
      "tree": "2bdbc25280c0666c2f2f5869c5487541fa670579",
      "parents": [
        "8bfc016d2e2fff71c6843257f0fd0b60876331ed"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Mon Jan 16 22:14:29 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:30 2006 -0800"
      },
      "message": "[PATCH] fuse: miscellaneous cleanup\n\n - remove some unneeded assignments\n\n - use kzalloc instead of kmalloc + memset\n\n - simplify setting sb-\u003es_fs_info\n\n - in fuse_send_init() use fuse_get_request() instead of\n   do_get_request() helper\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "8bfc016d2e2fff71c6843257f0fd0b60876331ed",
      "tree": "c12cff675fcd734a93a274545d93ef153939ad9f",
      "parents": [
        "b3bebd94bbe4e59dfa23d85b0296a4ce8ebcc6c7"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Mon Jan 16 22:14:28 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:29 2006 -0800"
      },
      "message": "[PATCH] fuse: uninline some functions\n\nInline keyword is unnecessary in most cases.  Clean them up.\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "b3bebd94bbe4e59dfa23d85b0296a4ce8ebcc6c7",
      "tree": "87618ca8f6eb1a0317262610dd588af76201b186",
      "parents": [
        "f43b155a5a8a95b06bc0b4474fbb7311c7e9709a"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Mon Jan 16 22:14:27 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:29 2006 -0800"
      },
      "message": "[PATCH] fuse: handle error INIT reply\n\nHandle the case when the INIT request is answered with an error.\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "f43b155a5a8a95b06bc0b4474fbb7311c7e9709a",
      "tree": "482a03476b71498939adb9aa7ec1a4c072902927",
      "parents": [
        "222f1d69183f10d70a37de5785698fe0aa363c12"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Mon Jan 16 22:14:26 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:29 2006 -0800"
      },
      "message": "[PATCH] fuse: fix request_end()\n\nThis function used the request object after decrementing its reference count\nand releasing the lock.  This could in theory lead to all sorts of problems.\n\nFix and simplify at the same time.\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "222f1d69183f10d70a37de5785698fe0aa363c12",
      "tree": "14eeb42423e9feb390a52ce2cf0453c346e92b98",
      "parents": [
        "f87fd4c2a0c4f3baad28057360b36a59591ef751"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Mon Jan 16 22:14:25 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:29 2006 -0800"
      },
      "message": "[PATCH] fuse: fuse_copy_finish() order fix\n\nfuse_copy_finish() must be called before request_end(), since the later might\nsleep, and no sleeping is allowed between fuse_copy_one() and\nfuse_copy_finish() because of kmap_atomic()/kunmap_atomic() used in them.\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "f87fd4c2a0c4f3baad28057360b36a59591ef751",
      "tree": "987b4e83d617fc845e11ff1df145f1d4238af956",
      "parents": [
        "0e6e1db4ac7acfe3e38bbef9eba59233ba7f6b9a"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Mon Jan 16 22:14:23 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:29 2006 -0800"
      },
      "message": "[PATCH] add /sys/fs\n\nThis patch adds an empty /sys/fs, which filesystems can use.\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nCc: Greg KH \u003cgreg@kroah.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "0e6e1db4ac7acfe3e38bbef9eba59233ba7f6b9a",
      "tree": "c65c54b53ccfc110dac42e29a4094304e0a575dd",
      "parents": [
        "cad8244840d1a148f638925758afd1cdf81fc839"
      ],
      "author": {
        "name": "Bob Copeland",
        "email": "me@bobcopeland.com",
        "time": "Mon Jan 16 22:14:20 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:29 2006 -0800"
      },
      "message": "[PATCH] partitions: Read Rio Karma partition table\n\nThe Rio Karma portable MP3 player has its own proprietary partition table.\n\nThe partition layout is similar to a DOS boot sector but it begins at a\ndifferent offset and uses a different magic number (0xAB56 instead of\n0xAA55).  Add support for it to enable mounting the device.\n\nSigned-off-by: Bob Copeland \u003cme@bobcopeland.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "cad8244840d1a148f638925758afd1cdf81fc839",
      "tree": "632c3f88b2fc4187fc0315f7183cd198c6bb2d42",
      "parents": [
        "aa01666df35cd769c0957d4b3ae6ee99d680ab88"
      ],
      "author": {
        "name": "Paul Mundt",
        "email": "lethal@linux-sh.org",
        "time": "Mon Jan 16 22:14:19 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:28 2006 -0800"
      },
      "message": "[PATCH] sh: Move CPU subtype configuration to its own Kconfig\n\nCurrently the CPU subtype options are cluttering up arch/sh/Kconfig somewhat.\n\nGiven that, this moves all of that in to its own arch/sh/mm/Kconfig.  Things\nlike cache configuration are also moved to this new location.\n\nThis also adds support for strict CPU tuning on newer cores, which requires\nthe addition of as-option.\n\nSigned-off-by: Paul Mundt \u003clethal@linux-sh.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "aa01666df35cd769c0957d4b3ae6ee99d680ab88",
      "tree": "7dd68a8522cc6f9e8eb49fb9af630fca8b3e464d",
      "parents": [
        "36ddf31b689a8c11d424e43565d2aa440b77bbf4"
      ],
      "author": {
        "name": "Paul Mundt",
        "email": "lethal@linux-sh.org",
        "time": "Mon Jan 16 22:14:18 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:28 2006 -0800"
      },
      "message": "[PATCH] sh: Simple timer framework\n\nThis builds on some of the clock framework code to support a simple system\ntimer interface.\n\nSigned-off-by: Paul Mundt \u003clethal@linux-sh.org\u003e\nCc: john stultz \u003cjohnstul@us.ibm.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "36ddf31b689a8c11d424e43565d2aa440b77bbf4",
      "tree": "8cc1e98a496811126c41a9ec31f894c64bae13df",
      "parents": [
        "b66c1a3919abb40f9bd8fb92a0d9fd77eb899c54"
      ],
      "author": {
        "name": "Paul Mundt",
        "email": "lethal@linux-sh.org",
        "time": "Mon Jan 16 22:14:17 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:28 2006 -0800"
      },
      "message": "[PATCH] sh: Simplistic clock framework\n\nThis adds a relatively simplistic clock framework for sh.  The initial goal\nbehind this is to clean up the arch/sh/kernel/time.c mess and to get the CPU\nsubtype-specific frequency setting and calculation code moved somewhere more\nsensible.\n\nThis only deals with the core clocks at the moment, though it\u0027s trivial for\nother drivers to define their own clocks as desired.\n\nSigned-off-by: Paul Mundt \u003clethal@linux-sh.org\u003e\nCc: john stultz \u003cjohnstul@us.ibm.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "b66c1a3919abb40f9bd8fb92a0d9fd77eb899c54",
      "tree": "e83c11e63f760e8a3c09ab44e8c951a6df0400b7",
      "parents": [
        "bf3a00f88c926635932c91afd90b4a0907dfbe78"
      ],
      "author": {
        "name": "Paul Mundt",
        "email": "lethal@linux-sh.org",
        "time": "Mon Jan 16 22:14:15 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:28 2006 -0800"
      },
      "message": "[PATCH] sh: I/O routine cleanups and ioremap() overhaul\n\nThis introduces a few changes in the way that the I/O routines are defined on\nSH, specifically so that things like the iomap API properly wrap through the\nmachvec for board-specific quirks.\n\nIn addition to this, the old p3_ioremap() work is converted to a more generic\n__ioremap() that will map through the PMB if it\u0027s available, or fall back on\npage tables for everything else.\n\nAn alpha-like IO_CONCAT is also added so we can start to clean up the\nboard-specific io.h mess, which will be handled in board update patches..\n\nSigned-off-by: Paul Mundt \u003clethal@linux-sh.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "bf3a00f88c926635932c91afd90b4a0907dfbe78",
      "tree": "179a56c061461a0f3d25cd0171ba8ce90e5e7ed5",
      "parents": [
        "9d44190eae97ad4c9ce30f1084e1b0dabd646df5"
      ],
      "author": {
        "name": "Paul Mundt",
        "email": "lethal@linux-sh.org",
        "time": "Mon Jan 16 22:14:14 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:28 2006 -0800"
      },
      "message": "[PATCH] sh: IRQ handler updates\n\nThis moves the various IRQ controller drivers into a new subdirectory, and\nalso extends the INTC2 IRQ handler to also deal with SH7760 and SH7780\ninterrupts, rather than just ST-40.\n\nThe old CONFIG_SH_GENERIC has also been removed from the IRQ definitions, as\nnew ports are expected to be based off of CONFIG_SH_UNKNOWN.  Since there are\nplenty of incompatible machvecs, CONFIG_SH_GENERIC doesn\u0027t make sense anymore.\n\nSigned-off-by: Paul Mundt \u003clethal@linux-sh.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "9d44190eae97ad4c9ce30f1084e1b0dabd646df5",
      "tree": "d4801a1f62ea7493b34c306a4ee685e0c4fa5f53",
      "parents": [
        "0d831770b154a057562236e8cf50905c8f1ae1b0"
      ],
      "author": {
        "name": "kogiidena",
        "email": "kogiidena@eggplant.ddo.jp",
        "time": "Mon Jan 16 22:14:10 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:27 2006 -0800"
      },
      "message": "[PATCH] sh: kexec() support\n\nThis adds kexec() support for SH.\n\nSigned-off-by: kogiidena \u003ckogiidena@eggplant.ddo.jp\u003e\nSigned-off-by: Paul Mundt \u003clethal@linux-sh.org\u003e\nCc: \u003cfastboot@lists.osdl.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "0d831770b154a057562236e8cf50905c8f1ae1b0",
      "tree": "dc25902b29b09838f2fe32e47be53c951a2fa67e",
      "parents": [
        "0025835cf20e07056b8521b8c1d7d0bfe07e81f1"
      ],
      "author": {
        "name": "Paul Mundt",
        "email": "lethal@linux-sh.org",
        "time": "Mon Jan 16 22:14:09 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:27 2006 -0800"
      },
      "message": "[PATCH] sh: DMA updates\n\nThis extends the current SH DMA API somewhat to support a proper virtual\nchannel abstraction, and also works to represent this through the driver model\nby giving each DMAC its own platform device.\n\nThere\u0027s also a few other minor changes to support a few new CPU subtypes, and\nmake TEI generation for the SH DMAC configurable.\n\nSigned-off-by: Paul Mundt \u003clethal@linux-sh.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "0025835cf20e07056b8521b8c1d7d0bfe07e81f1",
      "tree": "af60b66554b531fb93f591649014e3641427abf4",
      "parents": [
        "5ebdce726baf17eb66c5a1bf402ae6f161a082ed"
      ],
      "author": {
        "name": "Paul Mundt",
        "email": "lethal@linux-sh.org",
        "time": "Mon Jan 16 22:14:08 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:27 2006 -0800"
      },
      "message": "[PATCH] sh: consolidate hp620/hp680/hp690 targets into hp6xx\n\nMost of the reasons for keeping these separate before was due to hp690\ndiscontig, and since we have a workaround for that now (abusing some shadow\nspace so everything is magically contiguous), there\u0027s no reason to keep the\ntargets separate.\n\nSigned-off-by: Paul Mundt \u003clethal@linux-sh.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "5ebdce726baf17eb66c5a1bf402ae6f161a082ed",
      "tree": "a8a5460f9096cf3f84975a634f377411d9ec0e11",
      "parents": [
        "f63776d0dccb6eb5f38beeac3eb9db735f7b5879"
      ],
      "author": {
        "name": "Christoph Hellwig",
        "email": "hch@lst.de",
        "time": "Mon Jan 16 22:14:06 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:27 2006 -0800"
      },
      "message": "[PATCH] fix up sbuslib for new fb_comapt_ioctl prototype\n\nAfter ages my fb ioctl prototype cleanup finally got in.  Unfortunately the\npatch are so old that the sbus compat_ioctl helper didn\u0027t exist back then,\nso it\u0027s not covered.  This patch should fix that issue.\n\nSigned-off-by: Christoph Hellwig \u003chch@lst.de\u003e\nCc: \"David S. Miller\" \u003cdavem@davemloft.net\u003e\nCc: \"Antonino A. Daplas\" \u003cadaplas@pol.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "f63776d0dccb6eb5f38beeac3eb9db735f7b5879",
      "tree": "2c3b444e76dcb9e0ff0fa76a9c6dc7fa6c0847be",
      "parents": [
        "b142159fa5ffbad73b6927fafa5440148030f3f1"
      ],
      "author": {
        "name": "Alexey Dobriyan",
        "email": "adobriyan@gmail.com",
        "time": "Mon Jan 16 22:14:05 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:27 2006 -0800"
      },
      "message": "[PATCH] arm26: s/task_threas_info/task_thread_info/\n\nSigned-off-by: Alexey Dobriyan \u003cadobriyan@gmail.com\u003e\nSigned-off-by: Ian Molton \u003cspyro@f2s.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "b142159fa5ffbad73b6927fafa5440148030f3f1",
      "tree": "12bc9f8815e2eff9b5bf5631968f7ac303a80a78",
      "parents": [
        "8f56a31ad616b13414cf764f620f75f45dac26e6"
      ],
      "author": {
        "name": "Yoichi Yuasa",
        "email": "yoichi_yuasa@tripeaks.co.jp",
        "time": "Mon Jan 16 22:14:01 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:26 2006 -0800"
      },
      "message": "[PATCH] mips: add pm_power_off\n\nAdds pm_power_off() to MIPS.\n\nSigned-off-by: Yoichi Yuasa \u003cyoichi_yuasa@tripeaks.co.jp\u003e\nCc: Ralf Baechle \u003cralf@linux-mips.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "8f56a31ad616b13414cf764f620f75f45dac26e6",
      "tree": "4e53d466c7ef81140ad4f92c78ae7e07f8ceaa87",
      "parents": [
        "fd279197b1df6b46076991ca0e1f7faa8f3d8028"
      ],
      "author": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Mon Jan 16 22:14:00 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:26 2006 -0800"
      },
      "message": "[PATCH] drivers/char/esp.c spinlock fix\n\nThere\u0027s incorrect spinlock usage in espserial_init(): autoconfig() uses\ninfo-\u003elock before it\u0027s initialized.  The fix is to initialize the spinlock\nearlier.\n\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "fd279197b1df6b46076991ca0e1f7faa8f3d8028",
      "tree": "0e841794a25a54e9288b86dd97d9d5ced8ca112c",
      "parents": [
        "3001aa826ea6a4de12b437188c2a095991d2d142"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Mon Jan 16 22:13:59 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:26 2006 -0800"
      },
      "message": "[PATCH] build kernel/intermodule.c only when required\n\nBuild kernel/intermodule.c only when required.\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nCc: Sam Ravnborg \u003csam@ravnborg.org\u003e\nCc: David Woodhouse \u003cdwmw2@infradead.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3001aa826ea6a4de12b437188c2a095991d2d142",
      "tree": "2fc2d6b7e40fa86757f423d8990a9f65a1e5c3ba",
      "parents": [
        "3868cca523e20a2600f6a9b1feebb69a6c8ccb68"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Mon Jan 16 22:13:58 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:26 2006 -0800"
      },
      "message": "[PATCH] no longer mark MTD_OBSOLETE_CHIPS as BROKEN\n\nThis patch removes the wrong dependency of MTD_OBSOLETE_CHIPS on BROKEN and\nmarks the non-compiling MTD_AMDSTD and MTD_JEDEC drivers as BROKEN.\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nAcked-by: David Woodhouse \u003cdwmw2@infradead.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3868cca523e20a2600f6a9b1feebb69a6c8ccb68",
      "tree": "4c3e6b6c79eb9467d289b9b944cf13d9d726e9f6",
      "parents": [
        "511c3a2beefbb7d263063f2fef48615fba2d7255"
      ],
      "author": {
        "name": "Alexey Dobriyan",
        "email": "adobriyan@gmail.com",
        "time": "Mon Jan 16 22:13:57 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:26 2006 -0800"
      },
      "message": "[PATCH] arm26: kernel/irq.c: fix compilation\n\nIt\u0027s trying to \"continue;\" in \"if\" statement.\n\nSigned-off-by: Alexey Dobriyan \u003cadobriyan@gmail.com\u003e\nAcked-by: Ian Molton \u003cspyro@f2s.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "511c3a2beefbb7d263063f2fef48615fba2d7255",
      "tree": "223d9fb459931df3d46636d42155c4b67432075f",
      "parents": [
        "96419b7c4d996d9f12ca9f7189f316ed2938074a"
      ],
      "author": {
        "name": "Alexey Dobriyan",
        "email": "adobriyan@gmail.com",
        "time": "Mon Jan 16 22:13:56 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:26 2006 -0800"
      },
      "message": "[PATCH] arm26: add L1_CACHE_SHIFT\n\nFix reiserfs compilation as a side effect \u003d)\n\nSigned-off-by: Alexey Dobriyan \u003cadobriyan@gmail.com\u003e\nAcked-by: Ian Molton \u003cspyro@f2s.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "96419b7c4d996d9f12ca9f7189f316ed2938074a",
      "tree": "d9865a0cb932320ec4883739f50098e1c564dfa5",
      "parents": [
        "6aa4c0ef388201745adadfc7855b8a871f0e6122"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Mon Jan 16 22:13:55 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:25 2006 -0800"
      },
      "message": "[PATCH] fix arm26 THREAD_SIZE\n\narm26 currently has a 256 kB THREAD_SIZE (sic).\n\nLooking at the comment in the code, this seems to be based on a\nmisunderstanding.\n\nThe comment says:\nthis needs attention (see kernel/fork.c which gets a nice div by zero if\nthis is lower than 8*32768\n\nkernel/fork.c does:\n  max_threads \u003d mempages / (8 * THREAD_SIZE / PAGE_SIZE)\n\nTherefore, a division by 0 is impossible for all reasonable cases with\nTHREAD_SIZE \u003e\u003d PAGE_SIZE.\n\nSince the minimum PAGE_SIZE Linux uses on the arm26 architecture is 16k,\nPAGE_SIZE should be sufficient for THREAD_SIZE.\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nSigned-off-by: Ian Molton \u003cspyro@f2s.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "6aa4c0ef388201745adadfc7855b8a871f0e6122",
      "tree": "392d3eba1252120610fa65ed1e7c6165bc192eb7",
      "parents": [
        "a1bc5cdf9f9550bd7e9e5d8400e95b164165b275"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Mon Jan 16 22:13:53 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 23:15:25 2006 -0800"
      },
      "message": "[PATCH] i386: remove gcc version check for CONFIG_REGPARM\n\nSince we do no longer support any gcc \u003c 3.0, there\u0027s no need to check\nfor it..\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nCc: Sam Ravnborg \u003csam@ravnborg.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "a1bc5cdf9f9550bd7e9e5d8400e95b164165b275",
      "tree": "3d4e80bb369675765e39450c55c6140e1213da81",
      "parents": [
        "8dca6f33f026dc8a7fc2710b78a7521e899bd611",
        "859538763155814d217054eb6e3cdff71bdb4d89"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 20:56:49 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 20:56:49 2006 -0800"
      },
      "message": "Merge branch \u0027release\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6\n"
    },
    {
      "commit": "8dca6f33f026dc8a7fc2710b78a7521e899bd611",
      "tree": "cc3ee51f9b217269c36241feceb9504613dd4ab7",
      "parents": [
        "9bd5674c4aa3d430d61a578eaecd85104176f150"
      ],
      "author": {
        "name": "Jonathan Corbet",
        "email": "corbet@lwn.net",
        "time": "Mon Jan 16 15:58:55 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 20:27:03 2006 -0800"
      },
      "message": "[PATCH] hrtimer comment tweak\n\nFix a comment which missed an update cycle somewhere.\n\nSigned-off-by: Jonathan Corbet \u003ccorbet@lwn.net\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "9bd5674c4aa3d430d61a578eaecd85104176f150",
      "tree": "814c59b4fa9dc56be0025fda0b0a091218f5d0ec",
      "parents": [
        "1f35f432b9d116f5be4c428d71d39ed9b7d6ff50",
        "01ffe339e3a0ba5ecbeb2b3b5abac7b3ef90f374"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 20:26:19 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 20:26:19 2006 -0800"
      },
      "message": "Merge git://oss.sgi.com:8090/oss/git/xfs-2.6\n"
    },
    {
      "commit": "1f35f432b9d116f5be4c428d71d39ed9b7d6ff50",
      "tree": "d3533fad8b79b8328a5d4c627e76c5f9a47d213e",
      "parents": [
        "cd535057f946f8e803db7d485652904af0a2e5f5"
      ],
      "author": {
        "name": "Jens Axboe",
        "email": "axboe@suse.de",
        "time": "Tue Jan 17 00:23:49 2006 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 16 20:24:45 2006 -0800"
      },
      "message": "[PATCH] Fix drivers/block/ps2esdi.c compile\n\nLooks like fallout from the geo stuff.\n"
    }
  ],
  "next": "cd535057f946f8e803db7d485652904af0a2e5f5"
}
