)]}'
{
  "log": [
    {
      "commit": "b4558ea93d66a43f7990d26f145fd4c54a01c9bf",
      "tree": "70aa8ba4864f8ee994b7f5278f5045af6a646d34",
      "parents": [
        "7380a78a973a8109c13cb0e47617c456b6f6e1f5"
      ],
      "author": {
        "name": "Jesper Juhl",
        "email": "jesper.juhl@gmail.com",
        "time": "Fri Oct 28 16:53:13 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Oct 28 16:53:13 2005 -0400"
      },
      "message": "drivers/net: Remove pointless checks for NULL prior to calling kfree()\n"
    },
    {
      "commit": "ab7a435a01a9995359a72851ff6896dc110c243f",
      "tree": "083a81fae56e6f72ec98715caeb9902305195e8f",
      "parents": [
        "c4cfe567b92d5663f98e2f82f28ffc3069fc982f"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Oct 18 21:01:29 2005 +0100"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Oct 19 22:14:20 2005 -0400"
      },
      "message": "[PATCH] Remove unused header.\n\nmkiss.h has been integrated into mkiss.c earlier.\n\nSigned-off-by: Ralf Baechle DL5RB \u003cralf@linux-mips.org\u003e\n\n drivers/net/hamradio/mkiss.h |   62 -------------------------------------------\n 1 files changed, 62 deletions(-)\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "74cfe03f80adc320bde4dd37616354aefe2271aa",
      "tree": "a5b58d998d2f653d34f331e17db92b8c3692e09e",
      "parents": [
        "5793f4be23f0171b4999ca68a39a9157b44139f3"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Wed Oct 12 23:11:01 2005 +0100"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Tue Oct 18 17:03:28 2005 -0400"
      },
      "message": "[PATCH] Initialize the .owner field the tty_ldisc structure.\n\nIf .owner isn\u0027t set the module can be unloaded even while still active.\n\nSigned-off-by: Ralf Baechle DL5RB \u003cralf@linux-mips.org\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "5793f4be23f0171b4999ca68a39a9157b44139f3",
      "tree": "01455dae41fc5c025341e4d31b8013a2e727e66d",
      "parents": [
        "bc0a7438605c5e0cafdb32a3caf46254e146b116"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Fri Oct 14 14:28:09 2005 +0100"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Tue Oct 18 17:02:14 2005 -0400"
      },
      "message": "[PATCH] SMACK support for mkiss\n\nSMACK (Stuttgart Modified Amateurradio CRC KISS) is a KISS variant that\nuses CRC16 checksums to secure data transfers between the modem and host.\nIt\u0027s also used to communicate over a pty to applications such as Wampes.\n\nPatches for Linux 2.4 by Thomas Osterried DL9SAU, upgraded to the latest\nmkiss 2.6 mkiss driver by me.\n\nSigned-off-by: Thomas Osterried DL9SAU \u003cthomas@x-berg.in-berlin.de\u003e\nSigned-off-by: Ralf Baechle DL5RB \u003cralf@linux-mips.org\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "bc0a7438605c5e0cafdb32a3caf46254e146b116",
      "tree": "7331f97459c13f1f4bb18d8d2db6abd724ad6f7f",
      "parents": [
        "ad4ebed00fbf570411edbf6eb6c391e16b71df25"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Mon Oct 17 12:42:32 2005 +0100"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Tue Oct 18 17:01:27 2005 -0400"
      },
      "message": "[PATCH] rcu in bpqether driver.\n\nFrom Suzanne Wood \u003csuzannew@cs.pdx.edu\u003e:\n\nClarify RCU implementation in bpqether.c.\n\nBecause bpq_new_device() calls list_add_rcu() and bpq_free_device() calls\nlist_del_rcu(), substitute list_for_each_entry_rcu() for\nlist_for_each_entry() in bpq_get_ax25_dev() and in bpq_seq_start().\n\nAdd rcu dereference protection in bpq_seq_next().\n\nThe rcu_read_lock()/unlock() in bpq_device_event() are removed because\nnetdev event handlers are called with RTNL locking in place.\n\nFYI: bpq_free_device() calls list_del_rcu() which, per list.h, requires\nsynchronize_rcu() which can block or call_rcu() or call_rcu_bh() which\ncannot block.  Herbert Xu notes that synchronization is done here by\nunregister_netdevice().  This calls synchronize_net() which in turn uses\nsynchronize_rcu().\n\nSigned-off-by: Ralf Baechle DL5RB \u003cralf@linux-mips.org\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "d5919586265d36c6694a5d10ba589c02806873b6",
      "tree": "b87f83c8215a65e1f1eb0b585d05afb21c15caaf",
      "parents": [
        "96eb549c0c20cf63ca13fac71d9d406701f744a6"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Oct 04 12:22:16 2005 +0100"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Tue Oct 04 07:42:22 2005 -0400"
      },
      "message": "[PATCH] AX.25: Convert mkiss.c to DEFINE_RWLOCK\n\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Ralf Baechle DL5RB \u003cralf@linux-mips.org\u003e\n\n drivers/net/hamradio/mkiss.c |    2 +-\n 1 files changed, 1 insertion(+), 1 deletion(-)\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "96eb549c0c20cf63ca13fac71d9d406701f744a6",
      "tree": "32c23d9653d164e2f631970859d7b2e6ee25a003",
      "parents": [
        "be2b28ed3bb3dd3952e10fb72623b23c5d8b4795"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Tue Oct 04 12:20:24 2005 +0100"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Tue Oct 04 07:42:21 2005 -0400"
      },
      "message": "[PATCH] AX.25: Delete debug printk from mkiss driver\n\nSigned-off-by: Ralf Baechle DL5RB \u003cralf@linux-mips.org\u003e\n\n--\n\n drivers/net/hamradio/mkiss.c |    1 -\n 1 files changed, 1 deletion(-)\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "6f74998e5c3b4610e6eba06babf16547369c512a",
      "tree": "f9a0209a38f508862a762861f79b58c23a05351c",
      "parents": [
        "c4bc7ee2e474819d3932e8d726fdf7cb0bdc00c1"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Mon Sep 12 14:21:01 2005 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Sep 12 14:21:01 2005 -0700"
      },
      "message": "[AX.25]: Rename ax25_encapsulate to ax25_hard_header\n\nRename ax25_encapsulate to ax25_hard_header which these days more\naccurately describes what the function is supposed to do.\n\nSigned-off-by: Ralf Baechle DL5RB \u003cralf@linux-mips.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "c4bc7ee2e474819d3932e8d726fdf7cb0bdc00c1",
      "tree": "d61545591c89893efb3d65195e5e4334571e7631",
      "parents": [
        "59c2353dd045509626d7cc1953cb2d6b7358ab7a"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Mon Sep 12 14:19:26 2005 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Sep 12 14:19:26 2005 -0700"
      },
      "message": "[HAMRADIO]: driver cleanups\n\nMisc related cleanups in hamradio drivers:\n\n o Use symbolic constants instead of magic numbers\n o Don\u0027t try to handle the case where AX.25 isn\u0027t configured - the kernel\n   configuration doesn\u0027t permit that.\n o Remove useless headers\n\nSigned-off-by: Ralf Baechle DL5RB \u003cralf@linux-mips.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "8d06afab73a75f40ae2864e6c296356bab1ab473",
      "tree": "1d9c8c24a1024a12a4e8df841fba5809fa914356",
      "parents": [
        "7c352bdf048811b8128019ffc1e886161e09c11c"
      ],
      "author": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Fri Sep 09 13:10:40 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Sep 09 14:03:48 2005 -0700"
      },
      "message": "[PATCH] timer initialization cleanup: DEFINE_TIMER\n\nClean up timer initialization by introducing DEFINE_TIMER a\u0027la\nDEFINE_SPINLOCK.  Build and boot-tested on x86.  A similar patch has been\nbeen in the -RT tree for some time.\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": "f2ccd8fa06c8e302116e71df372f5c1f83432e03",
      "tree": "6e933f4bdc8899009edb33642b908779f123fb4a",
      "parents": [
        "b6b99eb5409d75ae35390057cd28f3aedfbd4cf4"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 09 19:34:12 2005 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Mon Aug 29 15:32:25 2005 -0700"
      },
      "message": "[NET]: Kill skb-\u003ereal_dev\n\nBonding just wants the device before the skb_bond()\ndecapsulation occurs, so simply pass that original\ndevice into packet_type-\u003efunc() as an argument.\n\nIt remains to be seen whether we can use this same\nexact thing to get rid of skb-\u003einput_dev as well.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "3d963f5bb1949af53a37acf36d3b12e97ca9b1e5",
      "tree": "9449490978cdb7858a7c713ee88f15ffc26a6d71",
      "parents": [
        "5be1d85c208f135fc88f972f91b91a879b702b40",
        "e13934563db047043ccead26412f552375cea90c"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Aug 29 10:04:37 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Aug 29 10:04:37 2005 -0700"
      },
      "message": "Merge refs/heads/upstream from master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6 \n"
    },
    {
      "commit": "815f62bf742718458ba822a7e1f51f285eb997f2",
      "tree": "01e1dc8b4447bcceca8106182e4cf1327ee9a3ad",
      "parents": [
        "75a95178dafb5c8d69b4abe45ea746a9cea23142"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Wed Aug 24 18:06:36 2005 +0100"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sat Aug 27 04:35:31 2005 -0400"
      },
      "message": "[PATCH] SMP rewrite of mkiss\n\nRewrite the mkiss driver to make it SMP-proof following the example of\n6pack.c.\n\nSigned-off-by: Ralf Baechle DL5RB \u003cralf@linux-mips.org\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "214838a2108b4b1e18abce2e28d37996e9bf7c68",
      "tree": "090a6020ec9c9c4e91615465b54e29084244d9f7",
      "parents": [
        "84a2ea1c2cee0288f96e0c6aa4f975d4d26508c7"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Wed Aug 24 18:01:33 2005 +0100"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sat Aug 27 04:32:39 2005 -0400"
      },
      "message": "[PATCH] Fix 6pack setting of MAC address\n\nDon\u0027t check type of sax25_family; dev_set_mac_address has already done\nthat before and anyway, the type to check against would have been\nARPHRD_AX25.  We only got away because AF_AX25 and ARPHRD_AX25 both happen\nto be defined to the same value.\n\nDon\u0027t check sax25_ndigis either; it\u0027s value is insignificant for the\npurpose of setting the MAC address and the check has shown to break\nsome application software for no good reason.\n\nSigned-off-by: Ralf Baechle DL5RB \u003cralf@linux-mips.org\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "84a2ea1c2cee0288f96e0c6aa4f975d4d26508c7",
      "tree": "7c1de2aa18081752acf25bba86766d1940b30045",
      "parents": [
        "0572e3da3ff5c3744b2f606ecf296d5f89a4bbdf"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Thu Aug 25 19:38:30 2005 +0100"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sat Aug 27 04:32:39 2005 -0400"
      },
      "message": "[PATCH] 6pack Timer initialization\n\nI dropped the timer initialization bits by accident when sending the\np-persistence fix.  This patch gets the driver to work again on halfduplex\nlinks.\n\nSigned-off-by: Ralf Baechle DL5RB \u003cralf@linux-mips.org\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "cd04b947bc674f8fc9cac38ec30497bae5d664ad",
      "tree": "988b0b7ea08063e5499672346eb2f619f0629717",
      "parents": [
        "b3df9f813bc7b9db62ae0c90b8990b1cebf97345",
        "bc68552faad0e134eb22281343d5ae5a4873fa80"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Aug 11 00:07:03 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Aug 11 00:07:03 2005 -0400"
      },
      "message": "Merge /spare/repo/linux-2.6/\n"
    },
    {
      "commit": "c0438174e8272d23fe43a5d3f23d777f5b412e87",
      "tree": "5c7ef2706004c7ebf620f5f347b914e57f3b093d",
      "parents": [
        "48d28fd55e7fd349fb16a50244379b4da3a4943c"
      ],
      "author": {
        "name": "Ralf Baechle DL5RB",
        "email": "ralf@linux-mips.org",
        "time": "Wed Aug 10 10:03:20 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Aug 10 11:03:02 2005 -0700"
      },
      "message": "[PATCH] 6pack persistence fix\n\nFix the p-persistence CSMA algorithm which in simplex mode was starting\nwith a slottime delay before doing anything else as if there was carrier\ncollision resulting in bad performance on simplex links.\n\nSigned-off-by: Ralf Baechle DL5RB \u003cralf@linux-mips.org\u003e\nAcked-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "e064cd7e3ac797df1e81b55ff4fed5fca5d106b5",
      "tree": "7e21e42604b53d3a61795a6af0e02df8c70828cc",
      "parents": [
        "af44f5bf775e0d36aa5879c94369216ff6f717a6"
      ],
      "author": {
        "name": "Ralf Baechle",
        "email": "ralf@linux-mips.org",
        "time": "Mon Jul 04 18:30:42 2005 +0100"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sun Jul 31 01:07:41 2005 -0400"
      },
      "message": "[PATCH] SMP fix for 6pack driver\n\nDrivers really only work well in SMP if they actually can be selected.\nThis is a leftover from the time when the 6pack drive only used to be\na bitrotten variant of the slip driver.\n\nSigned-off-by: Ralf Baechle DL5RB \u003cralf@linux-mips.org\u003e\n\n Kconfig |    2 +-\n 1 files changed, 1 insertion(+), 1 deletion(-)\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "cd8749b4aa6b7502e234d72cb53c00a3bc27ed1b",
      "tree": "409a83008f86b569b40404b9996a8bc46194e3f6",
      "parents": [
        "6b9b97ce70b789014515f808b1b64c8e29e300d1"
      ],
      "author": {
        "name": "Marcelo Feitoza Parisi",
        "email": "marcelo@feitoza.com.br",
        "time": "Fri Jul 15 11:16:42 2005 +0100"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sun Jul 31 00:51:49 2005 -0400"
      },
      "message": "[PATCH] Use time_before in hamradio drivers\n\nUse of time_before() macro, defined at linux/jiffies.h, which deal with\nwrapping correctly and are nicer to read.\n\nSigned-off-by: Marcelo Feitoza Parisi \u003cmarcelo@feitoza.com.br\u003e\nSigned-off-by: Domen Puncer \u003cdomen@coderock.org\u003e\nSigned-off-by: Ralf Baechle DL5RB \u003cralf@linux-mips.org\u003e\n\n baycom_epp.c     |    3 ++-\n baycom_par.c     |    3 ++-\n baycom_ser_fdx.c |    3 ++-\n baycom_ser_hdx.c |    3 ++-\n mkiss.c          |    3 ++-\n 5 files changed, 10 insertions(+), 5 deletions(-)\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "b03efcfb2180289718991bb984044ce6c5b7d1b0",
      "tree": "f3b0c6c4eaf0991c28b7116a20994b48398eea57",
      "parents": [
        "a92b7b80579fe68fe229892815c750f6652eb6a9"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Fri Jul 08 14:57:23 2005 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Fri Jul 08 14:57:23 2005 -0700"
      },
      "message": "[NET]: Transform skb_queue_len() binary tests into skb_queue_empty()\n\nThis is part of the grand scheme to eliminate the qlen\nmember of skb_queue_head, and subsequently remove the\n\u0027list\u0027 member of sk_buff.\n\nMost users of skb_queue_len() want to know if the queue is\nempty or not, and that\u0027s trivially done with skb_queue_empty()\nwhich doesn\u0027t use the skb_queue_head-\u003eqlen member and instead\nuses the queue list emptyness as the test.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "64ccd715d3cf498318b14b646ce5f97e7ab15bb5",
      "tree": "b43bdaeec1b1175fe80ffe3648b1a98a2e21317b",
      "parents": [
        "bfb07599da289881d3bcbb601a110e997fc7444b"
      ],
      "author": {
        "name": "Alexey Dobriyan",
        "email": "adobriyan@gmail.com",
        "time": "Thu Jun 23 00:10:33 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@ppc970.osdl.org",
        "time": "Thu Jun 23 09:45:36 2005 -0700"
      },
      "message": "[PATCH] Convert users to tty_unregister_ldisc()\n\ntty_register_ldisc(N_FOO, NULL) \u003d\u003e tty_unregister_ldisc(N_FOO)\n\nSigned-off-by: Alexey Dobriyan \u003cadobriyan@gmail.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "0fd56f67890acf7904c83e7de6cb71723eb1c962",
      "tree": "4de17dcc3cf06c3a8b43b45d1416065e3ad81267",
      "parents": [
        "c4eb2a93319d61923635c84a5f5e68965b14c754"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Thu Jun 02 14:04:00 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@ppc970.osdl.org",
        "time": "Thu Jun 02 15:12:31 2005 -0700"
      },
      "message": "[PATCH] drivers/net/hamradio/baycom_epp.c: cleanups\n\nThe times when tricky goto\u0027s produced better codes are long gone.\n\nThis patch should express the same in a better way.\n\n(Also fixes the final gcc-4.0 x86 compile error)\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nCc: Jeff Garzik \u003cjgarzik@pobox.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "a553260618d88c4790daec7975c88f3db1080b5b",
      "tree": "75e46d5335ac3393bf453a36531bbe2ec60c1d21",
      "parents": [
        "7fbacd5213a03b262bb17a826b166900e8b168ac"
      ],
      "author": {
        "name": "Al Viro",
        "email": "viro@www.linux.org.uk",
        "time": "Wed May 04 05:39:42 2005 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@ppc970.osdl.org",
        "time": "Wed May 04 07:33:14 2005 -0700"
      },
      "message": "[PATCH] ISA DMA Kconfig fixes - part 3\n\nDrivers that expect ISA DMA API are marked as such in Kconfig.\n\nSigned-off-by: Al Viro \u003cviro@parcelfarce.linux.theplanet.co.uk\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "56cb515628e6a831bb76783f282a71f7285dad33",
      "tree": "ef7a70e6269eaf6f616066b6e1cd718a394d94bb",
      "parents": [
        "3b2d59d1fc86cc7217f165100a939907802dc67c"
      ],
      "author": {
        "name": "Arnaldo Carvalho de Melo",
        "email": "acme@ghostprotocols.net",
        "time": "Sun Apr 24 18:53:06 2005 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Sun Apr 24 18:53:06 2005 -0700"
      },
      "message": "[AX25] Introduce ax25_type_trans\n\nReplacing the open coded equivalents and making ax25 look more like\na linux network protocol, i.e. more similar to inet.\n\nSigned-off-by: Arnaldo Carvalho de Melo \u003cacme@ghostprotocols.net\u003e\nSigned-off-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "1da177e4c3f41524e886b7f1b8a0c1fc7321cac2",
      "tree": "0bba044c4ce775e45a88a51686b5d9f90697ea9d",
      "parents": [],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@ppc970.osdl.org",
        "time": "Sat Apr 16 15:20:36 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@ppc970.osdl.org",
        "time": "Sat Apr 16 15:20:36 2005 -0700"
      },
      "message": "Linux-2.6.12-rc2\n\nInitial git repository build. I\u0027m not bothering with the full history,\neven though we have it. We can create a separate \"historical\" git\narchive of that later if we want to, and in the meantime it\u0027s about\n3.2GB when imported into git - space that would just make the early\ngit days unnecessarily complicated, when we don\u0027t have a lot of good\ninfrastructure for it.\n\nLet it rip!\n"
    }
  ]
}
