)]}'
{
  "log": [
    {
      "commit": "3fa63c7d82ab9a12a5d0a299069f8df9f35aa011",
      "tree": "568e2eb557ff89359bd7de6bc307d0534fb1ea16",
      "parents": [
        "dfb7dac3af623a68262536437af008ed6aba4d88"
      ],
      "author": {
        "name": "Jean Delvare",
        "email": "khali@linux-fr.org",
        "time": "Sun Oct 30 15:02:23 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Oct 30 17:37:20 2005 -0800"
      },
      "message": "[PATCH] Typo fix: dot after newline in printk strings\n\nTypo fix: dots appearing after a newline in printk strings.\n\nSigned-off-by: Jean Delvare \u003ckhali@linux-fr.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "6df5b9f48dd0e77fa796b9b7d3fde7cc5f1237f2",
      "tree": "b13c0941fcbde9a95fece66d02bb0b558cf98041",
      "parents": [
        "378f058cc49bcda7fa63d3cd86d2f9a0a5188b1c"
      ],
      "author": {
        "name": "Herbert Xu",
        "email": "herbert@gondor.apana.org.au",
        "time": "Mon Sep 19 22:30:11 2005 +1000"
      },
      "committer": {
        "name": "Herbert Xu",
        "email": "herbert@gondor.apana.org.au",
        "time": "Sun Oct 30 11:19:43 2005 +1100"
      },
      "message": "[CRYPTO] Simplify one-member scatterlist expressions\n\nThis patch rewrites various occurences of \u0026sg[0] where sg is an array\nof length one to simply sg.\n\nSigned-off-by: Herbert Xu \u003cherbert@gondor.apana.org.au\u003e\n"
    },
    {
      "commit": "378f058cc49bcda7fa63d3cd86d2f9a0a5188b1c",
      "tree": "ed99548aa459054c7b046f0ac96af2cc50683e6e",
      "parents": [
        "d32311fed70d12f14e585feb4653571b1e2b0e6d"
      ],
      "author": {
        "name": "David Hardeman",
        "email": "david@2gen.com",
        "time": "Sat Sep 17 17:55:31 2005 +1000"
      },
      "committer": {
        "name": "Herbert Xu",
        "email": "herbert@gondor.apana.org.au",
        "time": "Sun Oct 30 11:19:43 2005 +1100"
      },
      "message": "[PATCH] Use sg_set_buf/sg_init_one where applicable\n\nThis patch uses sg_set_buf/sg_init_one in some places where it was\nduplicated.\n\nSigned-off-by: David Hardeman \u003cdavid@2gen.com\u003e\nCc: James Bottomley \u003cJames.Bottomley@steeleye.com\u003e\nCc: Greg KH \u003cgreg@kroah.com\u003e\nCc: \"David S. Miller\" \u003cdavem@davemloft.net\u003e\nCc: Jeff Garzik \u003cjgarzik@pobox.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Herbert Xu \u003cherbert@gondor.apana.org.au\u003e\n"
    },
    {
      "commit": "e71180f3689e00c5a1095925352a72dacdd62e34",
      "tree": "dc60596c2ea85b8f9f47a1c3af3c3da4041e3225",
      "parents": [
        "eef55ac7bf16669cb022db30143d0a6d8cb1f5e6"
      ],
      "author": {
        "name": "Patrick McHardy",
        "email": "kaber@trash.net",
        "time": "Sat Oct 29 13:31:39 2005 +0100"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sat Oct 29 14:17:05 2005 -0400"
      },
      "message": "[PATCH] prism54: Free skb after disabling interrupts\n\nThe dev_kfree_skb in islpci_eth_transmit happens while irqs are still\ndisabled, so either dev_kfree_skb_irq needs to be used or the skb\nneeds to be freed after irqs have been enabled again. This patch\nshould fix it.\n\nSigned-off-by: Patrick McHardy \u003ckaber@trash.net\u003e\nSigned-off-by: Daniel Drake \u003cdsd@gentoo.org\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "2c36ed22c6f64de94c6c3b7258dd7285bb093401",
      "tree": "bf8ab970180df5abe28d0c75d993a86a063bd8d5",
      "parents": [
        "63f57fb69b017230c77c40f1713e40885ae6d159"
      ],
      "author": {
        "name": "Alan Cox",
        "email": "alan@lxorguk.ukuu.org.uk",
        "time": "Fri Oct 28 15:14:52 2005 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Oct 28 19:06:44 2005 -0400"
      },
      "message": "[PATCH] Better fixup for the orinoco driver\n\nThe latest kernel added a pretty ugly fix for the orinoco etherleak bug\nwhich contains bogus skb-\u003elen checks already done by the caller and causes\ncopies of all odd sized frames (which are quite common)\n\nWhile the skb-\u003elen check should be ripped out the other fix is harder to do\nproperly so I\u0027m proposing for this the -mm tree only until next 2.6.x so\nthat it gets tested.\n\nInstead of copying buffers around blindly this code implements a padding\naware version of the hermes buffer writing function which does padding as\nthe buffer is loaded and thus more cleanly and without bogus 1.5K copies.\n\nSigned-off-by: Alan Cox \u003calan@redhat.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "63f57fb69b017230c77c40f1713e40885ae6d159",
      "tree": "d30d9f0c237b000b171e9e5918d0337268cf0f8b",
      "parents": [
        "a7ec15da65ab64c5f97beedc4ff21cf3e0ae71c0"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Fri Oct 28 15:14:51 2005 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Oct 28 19:06:44 2005 -0400"
      },
      "message": "[PATCH] revert \"orinoco: Information leakage due to incorrect padding\"\n\nCc: Alan Cox \u003calan@redhat.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "ad18b0ea089928367185e13d11424aea91d4b41f",
      "tree": "a909f1bd659a5fe35cbb90da1d097b17c2efa3ca",
      "parents": [
        "4f075707a9380592586d608a8d04dfbdb3c40339"
      ],
      "author": {
        "name": "Panagiotis Issaris",
        "email": "panagiotis.issaris@gmail.com",
        "time": "Mon Sep 05 04:14:10 2005 +0200"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Oct 28 16:57:20 2005 -0400"
      },
      "message": "[PATCH] ipw2200: Missing kmalloc check\n\nThe ipw2200 driver code in current GIT contains a kmalloc() followed by\na memset() without handling a possible memory allocation failure.\n\nSigned-off-by: Panagiotis Issaris \u003cpanagiotis.issaris@gmail.com\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "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": "008d55903a1e9e179ff1d366dfcfa9b72abd116d",
      "tree": "f4013eacc57d2395ceda2f2c46823845dc7cf3c2",
      "parents": [
        "d89a64bedf956ef0b406018a7cb76e027fe3e751"
      ],
      "author": {
        "name": "Roger While",
        "email": "simrw@sim-basis.de",
        "time": "Fri Oct 28 16:11:49 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Oct 28 16:11:49 2005 -0400"
      },
      "message": "[wireless prism54] Fix frame length\n\nprism54 is leaking information when passing transmits to the firmware.\nThere is no requirement to adjust the length to \u003e\u003d ETH_ZLEN.\nJust pass the skb length (after possible adjustment).\n\nSigned-off-by: Roger While \u003csimrw@sim-basis.de\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "902f90735b693550eb51a3989895f3148b8229d8",
      "tree": "faddc60f0b27ed6d2a26f20c2c09f365dc4a2d7d",
      "parents": [
        "07b8fede6da76ae6a0f547716c44b801a116bb4a",
        "93918e9afc76717176e9e114e79cdbb602a45ae8"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Oct 20 10:06:09 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Oct 20 10:06:09 2005 -0400"
      },
      "message": "Merge branch \u0027master\u0027\n"
    },
    {
      "commit": "c367c21c93ccdaf7e1e124891633d89f9ae77f54",
      "tree": "b9507834adaae1172a746b008a4a05db5e625b22",
      "parents": [
        "1c59827d1da9bcd6970800d4f8a031b5859e8b4c"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Wed Oct 19 21:23:44 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Oct 19 23:04:30 2005 -0700"
      },
      "message": "[PATCH] orinoco: limit message rate\n\nBrice Goglin \u003cBrice.Goglin@ens-lyon.org\u003e reports a printk storm from this\ndriver.  Fix.\n\nAcked-by: David Gibson \u003chermes@gibson.dropbear.id.au\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": "36841c9d02870983c2b08c85d56572c1ff011997",
      "tree": "367bdf81afd8fdc64147f95cb23493432449c05b",
      "parents": [
        "9f38c636ababfb41e58c9ec1e9719492ef7f0479"
      ],
      "author": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Tue Oct 18 21:30:58 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Tue Oct 18 22:27:14 2005 -0400"
      },
      "message": "[PATCH] orinoco: remove redundance skb length check before padding\n\nChecking the skb-\u003elen value before calling skb_padto is redundant.\n\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "28af493cd7b89cba7e3ee534079cf4f41bb4b4f9",
      "tree": "ea27df5ab7b728496a15602e0a7da74ff188378f",
      "parents": [
        "74cfe03f80adc320bde4dd37616354aefe2271aa",
        "39ca371c45b04cd50d0974030ae051906fc516b6"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Tue Oct 18 17:14:17 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Tue Oct 18 17:14:17 2005 -0400"
      },
      "message": "Merge branch \u0027master\u0027\n"
    },
    {
      "commit": "6593b58cfb54138781c5cd88f605e2ae663301b0",
      "tree": "32ebcd01bb2eda36d83628d3a490555475c7e06c",
      "parents": [
        "e26148d934762b61133a64b6862f870624ff617d"
      ],
      "author": {
        "name": "Matteo Croce",
        "email": "3297627799@wind.it",
        "time": "Fri Oct 14 15:59:06 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Oct 14 17:10:12 2005 -0700"
      },
      "message": "[PATCH] wireless/airo: Build fix\n\nThe aironet PCI driver has a build dependency on ISA that prevent the\ndriver to compile on systems that doesn\u0027t support ISA, like x86_64.  The\ndriver really doesn\u0027t depend on ISA, it does some ISA stuff in the\ninitialization code, since the driver supports both ISA and PCI cards.  So\nthe driver should depend on ISA_DMA_API to build on all systems, and this\nwill not hurt PCI at all.\n\nSigned-off-by: Matteo Croce \u003c3297627799@wind.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "0d69ae5fb7eb9ba3b54cf0ba4ef5ae591f31eef7",
      "tree": "be441bfa1e76035c00b66a3b06fea66cfd63d594",
      "parents": [
        "13d1ef29bc5125d7b77c5f6cdfde5ed31226005c",
        "9bc39bec87ee3e35897fe27441e979e7c208f624"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Oct 05 02:11:33 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Oct 05 02:11:33 2005 -0400"
      },
      "message": "Merge branch \u0027master\u0027\n"
    },
    {
      "commit": "9bc39bec87ee3e35897fe27441e979e7c208f624",
      "tree": "7c46d832b837b4441f7f4e4465d908b0e3e02a36",
      "parents": [
        "bb77c03cf40fec911c4ce9610b8207bf0050a5fd"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Tue Oct 04 21:33:10 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Tue Oct 04 23:37:21 2005 -0400"
      },
      "message": "[PATCH] orinoco: Information leakage due to incorrect padding\n\nThe orinoco driver can send uninitialized data exposing random pieces of\nthe system memory.  This happens because data is not padded with zeroes\nwhen its length needs to be increased.\n\nReported by Meder Kydyraliev \u003cmeder@o0o.nu\u003e\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "e2608361be343e6220e0a87e04ff224eb037df31",
      "tree": "33c2e8f377d89c323b0ced10e1929912cee0ebb3",
      "parents": [
        "075897ce3b1027fccb98f36dd1f18c07f5c374ef"
      ],
      "author": {
        "name": "Mateusz Berezecki",
        "email": "mateuszb@gmail.com",
        "time": "Tue Oct 04 08:14:00 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Tue Oct 04 08:14:00 2005 -0400"
      },
      "message": "[wireless ipw2200] remove redundant return statement\n"
    },
    {
      "commit": "53232803241ae0f26b39897a4d4b37775837de00",
      "tree": "b4ab0478eb6b32d7c799d6161502c3d6f761e3d9",
      "parents": [
        "d5919586265d36c6694a5d10ba589c02806873b6"
      ],
      "author": {
        "name": "Michal Schmidt",
        "email": "xschmi00@stud.feec.vutbr.cz",
        "time": "Tue Oct 04 07:46:21 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Tue Oct 04 07:46:21 2005 -0400"
      },
      "message": "airo: fix resume\n\nCisco Aironet doesn\u0027t resume properly from swsusp, because the resume\nmethod confuses a PM_EVENT_* for a PCI power state. It thinks that it is\nresuming from PCI_D1 and doesn\u0027t do the necessary initialization of the\ncard.\n\nSigned-off-by: Michal Schmidt \u003cxschmi00@stud.feec.vutbr.cz\u003e\n"
    },
    {
      "commit": "3c8c7b2f32c52b259daa7564fefd582146799b23",
      "tree": "59ff1ad0d6b7821d474d8fccafd884703684b6d7",
      "parents": [
        "7cb3cd090c2725b80561958a362c2ba15a7a8c86",
        "9123e0d78990246304fe681167b8d8097f1e02d7"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Mon Oct 03 22:06:19 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Mon Oct 03 22:06:19 2005 -0400"
      },
      "message": "Merge branch \u0027upstream-fixes\u0027\n"
    },
    {
      "commit": "7cb3cd090c2725b80561958a362c2ba15a7a8c86",
      "tree": "9fc947ea92077967b3a0e6437d32130b3e9d772d",
      "parents": [
        "c355184cd3cd58c9ffc78f2a17e0ac3563312ea7"
      ],
      "author": {
        "name": "Jouni Malinen",
        "email": "jkmaline@cc.hut.fi",
        "time": "Sun Oct 02 17:19:01 2005 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Mon Oct 03 22:00:09 2005 -0400"
      },
      "message": "[PATCH] hostap: Unregister netdevs before freeing local data\n\nUnregister all netdevs before freeing local data. I was unable to\ntrigger any crashes without this change when running busy loops for\ndriver operations when ejecting a Prism2 PC Card. Anyway, should there\nbe a race condition with this, better make it less likely to happen by\nunregistering the netdevs first.\n\nSigned-off-by: Jouni Malinen \u003cjkmaline@cc.hut.fi\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "c355184cd3cd58c9ffc78f2a17e0ac3563312ea7",
      "tree": "f6de150b08f98540bf660cedffd77785ce75b479",
      "parents": [
        "f7a74447553d698795ba74b7e17e916000b0cb08"
      ],
      "author": {
        "name": "Jouni Malinen",
        "email": "jkmaline@cc.hut.fi",
        "time": "Sun Oct 02 17:19:00 2005 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Mon Oct 03 22:00:08 2005 -0400"
      },
      "message": "[PATCH] hostap: Do not free local-\u003ehw_priv before unregistering netdev\n\nlocal-\u003ehw_priv was being freed and set to NULL just before calling\nprism2_free_local_data(). However, this may expose a race condition in\nwhich something ends up trying to use hw_priv during shutdown. I\nhaven\u0027t noticed this happening, but better be safe than sorry, so\nlet\u0027s postpone hw_priv freeing to happen only after\nprism2_free_local_data() has returned.\n\nSigned-off-by: Jouni Malinen \u003cjkmaline@cc.hut.fi\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "f7a74447553d698795ba74b7e17e916000b0cb08",
      "tree": "02143425097ceec545e4de3795a44e12531e8b78",
      "parents": [
        "bab76198b3111bd0328be3c1fa208237eb12f86e"
      ],
      "author": {
        "name": "Jouni Malinen",
        "email": "jkmaline@cc.hut.fi",
        "time": "Sun Oct 02 17:18:59 2005 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Mon Oct 03 22:00:08 2005 -0400"
      },
      "message": "[PATCH] hostap: Fix hostap_pci build with PRISM2_IO_DEBUG\n\nThe debug version of I/O functions in hostap_pci had not survived the\nchange to start using hw_priv pointer, so let\u0027s fix them to actually\ndefine the local hw_priv variable.\n\nSigned-off-by: Jouni Malinen \u003cjkmaline@cc.hut.fi\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "bab76198b3111bd0328be3c1fa208237eb12f86e",
      "tree": "11f1e2ec911c48a1e74563979457e8d299e414e5",
      "parents": [
        "2759c8d536efe3b853867f345627d89fb64c37af"
      ],
      "author": {
        "name": "Jouni Malinen",
        "email": "jkmaline@cc.hut.fi",
        "time": "Sun Oct 02 17:18:58 2005 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Mon Oct 03 22:00:08 2005 -0400"
      },
      "message": "[PATCH] hostap: Remove hw specific dev_open/close handlers\n\nHost AP driver used hardware model specific dev_open/close handlers\nthat were called on dev_open/close if the hardware driver had\nregistered the handler. These were only used for hostap_cs and only\nfor tracking whether any of the netdevs were UP. This information is\nalready available from local-\u003enum_dev_open, so there is not need for\nthe special open/close handler.\n\nLet\u0027s get rid of these handlers. In addition to cleaning up the code,\nthis fixes a module refcounting issue for hostap_cs where ejecting the\ncard while any of the netdevs were open did not decrement refcount\nproperly.\n\nSigned-off-by: Jouni Malinen \u003cjkmaline@cc.hut.fi\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "e5ed639913eea3e4783a550291775ab78dd84966",
      "tree": "e6e915aa686d2a7125181fc83a847e1955a8ba46",
      "parents": [
        "a5e7c210fefd2454c757a3542e41063407ca7108"
      ],
      "author": {
        "name": "Herbert Xu",
        "email": "herbert@gondor.apana.org.au",
        "time": "Mon Oct 03 14:35:55 2005 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Oct 03 14:35:55 2005 -0700"
      },
      "message": "[IPV4]: Replace __in_dev_get with __in_dev_get_rcu/rtnl\n\nThe following patch renames __in_dev_get() to __in_dev_get_rtnl() and\nintroduces __in_dev_get_rcu() to cover the second case.\n\n1) RCU with refcnt should use in_dev_get().\n2) RCU without refcnt should use __in_dev_get_rcu().\n3) All others must hold RTNL and use __in_dev_get_rtnl().\n\nThere is one exception in net/ipv4/route.c which is in fact a pre-existing\nrace condition.  I\u0027ve marked it as such so that we remember to fix it.\n\nThis patch is based on suggestions and prior work by Suzanne Wood and\nPaul McKenney.\n\nSigned-off-by: Herbert Xu \u003cherbert@gondor.apana.org.au\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "f65a4d10c8a4eb9f919cf416e5dcd720b7d20f50",
      "tree": "71bb423f5c16dddcb16c5ec9ca431f8658ace866",
      "parents": [
        "b3ca80935100af47f226be439cb266378dab7bf7"
      ],
      "author": {
        "name": "Benjamin Herrenschmidt",
        "email": "benh@kernel.crashing.org",
        "time": "Tue Sep 27 21:45:41 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Sep 28 07:46:41 2005 -0700"
      },
      "message": "[PATCH] orinoco: Fix flood of kernel log with stupid WE warnings\n\nLatest wireless extensions moved a field from netdev -\u003e wireless_handlers.\nThe WE core will now printk a warning on every call to get_wireless_stats()\non a driver that still uses the old field.  This patch fixes orinoco.\n\nSigned-off-by: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\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": "2759c8d536efe3b853867f345627d89fb64c37af",
      "tree": "e8dc66c8c5e2e5dbea9629f1405cdf9bada79985",
      "parents": [
        "e2e965072564e7aad8df963107677a6d22c41767"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sat Sep 24 04:09:04 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sat Sep 24 04:09:04 2005 -0400"
      },
      "message": "[wireless airo] remove needed dma_addr_t obfuscation\n\nFixes bus address truncation bug for certain configs.\n"
    },
    {
      "commit": "e2e965072564e7aad8df963107677a6d22c41767",
      "tree": "92667c7ec98f96308f4eefd4ec3c1bdfbb5acd93",
      "parents": [
        "596ff2e7c8db39c700e277f0bc267244be253f5b"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sat Sep 24 04:05:52 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sat Sep 24 04:05:52 2005 -0400"
      },
      "message": "Remove WIRELESS_EXT ifdefs from several wireless drivers.\n"
    },
    {
      "commit": "596ff2e7c8db39c700e277f0bc267244be253f5b",
      "tree": "9f0f0897c0ef74f8d44510c0cc868ee0e314cbdd",
      "parents": [
        "a9d12b9a4afcfa2cb6f6e76beb4f185a9177c98e"
      ],
      "author": {
        "name": "Jean Tourrilhes",
        "email": "jt@hpl.hp.com",
        "time": "Fri Sep 23 21:59:01 2005 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sat Sep 24 03:33:51 2005 -0400"
      },
      "message": "[PATCH] hostap: Remove iwe_stream_add_event kludge\n\nNow that we are compiling with -fno-strict-aliasing (this is the\nkernel default), we can drop the following kludge for\niwe_stream_add_event().\n\nSigned-off-by: Jouni Malinen \u003cjkmaline@cc.hut.fi\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "a9d12b9a4afcfa2cb6f6e76beb4f185a9177c98e",
      "tree": "ec30834a9f39a737d2f9d01d5c5b561015265ad1",
      "parents": [
        "c28df16ed70d1b6cefd12135e3c68bfccd1bb635"
      ],
      "author": {
        "name": "Jean Tourrilhes",
        "email": "jt@hpl.hp.com",
        "time": "Fri Sep 23 21:59:00 2005 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sat Sep 24 03:33:51 2005 -0400"
      },
      "message": "[PATCH] hostap: Use GFP_ATOMIC to get rid of weird might_sleep issue\n\n\tThis is the trace I got :\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "c28df16ed70d1b6cefd12135e3c68bfccd1bb635",
      "tree": "d1161f1c5523e9720f9bc58adf3b7495a5b1ac62",
      "parents": [
        "7a716536c602be6050b4f3ece30f1fc3b64362b0"
      ],
      "author": {
        "name": "Jean Tourrilhes",
        "email": "jt@hpl.hp.com",
        "time": "Fri Sep 23 21:58:59 2005 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sat Sep 24 03:33:51 2005 -0400"
      },
      "message": "[PATCH] hostap: Add support for WE-19\n\nThis patch adds support for WE-19 to the HostAP driver. One of\nthe major change is the use of an explicit flag to tell if iwstat is\nin dBm or not.\n\nSigned-off-by: Jouni Malinen \u003cjkmaline@cc.hut.fi\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "7a716536c602be6050b4f3ece30f1fc3b64362b0",
      "tree": "58ed691a144e75b81b712ccdf5daccebbe58693a",
      "parents": [
        "8cee0cd5bec53b78dd3c43a73b27821a688133e6"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Fri Sep 23 21:58:58 2005 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sat Sep 24 03:33:51 2005 -0400"
      },
      "message": "[PATCH] hostap: Fix pci_driver name for hostap_plx and hostap_pci\n\nhostap_pci and hostap_plx drivers still use PCI driver names\n\"prism2_pci\" and \"prism2_plx\" respectively.  This is unfriendly to\nlinux-wlan-ng, which uses the same names.  So, if e.g. hostap_pci and\nprism2_pci are loaded, they will \"share\" /sys/bus/pci/drivers/prism2_plx\ndirectory.\n\nChange PCI driver names of hostap_pci and hostap_plx to be equal to\ntheir module names.\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\nSigned-off-by: Jouni Malinen \u003cjkmaline@cc.hut.fi\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "acc4b985a6f8f22a0e826692894a4af234764001",
      "tree": "4615a3494ce14ed78d592599fd29605425b9c986",
      "parents": [
        "48ca703807eba616ad5e384b40e27514bd341a3d"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Fri Sep 23 04:18:06 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Sep 23 04:36:14 2005 -0400"
      },
      "message": "[PATCH] orinoco: Bump version to 0.15rc3.\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\n\nBump version to 0.15rc3.\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "48ca703807eba616ad5e384b40e27514bd341a3d",
      "tree": "ca4a41c2a653ff89ff1e713109e9afe4978a12e6",
      "parents": [
        "d133ae4cd6a3c75c31b1630f906cc9979a11077f"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Fri Sep 23 04:18:06 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Sep 23 04:36:13 2005 -0400"
      },
      "message": "[PATCH] orinoco: Read only needed data in __orinoco_ev_txexc().\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\n\nRead only needed data in __orinoco_ev_txexc().\n\nDon\u0027t read the 802.11 header beyond addr1.  The rest of the frame is not\nused currently.\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "d133ae4cd6a3c75c31b1630f906cc9979a11077f",
      "tree": "4b292054c342e6e8c5b2594c62cbf3534eea1edf",
      "parents": [
        "393da59834eef526fc6fd0df321e94344d7c49e3"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Fri Sep 23 04:18:06 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Sep 23 04:36:13 2005 -0400"
      },
      "message": "[PATCH] orinoco: Annotate endianess of variables and structure members.\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\n\nAnnotate endianess of variables and structure members.\n\nDon\u0027t reuse variables for both host-endian and little-endian data.\nMinor comment changes in affected structures.\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "393da59834eef526fc6fd0df321e94344d7c49e3",
      "tree": "bf4285c3f2064b56c2b188d4f24fe2b3d740290b",
      "parents": [
        "8aeabc375041a5fe9c9be315472497b2e0547eed"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Fri Sep 23 04:18:06 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Sep 23 04:36:13 2005 -0400"
      },
      "message": "[PATCH] orinoco: Remove unneeded forward declarations.\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\n\nRemove unneeded forward declarations.\n\nAlso reorder struct pcmcia_driver initialization to keep attach and\ndetach together.\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "8aeabc375041a5fe9c9be315472497b2e0547eed",
      "tree": "27f79b27bc015596395c03ecd9c6ae72964fb322",
      "parents": [
        "f3cb4cc120177090b0ccc9fb20a12010de39ac8a"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Fri Sep 23 04:18:06 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Sep 23 04:36:13 2005 -0400"
      },
      "message": "[PATCH] orinoco: orinoco_send_wevents() could return without unlocking.\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\n\norinoco_send_wevents() could return without unlocking.\n\nFailure to read BSSID from the hardware would cause orinoco_send_wevents() to\nreturn with lock held.  Found by sparse.\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "f3cb4cc120177090b0ccc9fb20a12010de39ac8a",
      "tree": "368c76f705f9512f5016288b607e3a0e4b36d54d",
      "parents": [
        "4c08202547111e503eca4031ae9443159a79e2b2"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Fri Sep 23 04:18:06 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Sep 23 04:36:13 2005 -0400"
      },
      "message": "[PATCH] orinoco: Fix memory leak and unneeded unlock in orinoco_join_ap()\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\n\nFix memory leak and unneeded unlock in orinoco_join_ap()\n\nIf orinoco_lock() fails, the code would still run orinoco_unlock(),\ninstead of freeing the allocated memory.  Found by sparse.\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "4c08202547111e503eca4031ae9443159a79e2b2",
      "tree": "16e191f069d0d722a61cbab76ab77fa587162386",
      "parents": [
        "ef846bf04f4c9e1a68ab841e89931f8c26100874"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Fri Sep 23 04:18:06 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Sep 23 04:36:13 2005 -0400"
      },
      "message": "[PATCH] orinoco: Make nortel_pci_hw_init() static.\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\n\nMake nortel_pci_hw_init() static.\n\nFound by sparse.\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "ef846bf04f4c9e1a68ab841e89931f8c26100874",
      "tree": "20a1f3808166d65f98db97944870e20143c05067",
      "parents": [
        "da192bb50cc9a7fe7d95e048422d51777bad0bba"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Fri Sep 23 04:18:07 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Sep 23 04:36:13 2005 -0400"
      },
      "message": "[PATCH] orinoco: Remove inneeded system includes.\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\n\nRemove inneeded system includes.\n\nMost system includes are not needed.  In particular, the hardware\nbackends don\u0027t need anything network related.  Some includes have been\nmoved from local headers to the C files where they are actually used.\nIncludes that have to be in the local headers are no longer from the C\nsources.\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "af9288a707b609cdb1069cfe5bde0d6567c12c31",
      "tree": "32ee8fee982736729524f34ece457449ab1356d3",
      "parents": [
        "6eb6edf04acd09e3cea09456913e8da59323b89e"
      ],
      "author": {
        "name": "James Ketrenos",
        "email": "jketreno@linux.intel.com",
        "time": "Thu Sep 22 15:43:07 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Sep 22 15:43:07 2005 -0400"
      },
      "message": "ieee80211: update orinoco, wl3501 drivers for latest struct naming\n"
    },
    {
      "commit": "5bfc819b53ed67c76f33f969ab627070e85d87c1",
      "tree": "a50aa1fd2c5cd51d934883b4f7cf559157c8f592",
      "parents": [
        "d041674d62e1ad565f2fb6d53ae80b31d6656033"
      ],
      "author": {
        "name": "James Ketrenos",
        "email": "jketreno@linux.intel.com",
        "time": "Wed Sep 21 12:23:51 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Sep 21 23:07:15 2005 -0400"
      },
      "message": "[PATCH] ieee80211: Updated hostap to be compatible with extra_prefix_len changes\n\ntree 8c1676c8a15c08e6d4c718fc7cd42d9bf4cd8235\nparent 0ccc3dd6469ed492578c184f47dde2baccde3593\nauthor James Ketrenos \u003cjketreno@linux.intel.com\u003e 1126715240 -0500\ncommitter James Ketrenos \u003cjketreno@linux.intel.com\u003e 1127316717 -0500\n\nUpdated hostap to be compatible with extra_prefix_len changes.\n\nAccomplished via:\n\nfor i in hostap_ap.c hostap_80211_tx.c; do\n        sed -i -e \"s:\\([.\u003e]\\)extra_prefix_len:\\1extra_mpdu_prefix_len:g\" \\\n                -e \"s:\\([.\u003e]\\)extra_postfix_len:\\1extra_mpdu_postfix_len:g\" \\\n                drivers/net/wireless/hostap/$i\ndone\n\nCC: Jouni Malinen \u003cjkmaline@cc.hut.fi\u003e\n\nSigned-off-by: James Ketrenos \u003cjketreno@linux.intel.com\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "d041674d62e1ad565f2fb6d53ae80b31d6656033",
      "tree": "fe63cb09606c2c23485092bac7298c85677fea92",
      "parents": [
        "ebeaddcc02fd47d1dbb7f25318d046461d90e4af"
      ],
      "author": {
        "name": "James Ketrenos",
        "email": "jketreno@linux.intel.com",
        "time": "Wed Sep 21 12:23:49 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Sep 21 23:07:15 2005 -0400"
      },
      "message": "[PATCH] ieee80211: Updated hostap to be compatible with ieee80211_hdr changes\n\ntree 8ec97d9056ceaf0f845ed51175dd842b700baadd\nparent 329128457008ace3110c96971addf85a767dd5af\nauthor James Ketrenos \u003cjketreno@linux.intel.com\u003e 1126714484 -0500\ncommitter James Ketrenos \u003cjketreno@linux.intel.com\u003e 1127316636 -0500\n\nUpdated hostap to be compatible with ieee80211_hdr changes.\n\nChange accomplished via:\n\nfor i in hostap_ap.{c,h} hostap_80211_{t,r}x.c; do\n\tsed -i -e \"s:ieee80211_hdr\\([^_]\\):ieee80211_hdr_4addr\\1:g\" \\\n\t\tdrivers/net/wireless/hostap/$i\ndone\n\nCC: Jouni Malinen \u003cjkmaline@cc.hut.fi\u003e\n\nSigned-off-by: James Ketrenos \u003cjketreno@linux.intel.com\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "4ca5253d573d7b3785dbb2f123f948fdca6ee235",
      "tree": "51092301c2553b9c977cbb6d77e272750ccfd068",
      "parents": [
        "c8d42d1ae4518091a20f7212b0591a0f4b0e8ca0"
      ],
      "author": {
        "name": "James Ketrenos",
        "email": "jketreno@linux.intel.com",
        "time": "Wed Sep 21 12:23:46 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Sep 21 23:00:58 2005 -0400"
      },
      "message": "[PATCH] ieee80211: Updated atmel to be compatible with ieee80211_hdr changes\n\ntree d7be83000b058b14450d76f99c432b1fb2a1c177\nparent 322201093e03830fceedfc24931420b1ea855a8c\nauthor James Ketrenos \u003cjketreno@linux.intel.com\u003e 1127316330 -0500\ncommitter James Ketrenos \u003cjketreno@linux.intel.com\u003e 1127316330 -0500\n\nUpdated atmel to be compatible with ieee80211_hdr changes.\n\nChange accomplished via:\n\nsed -i -e \"s:ieee80211_hdr\\([^_]\\):ieee80211_hdr_4addr\\1:g\" \\\n\tdrivers/net/wireless/atmel.c\n\nCompile tested only.\n\nCC: simon@thekelleys.org.uk\n\nSigned-off-by: James Ketrenos \u003cjketreno@linux.intel.com\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "c8d42d1ae4518091a20f7212b0591a0f4b0e8ca0",
      "tree": "c79676c91d5f8fc12b7ef54625e1bcff8bdab14f",
      "parents": [
        "0dacca1f0a53938dd7d5ba35c692bd1a3356d504"
      ],
      "author": {
        "name": "James Ketrenos",
        "email": "jketreno@linux.intel.com",
        "time": "Wed Sep 21 12:23:43 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Sep 21 23:00:57 2005 -0400"
      },
      "message": "[PATCH] ieee80211: Updated ipw2200 to be compatible with ieee80211\u0027s hard_start_xmit change.\n\ntree 713b6ff3311decfe42d5209f7b2508736d144b85\nparent 6465beff0e89779330450dffc2a5e6dc5154eebf\nauthor James Ketrenos \u003cjketreno@linux.intel.com\u003e 1126716726 -0500\ncommitter James Ketrenos \u003cjketreno@linux.intel.com\u003e 1127316162 -0500\n\nUpdated ipw2200 to be compatible with ieee80211\u0027s hard_start_xmit change.\n\nSigned-off-by: James Ketrenos \u003cjketreno@linux.intel.com\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "0dacca1f0a53938dd7d5ba35c692bd1a3356d504",
      "tree": "1c3e6ddedd1032ef26a4e0f45e8d3b1fa3fd8d96",
      "parents": [
        "3a5becf720d6346ffca2d6be6473f603b39322a2"
      ],
      "author": {
        "name": "James Ketrenos",
        "email": "jketreno@linux.intel.com",
        "time": "Wed Sep 21 12:23:41 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Sep 21 23:00:57 2005 -0400"
      },
      "message": "[PATCH] ieee80211: Updated ipw2200 to be compatible with ieee80211_hdr changes\n\ntree 9f86c7b4f59249c05c96c360dfaa817995e8a44f\nparent 9b09701b2c6254f2fddb009004a14eb5a908714f\nauthor James Ketrenos \u003cjketreno@linux.intel.com\u003e 1126714305 -0500\ncommitter James Ketrenos \u003cjketreno@linux.intel.com\u003e 1127316074 -0500\n\nUpdated ipw2200 to be compatible with ieee80211_hdr changes.\n\nSigned-off-by: James Ketrenos \u003cjketreno@linux.intel.com\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "3a5becf720d6346ffca2d6be6473f603b39322a2",
      "tree": "0084320b04b04b2d61e4630505803104251205a6",
      "parents": [
        "99a4b232b6682a847c70d877e4a3c15e9138c8f6"
      ],
      "author": {
        "name": "James Ketrenos",
        "email": "jketreno@linux.intel.com",
        "time": "Wed Sep 21 12:23:37 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Sep 21 23:00:57 2005 -0400"
      },
      "message": "[PATCH] ieee80211: Updated ipw2100 to be compatible with ieee80211\u0027s hard_start_xmit change\n\ntree ee48cbe413b795d6be454b9baf4f3bd3d74814cb\nparent 49856b147763bd6847e0d8f53aee1ddd61385638\nauthor James Ketrenos \u003cjketreno@linux.intel.com\u003e 1126716634 -0500\ncommitter James Ketrenos \u003cjketreno@linux.intel.com\u003e 1127316024 -0500\n\nUpdated ipw2100 to be compatible with ieee80211\u0027s hard_start_xmit change.\n\nSigned-off-by: James Ketrenos \u003cjketreno@linux.intel.com\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "99a4b232b6682a847c70d877e4a3c15e9138c8f6",
      "tree": "7dacb727771de8dc9318beb81752f3c5f22adab2",
      "parents": [
        "a3536c839f04682ed06c84a7f75968c27c6108c8"
      ],
      "author": {
        "name": "James Ketrenos",
        "email": "jketreno@linux.intel.com",
        "time": "Wed Sep 21 12:23:25 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Sep 21 23:00:57 2005 -0400"
      },
      "message": "[PATCH] ieee80211: Updated ipw2100 to be compatible with ieee80211_hdr changes\n\ntree 992b203395c50342f1cced415acae6177344e270\nparent c59bb604a2ff4e40232ff0422e7adc44e3b007a0\nauthor James Ketrenos \u003cjketreno@linux.intel.com\u003e 1126714006 -0500\ncommitter James Ketrenos \u003cjketreno@linux.intel.com\u003e 1127315910 -0500\n\nUpdated ipw2100 to be compatible with ieee80211_hdr changes.\n\nSigned-off-by: James Ketrenos \u003cjketreno@linux.intel.com\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "a3536c839f04682ed06c84a7f75968c27c6108c8",
      "tree": "92c26ea74c0ffb9b83a2285ad2539cc271b09856",
      "parents": [
        "a33a1982012e9070736e3717231714dc9892303b",
        "efb0372bbaf5b829ff8c39db372779928af542a7"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Sep 21 22:34:08 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Sep 21 22:34:08 2005 -0400"
      },
      "message": "Merge /spare/repo/linux-2.6/\n"
    },
    {
      "commit": "a33a1982012e9070736e3717231714dc9892303b",
      "tree": "83ff248e8019cd6036f01db43a9627da1b703bae",
      "parents": [
        "3bc5ed684253f407b1567799d13cb06a0d86fe80"
      ],
      "author": {
        "name": "James Ketrenos",
        "email": "jketreno@linux.intel.com",
        "time": "Wed Sep 14 14:28:59 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Sep 16 03:15:57 2005 -0400"
      },
      "message": "[PATCH] Updated ipw2200 to compile with ieee80211 abg_ture to abg_true change\n\nauthor James Ketrenos \u003cjketreno@linux.intel.com\u003e 1126713327 -0500\ncommitter James Ketrenos \u003cjketreno@linux.intel.com\u003e 1126713327 -0500\n\nUpdated ipw2200 to compile with ieee80211 abg_ture to abg_true change.\n\nSigned-off-by: James Ketrenos \u003cjketreno@linux.intel.com\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "9c8a11d7c2298680ff3ee8acda54575c88668bfc",
      "tree": "a183ce73c486bfe86ea5e96e9619f2088784bbae",
      "parents": [
        "27c91efba4c121f90c0e6d371c7064733b286a69"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Fri Sep 16 02:18:31 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Sep 16 02:56:36 2005 -0400"
      },
      "message": "[PATCH] orinoco: Update PCMCIA ID\u0027s.\n\nAuthor: Pavel Roskin \u003cproski@gnu.org\u003e\nDate:   Fri Sep 16 01:07:47 2005 -0400\n\n    Update PCMCIA ID\u0027s.\n\n    Intel Pro/Wireless 2011 and 2011B have the same numeric ID, so use\n    strings instead.\n\n    Take all entries from *.conf for Orinoco, HostAP and linux-wlan-ng and\n    adds them with minimal changes (e.g. we don\u0027t need a revision string\n    after a string that identifies the chipset).\n\n    Add comments with card names to all numeric entries.  Note: the comments\n    don\u0027t and cannot cover all cards, since the main reason of having\n    numeric IDs is to cover cards that are often rebranded.\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "27c91efba4c121f90c0e6d371c7064733b286a69",
      "tree": "78dd96949dcb026a37f182255db3d804a4274706",
      "parents": [
        "65853b133d0256786df25f03eea0e5a6799e8d17"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Fri Sep 16 02:16:52 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Sep 16 02:56:36 2005 -0400"
      },
      "message": "[PATCH] orinoco: Don\u0027t include \u003cnet/ieee80211.h\u003e twice.\n\nAuthor: Pavel Roskin \u003cproski@gnu.org\u003e\nDate:   Fri Sep 16 00:50:00 2005 -0400\n\n    Don\u0027t include \u003cnet/ieee80211.h\u003e twice.\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "65853b133d0256786df25f03eea0e5a6799e8d17",
      "tree": "38c3d8007e70992829271a2fcf453624d4afadd2",
      "parents": [
        "76209926e3756f66c9cdc8a4becbf34df8c47799"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Fri Sep 16 02:15:13 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Sep 16 02:56:36 2005 -0400"
      },
      "message": "[PATCH] orinoco: Remove conditionals that are useless in the kernel drivers.\n\nAuthor: Pavel Roskin \u003cproski@gnu.org\u003e\nDate:   Fri Sep 16 00:49:05 2005 -0400\n\n    Remove conditionals that are useless in the kernel drivers.\n\n    Kernel drivers are never compiled against pcmcia-cs headers.\n    Firmware is never embedded into spectrum_cs module.\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "7a700fafbed55eee2cc766fbe47cf68e229da281",
      "tree": "b52a9c14808a61c1ff5c320d380fea08793968d9",
      "parents": [
        "387d890db88b4eb7c1dd55a2a0c16d6f0dccc7ad"
      ],
      "author": {
        "name": "viro@ZenIV.linux.org.uk",
        "email": "viro@ZenIV.linux.org.uk",
        "time": "Fri Sep 09 20:40:23 2005 +0100"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Sep 14 08:37:49 2005 -0400"
      },
      "message": "[PATCH] C99 initializers in ray_cs.c\n\nSigned-off-by: Al Viro \u003cviro@zeniv.linux.org.uk\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "3173c8907ffb2c64456142da3df2bd0500bd59e0",
      "tree": "dcd3700a2c37e24a2b5911bb5429aee715684926",
      "parents": [
        "343c686c04eec556645f251f7d6c9b3d7335dae0"
      ],
      "author": {
        "name": "Nishanth Aravamudan",
        "email": "nacc@us.ibm.com",
        "time": "Sun Sep 11 02:09:55 2005 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Sep 14 08:33:24 2005 -0400"
      },
      "message": "[PATCH] drivers/net: fix-up schedule_timeout() usage\n\nUse schedule_timeout_interruptible() instead of\nset_current_state()/schedule_timeout() to reduce kernel size.\n\nSigned-off-by: Nishanth Aravamudan \u003cnacc@us.ibm.com\u003e\nCc: Jeff Garzik \u003cjgarzik@pobox.com\u003e\nCc: \"David S. Miller\" \u003cdavem@davemloft.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "343c686c04eec556645f251f7d6c9b3d7335dae0",
      "tree": "2713fbd5e71f7a7dbe94634a1bc4eb81a1ed8af5",
      "parents": [
        "b81e8e1f4a51556586f72711a165bc3a0de230f3"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Fri Sep 09 18:43:02 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Sep 14 08:30:54 2005 -0400"
      },
      "message": "[PATCH] orinoco: WE-18 support\n\nAuthor: Jean Tourrilhes \u003cjt@hpl.hp.com\u003e\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\n\nUse new Wireless Extension API for wireless stats.\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "1141455d5e29e47004ad61e0fc385cb612d4e51c",
      "tree": "6dd7e7e2e5e948a3b8fb817240204e0fbd450d22",
      "parents": [
        "3be034b68acab61d6878431593203fc1b10d10ab"
      ],
      "author": {
        "name": "matthieu castet",
        "email": "castet.matthieu@free.fr",
        "time": "Mon Sep 12 23:31:39 2005 +0200"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Sep 14 08:24:22 2005 -0400"
      },
      "message": "[PATCH] airo : fix channel number in scan\n\nthis patch display the correct channel number with iwlist scan\n\nSigned-off-by: Matthieu CASTET \u003ccastet.matthieu@free.fr\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "f39a4aa5ea579bcdcfbb9661ee77817bc4945562",
      "tree": "ea9643e884c96ee2ba49dcc11a64ea8782f8ce7b",
      "parents": [
        "d7d7634c0f021d7d7ed781680d2c88940fc5fee8"
      ],
      "author": {
        "name": "Komuro",
        "email": "komurojun-mbn@nifty.com",
        "time": "Tue Sep 13 01:25:05 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Sep 13 08:22:28 2005 -0700"
      },
      "message": "[PATCH] pcmcia: add another orinoco_cs id\n\nAdd new id to orinoco_cs (corega PCCB-11).\n\nSigned-off-by: \u003ckomurojun-mbn@nifty.com\u003e\nSigned-off-by: Dominik Brodowski \u003clinux@dominikbrodowski.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "0edd5b44913cd0aba6f23b626b407f70bb3fb018",
      "tree": "dcb79cd9f99e7a20fef43af8e4029a4d8b7671a8",
      "parents": [
        "bbeec90b98a3066f6f2b8d41c80561f5665e4631"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Sep 07 00:48:31 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Sep 07 00:48:31 2005 -0400"
      },
      "message": "[wireless ieee80211,ipw2200] Lindent source code\n\nNo code changes, just Lindent + manual fixups.\n\nThis prepares us for updating to the latest Intel driver code, plus\ngives the source code a nice facelift.\n"
    },
    {
      "commit": "bbeec90b98a3066f6f2b8d41c80561f5665e4631",
      "tree": "9e7e1d62f5a4b1f0322c8f4bd7e6132aa761c8cc",
      "parents": [
        "e345d5ef6d476cc236f64d90d9528143a70745c8"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Sep 07 00:27:54 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Sep 07 00:27:54 2005 -0400"
      },
      "message": "[wireless] build fixes after merging WE-19\n"
    },
    {
      "commit": "ce6623c3d8f932a15306355a7c9a0cdfdd6a26ec",
      "tree": "dcf668df052a28ffa94bb30c1056f760c6858320",
      "parents": [
        "61bd49631474c8763676a6ac72461cb523ddb78a"
      ],
      "author": {
        "name": "Jean Tourrilhes",
        "email": "jt@hpl.hp.com",
        "time": "Fri Sep 02 11:45:10 2005 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Tue Sep 06 22:45:14 2005 -0400"
      },
      "message": "[PATCH] airo : WE-19 support\n\n\tDan Williams already included most parts of my WE-19 patch for\nthe airo driver in the kernel. There was just a few bits he could not\ndo because WE-19 itself was not in the kernel. Those are the missing\nbits.\n        Tested with 2.6.13 (with real HW).\n\nSigned-off-by: Jean Tourrilhes \u003cjt@hpl.hp.com\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "61bd49631474c8763676a6ac72461cb523ddb78a",
      "tree": "05f2066fcde0558d2a4cd8c93260a8b7eed97a88",
      "parents": [
        "00b309f561e9746fd6ac9598c4203c6610fcb26c"
      ],
      "author": {
        "name": "Jean Tourrilhes",
        "email": "jt@hpl.hp.com",
        "time": "Fri Sep 02 11:42:56 2005 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Tue Sep 06 22:44:23 2005 -0400"
      },
      "message": "[PATCH] prism54 : WE-17 support\n\n\tMy patch that adds WE-17 support to the Prism54 driver went\nalready in the kernel, except for a tiny bit that was dropped on the\nway. This is the missing bit....\n\tTested with 2.6.13 (with real HW).\n\nSigned-off-by: Jean Tourrilhes \u003cjt@hpl.hp.com\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "00b309f561e9746fd6ac9598c4203c6610fcb26c",
      "tree": "708e1a72653aeb55ecb116332344bf8966278513",
      "parents": [
        "72f98d38a890822cf547f94c8fbdef591b082ec2"
      ],
      "author": {
        "name": "Jean Tourrilhes",
        "email": "jt@hpl.hp.com",
        "time": "Fri Sep 02 11:37:38 2005 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Tue Sep 06 22:44:23 2005 -0400"
      },
      "message": "[PATCH] wl3501_cs : WE-17 support\n\n\twl3501_cs won\u0027t compile with WE-19. This patches fixes it.\n\nSigned-off-by: Jean Tourrilhes \u003cjt@hpl.hp.com\u003e\nAcked-by: Arnaldo Carvalho de Melo \u003cacme@conectiva.com.br\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "72f98d38a890822cf547f94c8fbdef591b082ec2",
      "tree": "f0806a7a713783795916cd69752c3a803f4d9cd4",
      "parents": [
        "62337dd54bad660258d44c89754721f60283ea84"
      ],
      "author": {
        "name": "Jean Tourrilhes",
        "email": "jt@hpl.hp.com",
        "time": "Fri Sep 02 11:36:00 2005 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Tue Sep 06 22:44:23 2005 -0400"
      },
      "message": "[PATCH] atmel_cs : WE-17 support\n\n\tThis adds support for WE-17 to the atmel_cs driver. Not\ntested, I don\u0027t have the HW.\n\nSigned-off-by: Jean Tourrilhes \u003cjt@hpl.hp.com\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "62337dd54bad660258d44c89754721f60283ea84",
      "tree": "241ae6f62cd256d7d97480b4c346bb584ccd0354",
      "parents": [
        "3d5d5ac085c467f05cce85d32985e78912db4a7e"
      ],
      "author": {
        "name": "Jean Tourrilhes",
        "email": "jt@hpl.hp.com",
        "time": "Fri Sep 02 11:39:02 2005 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Tue Sep 06 22:43:14 2005 -0400"
      },
      "message": "[PATCH] iw263_netwave_we17.diff\n\n        This adds support for WE-17 to the netwave_cs driver. Tested\nwith 2.6.13 (with real HW).\n\nSigned-off-by: Jean Tourrilhes \u003cjt@hpl.hp.com\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "3d5d5ac085c467f05cce85d32985e78912db4a7e",
      "tree": "66e44793a25187cb383327e8fa89ddd2d5107522",
      "parents": [
        "6582c164f2b3b6e58d1f13c1c031b19ee691eb14"
      ],
      "author": {
        "name": "Jean Tourrilhes",
        "email": "jt@hpl.hp.com",
        "time": "Fri Sep 02 11:40:39 2005 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Tue Sep 06 22:43:14 2005 -0400"
      },
      "message": "[PATCH] ray_cs : WE-17 support\n\n        This adds support for WE-17 to the ray_cs driver. Tested\nwith 2.6.13 (with real HW).\n\nSigned-off-by: Jean Tourrilhes \u003cjt@hpl.hp.com\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "5bcaa155797ab62ed363932ec0f02fbcb5db1ef1",
      "tree": "1db633712bd47ce72ac5a1aed62b3417733ac63a",
      "parents": [
        "1e231efe50ffe4d291be24d2fe393188de9c4b08",
        "3a48c4c2d52a08e12319ab7caacad0a9b88e6cb4"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@evo.osdl.org",
        "time": "Tue Sep 06 00:47:18 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@evo.osdl.org",
        "time": "Tue Sep 06 00:47:18 2005 -0700"
      },
      "message": "Merge branch \u0027upstream\u0027 of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6 \n"
    },
    {
      "commit": "3da54c5b253549153ee6521db21d541a06abaa65",
      "tree": "1f4e1dacdad53b77299026b1a72dc0993066223a",
      "parents": [
        "fb5f5e6e0cebd574be737334671d1aa8f170d5f3"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Mon Sep 05 23:08:01 2005 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Mon Sep 05 23:08:01 2005 -0700"
      },
      "message": "[IPW2200]: ipw2200.h needs linux/dma-mapping.h\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "3a48c4c2d52a08e12319ab7caacad0a9b88e6cb4",
      "tree": "035dffa590835d9a1c998b7984d958a68f08bec4",
      "parents": [
        "ec82905177a22b0fe0abaf4ecb76813d3d45d16e"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Thu Sep 01 20:10:06 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Mon Sep 05 18:14:08 2005 -0400"
      },
      "message": "[PATCH] orinoco: New driver - spectrum_cs.\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\n\ndiff-tree dee4f325520d4ea29397dd67ca657b7235bb1790 (from c88faac230cc9775445e5c644991c352e35c72a1)\nAuthor: Pavel Roskin \u003cproski@gnu.org\u003e\nDate:   Thu Sep 1 17:46:39 2005 -0400\n\n    New driver - spectrum_cs.\n\n    Driver for 802.11b cards using RAM-loadable Symbol firmware, such as\n    Symbol Wireless Networker LA4100, CompactFlash cards by Socket\n    Communications and Intel PRO/Wireless 2011B.\n\n    The driver implements Symbol firmware download.  The rest is handled\n    in hermes.c and orinoco.c.\n\n    Utilities for downloading the Symbol firmware are available at\n    http://sourceforge.net/projects/orinoco/\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "ec82905177a22b0fe0abaf4ecb76813d3d45d16e",
      "tree": "e32ab69ce85ed4a4a3f5358e99e4c67f241c5abb",
      "parents": [
        "8c09e16bd8f816f19cea0920430a1ac26478fcf6"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Thu Sep 01 20:08:56 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Mon Sep 05 18:14:08 2005 -0400"
      },
      "message": "[PATCH] orinoco: New driver - orinoco_nortel.\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\n\ndiff-tree dce61aef99ceb57370b70222dc34d788666c0ac3 (from ceb6695092be8dcdfe2dec6ee5097d613011489d)\nAuthor: Pavel Roskin \u003cproski@gnu.org\u003e\nDate:   Thu Sep 1 15:50:55 2005 -0400\n\n    New driver - orinoco_nortel.\n\n    This is a driver for Nortel emobility PCI adaptors, which consist of an\n    Orinoco compatible PCMCIA card and a simple PCI-to-PCMCIA bridge.  The\n    driver initializes the device and uses Orinoco core driver for actual\n    wireless networking.\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "8c09e16bd8f816f19cea0920430a1ac26478fcf6",
      "tree": "522f94abb0250c656459fb297ac04a91b246f29a",
      "parents": [
        "c89cc225f72ec240196733872fa1a9eb9d8335ac"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Thu Sep 01 20:07:52 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Mon Sep 05 18:14:07 2005 -0400"
      },
      "message": "[PATCH] orinoco: Remove EXPERIMENTAL mark from PLX_HERMES, TMD_HERMES and PCI_HERMES.\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\n\ndiff-tree ceb6695092be8dcdfe2dec6ee5097d613011489d (from 6b39374a27eb4be7e9d82145ae270ba02ea90dc8)\nAuthor: Pavel Roskin \u003cproski@gnu.org\u003e\nDate:   Thu Sep 1 14:50:10 2005 -0400\n\n    Remove EXPERIMENTAL mark from PLX_HERMES, TMD_HERMES and PCI_HERMES.\n\n    Those drivers have been used for a long time, and there have been very\n    few problem reports.\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "c89cc225f72ec240196733872fa1a9eb9d8335ac",
      "tree": "08d8d46b486a3517f94e1c3d9077dbb156dcbd73",
      "parents": [
        "708218b064e3ad3d55ac0f9d19b3c8c0fb7af3a4"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Thu Sep 01 20:06:06 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Mon Sep 05 18:14:07 2005 -0400"
      },
      "message": "[PATCH] orinoco: Optimize orinoco_join_ap()\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\n\ndiff-tree cb289b9f9b2a0f3ae7070a008f22e383b37526ee (from 56bfcdb38b3d04c1f8c1fd705e411f4be53b663c)\nAuthor: Pavel Roskin \u003cproski@gnu.org\u003e\nDate:   Thu Sep 1 19:05:16 2005 -0400\n\n    Optimize orinoco_join_ap() - break from loop once the requested\nBSSID\n    is found.\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "708218b064e3ad3d55ac0f9d19b3c8c0fb7af3a4",
      "tree": "4ad69b823c2cc943c0ab84445a1435e65313a6e5",
      "parents": [
        "acf73a8563ff7540a54345c23f6cfe5a49b9d682"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Thu Sep 01 20:05:19 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Mon Sep 05 18:13:44 2005 -0400"
      },
      "message": "[PATCH] orinoco: Fix memory leak on error in processing hostscan frames.\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\n\ndiff-tree ca955293cdfd3139e150d3b4fed3922a7eb651fb (from cb289b9f9b2a0f3ae7070a008f22e383b37526ee)\nAuthor: Pavel Roskin \u003cproski@gnu.org\u003e\nDate:   Thu Sep 1 19:08:00 2005 -0400\n\n    Fix memory leak on error in processing hostscan frames.\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "acf73a8563ff7540a54345c23f6cfe5a49b9d682",
      "tree": "ea6fc37e15127c581144b48e8240953981a2a92e",
      "parents": [
        "70817c40b94eef047f1bfdd46f8c56cc16075a78"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Thu Sep 01 20:04:20 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Mon Sep 05 18:13:44 2005 -0400"
      },
      "message": "[PATCH] orinoco: Remove entry for Intel PRO/Wireless 2011B.\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\n\ndiff-tree c88faac230cc9775445e5c644991c352e35c72a1 (from dce61aef99ceb57370b70222dc34d788666c0ac3)\nAuthor: Pavel Roskin \u003cproski@gnu.org\u003e\nDate:   Thu Sep 1 17:09:45 2005 -0400\n\n    Remove entry for Intel PRO/Wireless 2011B.\n\n    It is not supported by this driver because it has no firmware in\n    flash.  spectrum_cs is needed for this device.\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "70817c40b94eef047f1bfdd46f8c56cc16075a78",
      "tree": "27a774e43d563b08c1929fd4417f88494e703e92",
      "parents": [
        "7cda62455c800cf46bb86487d4f32ac6e4e8c519"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Thu Sep 01 20:02:50 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Mon Sep 05 18:13:44 2005 -0400"
      },
      "message": "[PATCH] orinoco: Change orinoco_translate_scan() to return error code on error.\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\n\ndiff-tree 8fc038ec51acf5f777fade80c5e38112b766aeee (from ca955293cdfd3139e150d3b4fed3922a7eb651fb)\nAuthor: Pavel Roskin \u003cproski@gnu.org\u003e\nDate:   Thu Sep 1 19:10:12 2005 -0400\n\n    Change orinoco_translate_scan() to return error code on error.\n    Adjust the caller to check for errors and clean up if needed.\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "843684a24eb7b261461d8bc1aa723c23732ecb94",
      "tree": "4181cb682b768f7f73bfc7df1975349736296319",
      "parents": [
        "2be041a79bbdbb3c830f4cc3bc3387ba6fff7566"
      ],
      "author": {
        "name": "viro@ftp.linux.org.uk",
        "email": "viro@ftp.linux.org.uk",
        "time": "Mon Sep 05 03:26:13 2005 +0100"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Mon Sep 05 17:57:23 2005 -0400"
      },
      "message": "[PATCH] (6/7) missing include (ipw2200)\n\nadded missing include of dma-mapping.h\n\nSigned-off-by: Al Viro \u003cviro@parcelfarce.linux.theplanet.co.uk\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "2be041a79bbdbb3c830f4cc3bc3387ba6fff7566",
      "tree": "ed5046a687022c652a7420fbc60f33b465db6d3b",
      "parents": [
        "6cafa99f01ee355bf2590a45f0f7d236fe6bdca8"
      ],
      "author": {
        "name": "viro@ftp.linux.org.uk",
        "email": "viro@ftp.linux.org.uk",
        "time": "Mon Sep 05 03:26:08 2005 +0100"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Mon Sep 05 17:57:23 2005 -0400"
      },
      "message": "[PATCH] (5/7) iomem annotations, NULL noise removal (ipw2100)\n\nSigned-off-by: Al Viro \u003cviro@parcelfarce.linux.theplanet.co.uk\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "48467641bcc057f7cba3b6cbbe66cb834d64cc81",
      "tree": "f7c5c5e964c220de30fcdcd06b0f1efdb3e22439",
      "parents": [
        "3863e72414fa2ebf5f3b615d1bf99de32e59980a",
        "d70063c4634af060a5387337b7632f6334ca3458"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@evo.osdl.org",
        "time": "Mon Sep 05 00:11:50 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@evo.osdl.org",
        "time": "Mon Sep 05 00:11:50 2005 -0700"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6 \n"
    },
    {
      "commit": "583a4e88db1eadc52116e1f97b4519de655b2b80",
      "tree": "d86d570bd4c20227efe4d19429a1955580c040ad",
      "parents": [
        "ca078bae813dd46c0f9b102fdfb4a3384641ff48"
      ],
      "author": {
        "name": "Pavel Machek",
        "email": "pavel@ucw.cz",
        "time": "Sat Sep 03 15:56:58 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@evo.osdl.org",
        "time": "Mon Sep 05 00:06:16 2005 -0700"
      },
      "message": "[PATCH] fix pm_message_t stuff in -mm tree\n\nThis should bits from -mm tree that are affected by pm_message_t\nconversion.  [I\u0027m not 100% sure I got all of them, but I certainly got all\nthe errors on make allyesconfig build, and most of warnings, too.  I\u0027ll go\nthrough the buildlog tommorow and fix any remaining bits].\n\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "ca078bae813dd46c0f9b102fdfb4a3384641ff48",
      "tree": "e3348f5dcb24159a522941aa2e3ee40bc9e0589b",
      "parents": [
        "829ca9a30a2ddb727981d80fabdbff2ea86bc9ea"
      ],
      "author": {
        "name": "Pavel Machek",
        "email": "pavel@ucw.cz",
        "time": "Sat Sep 03 15:56:57 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@evo.osdl.org",
        "time": "Mon Sep 05 00:06:16 2005 -0700"
      },
      "message": "[PATCH] swsusp: switch pm_message_t to struct\n\nThis adds type-checking to pm_message_t, so that people can\u0027t confuse it\nwith int or u32.  It also allows us to fix \"disk yoyo\" during suspend (disk\nspinning down/up/down).\n\n[We\u0027ve tried that before; since that cpufreq problems were fixed and I\u0027ve\ntried make allyes config and fixed resulting damage.]\n\nSigned-off-by: Pavel Machek \u003cpavel@suse.cz\u003e\nSigned-off-by: Alexander Nyberg \u003calexn@telia.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "829ca9a30a2ddb727981d80fabdbff2ea86bc9ea",
      "tree": "044087fb18aa4b5f5bbd233f54f9eec3439ad6de",
      "parents": [
        "7e958883bced7e435f5a76349e15684858d3477c"
      ],
      "author": {
        "name": "Pavel Machek",
        "email": "pavel@ucw.cz",
        "time": "Sat Sep 03 15:56:56 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@evo.osdl.org",
        "time": "Mon Sep 05 00:06:15 2005 -0700"
      },
      "message": "[PATCH] swsusp: fix remaining u32 vs. pm_message_t confusion\n\nFix remaining bits of u32 vs.  pm_message confusion.  Should not break\nanything.\n\nSigned-off-by: Pavel Machek \u003cpavel@suse.cz\u003e\nSigned-off-by: Rafael J. Wysocki \u003crjw@sisk.pl\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "504be3aa095903895f9b99abfed40709ff5d1e62",
      "tree": "ec5fb715ed818dccd7089d35ac5ba560e6e0a2b5",
      "parents": [
        "ceeec3dc375e3b0618f16b34efc56fe093918f8b"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Sep 02 04:44:25 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Fri Sep 02 04:44:25 2005 -0400"
      },
      "message": "[wireless hostap] automatically select ieee80211 dependency in Kconfig\n"
    },
    {
      "commit": "573dbd95964b01a942aa0c68e92b06f2c9536964",
      "tree": "4ada5dff2a15e1ad1edee7294d6f0d3c260987d1",
      "parents": [
        "5170dbebbb2e9159cdf6bbf35e5d79cd7009799a"
      ],
      "author": {
        "name": "Jesper Juhl",
        "email": "jesper.juhl@gmail.com",
        "time": "Thu Sep 01 17:44:29 2005 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Thu Sep 01 17:44:29 2005 -0700"
      },
      "message": "[CRYPTO]: crypto_free_tfm() callers no longer need to check for NULL\n\nSince the patch to add a NULL short-circuit to crypto_free_tfm() went in,\nthere\u0027s no longer any need for callers of that function to check for NULL.\nThis patch removes the redundant NULL checks and also a few similar checks\nfor NULL before calls to kfree() that I ran into while doing the\ncrypto_free_tfm bits.\n\nI\u0027ve succesfuly compile tested this patch, and a kernel with the patch \napplied boots and runs just fine.\n\nWhen I posted the patch to LKML (and other lists/people on Cc) it drew the\nfollowing comments :\n\n J. Bruce Fields commented\n  \"I\u0027ve no problem with the auth_gss or nfsv4 bits.--b.\"\n\n Sridhar Samudrala said\n  \"sctp change looks fine.\"\n\n Herbert Xu signed off on the patch.\n\nSo, I guess this is ready to be dropped into -mm and eventually mainline.\n\nSigned-off-by: Jesper Juhl \u003cjesper.juhl@gmail.com\u003e\nSigned-off-by: Herbert Xu \u003cherbert@gondor.apana.org.au\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "eb6f1160ddb2fdadf50f350da79d0796c37f17e2",
      "tree": "e7b048b089b4b0ec9f121eea9a7f5864999dbac3",
      "parents": [
        "64baf3cfea974d2b9e671ccfdbc03e030ea5ebc6"
      ],
      "author": {
        "name": "Herbert Xu",
        "email": "herbert@gondor.apana.org.au",
        "time": "Thu Sep 01 17:43:25 2005 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Thu Sep 01 17:43:25 2005 -0700"
      },
      "message": "[CRYPTO]: Use CRYPTO_TFM_REQ_MAY_SLEEP where appropriate\n\nThis patch goes through the current users of the crypto layer and sets\nCRYPTO_TFM_REQ_MAY_SLEEP at crypto_alloc_tfm() where all crypto operations\nare performed in process context.\n\nSigned-off-by: Herbert Xu \u003cherbert@gondor.apana.org.au\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "ceeec3dc375e3b0618f16b34efc56fe093918f8b",
      "tree": "2293d02721ee05131aaf1c60e4fba7e281585eec",
      "parents": [
        "fbff868db3a4cc6a89d51da9a6d49b26c29d04fb",
        "e3ee3b78f83688a0ae4315e8be71b2eac559904a"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Sep 01 18:02:27 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Sep 01 18:02:27 2005 -0400"
      },
      "message": "/spare/repo/netdev-2.6 branch \u0027ieee80211\u0027\n"
    },
    {
      "commit": "e3ee3b78f83688a0ae4315e8be71b2eac559904a",
      "tree": "deb03bcdd020262af450ed23382d7c921263f5cf",
      "parents": [
        "91cb70c1769d9b72dd1efe40c31f01005820b09e",
        "6b39374a27eb4be7e9d82145ae270ba02ea90dc8"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Sep 01 18:02:01 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Sep 01 18:02:01 2005 -0400"
      },
      "message": "/spare/repo/netdev-2.6 branch \u0027master\u0027\n"
    },
    {
      "commit": "fbff868db3a4cc6a89d51da9a6d49b26c29d04fb",
      "tree": "3582ea805d0153b42979bdc8315c68607db928b6",
      "parents": [
        "a8eef8a22232e64be76410100c52038b21bda7ed"
      ],
      "author": {
        "name": "Jouni Malinen",
        "email": "jkmaline@cc.hut.fi",
        "time": "Sun Aug 28 17:53:32 2005 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Aug 31 22:48:39 2005 -0400"
      },
      "message": "[PATCH] hostap: Fix null pointer dereference in prism2_pccard_card_present()\n\nlocal-\u003ehw_priv was initialized only after the interrupt handler was\nregistered. This could trigger a NULL pointer dereference in\nprism2_pccard_card_present() that assumed that local-\u003ehw_priv is always\nset (and it should have been). Fix this by setting local-\u003ehw_priv before\nregistering the interrupt handler.\n\nSigned-off-by: Jouni Malinen \u003cjkmaline@cc.hut.fi\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "a8eef8a22232e64be76410100c52038b21bda7ed",
      "tree": "100c6e7d12bea013586d540b3d8ca27c451af049",
      "parents": [
        "6c5b90d2c84d557baed56e71729504b467ff3e5b"
      ],
      "author": {
        "name": "Kalle Valo",
        "email": "Kalle.Valo@iki.fi",
        "time": "Sun Aug 28 22:46:57 2005 +0300"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sun Aug 28 19:25:02 2005 -0400"
      },
      "message": "[PATCH] hostap: Fix null pointer dereference in prism2_pccard_card_present()\n\nWith my Buffalo WLI-CF-S11G PC Card kernel oopses every time in\nprism2_interrupt() when I try load the hostap module. local-\u003ehw_priv is null\nduring the first call to prism2_interrupt(). It feels like\ninterrupts are enabled too early, or something.\n\nThis patch fixes the symptom, but not the cause.\n\nSigned-off-by: Kalle Valo \u003cKalle.Valo@iki.fi\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "6c5b90d2c84d557baed56e71729504b467ff3e5b",
      "tree": "02d19e6dac3b340b3ef756e868b703bf50ecfeab",
      "parents": [
        "c6e3f95df7328479e2a454eedb5614eacbdb84ac"
      ],
      "author": {
        "name": "Jouni Malinen",
        "email": "jkmaline@cc.hut.fi",
        "time": "Sun Aug 28 10:51:36 2005 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sun Aug 28 19:25:02 2005 -0400"
      },
      "message": "[PATCH] hostap: Fix hash values for product strings\n\nhostap_cs: 0.4.1-kernel (Jouni Malinen \u003cjkmaline@cc.hut.fi\u003e)\npcmcia: hostap_cs: invalid hash for product string \"BUFFALO\": is 0x1b01a57b,\nshould be 0x2decece3\npcmcia: see Documentation/pcmcia/devicetable.txt for details\npcmcia: hostap_cs: invalid hash for product string \"WLI-CF-S11G\": is\n0xefd5102a, should be 0x82067c18\npcmcia: see Documentation/pcmcia/devicetable.txt for details\n\nThis patch fixes them.\n\nSigned-off-by: Kalle Valo \u003cKalle.Valo@iki.fi\u003e\nSigned-off-by: Jouni Malinen \u003cjkmaline@cc.hut.fi\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "c6e3f95df7328479e2a454eedb5614eacbdb84ac",
      "tree": "56f80ba621279be1dbcc414cbd4aea938efe05bc",
      "parents": [
        "fd67b0641118031a65d370f65bd80eef1982b45a"
      ],
      "author": {
        "name": "Jouni Malinen",
        "email": "jkmaline@cc.hut.fi",
        "time": "Sun Aug 28 10:51:35 2005 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sun Aug 28 19:25:02 2005 -0400"
      },
      "message": "[PATCH] hostap: Update version\n\nVersion 0.4.4 of Host AP driver was released, so let\u0027s sync the version\nnumber in netdev-2.6 tree.\n\nSigned-off-by: Jouni Malinen \u003cjkmaline@cc.hut.fi\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "831a179fc9387af6dbaa12816ae1e074d1f1a730",
      "tree": "efb3ea5fc390e7cefdaadb535dc166319ac6f69d",
      "parents": [
        "b4bf343093e81e33d75bede45896eda52cd5f2b4"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Aug 25 20:59:10 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Aug 25 20:59:10 2005 -0400"
      },
      "message": "hostap: s/IEEE80211_FCTL_WEP/IEEE80211_FCTL_PROTECTED/ to fix build\n"
    },
    {
      "commit": "b4bf343093e81e33d75bede45896eda52cd5f2b4",
      "tree": "7fd5ce5f428995e6d612014e3ca7ad3f917fcf65",
      "parents": [
        "343b0597297c3190647854881c087c01faf40a6f",
        "099c5bb169e9816a7761336f668b63010762807b"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Aug 25 20:31:13 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Aug 25 20:31:13 2005 -0400"
      },
      "message": "/spare/repo/netdev-2.6 branch \u0027ieee80211\u0027\n"
    },
    {
      "commit": "f13baae43e97e84d3f06080908db75a017c62165",
      "tree": "f1611a5418f2c9790d99017b1cd001fc3a065d0b",
      "parents": [
        "8d45ff7d7bd85d9066f5b498cda5c4a52ac36a7f"
      ],
      "author": {
        "name": "Jiri Benc",
        "email": "jbenc@suse.cz",
        "time": "Thu Aug 25 20:11:46 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Aug 25 20:11:46 2005 -0400"
      },
      "message": "ieee80211: new constants from latest 802.11x specifications\n\nFrom: Gertjan van Wingerde \u003cgwingerde@home.nl\u003e\n\nAttached patch updates the definitions of the generic ieee80211 stack to\nthe latest versions of the published 802.11x specification suite.\n\nSigned-off-by: Gertjan van Wingerde \u003cgwingerde@home.nl\u003e\nSigned-off-by: Jiri Benc \u003cjbenc@suse.cz\u003e\n"
    },
    {
      "commit": "8d45ff7d7bd85d9066f5b498cda5c4a52ac36a7f",
      "tree": "404fb9ba1a837bc9661bbbf45c3734adf3ef957a",
      "parents": [
        "771abed990d8642f289f733dc0fa8a395ab31ca1"
      ],
      "author": {
        "name": "Jiri Benc",
        "email": "jbenc@suse.cz",
        "time": "Thu Aug 25 20:09:39 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Aug 25 20:09:39 2005 -0400"
      },
      "message": "ipw2200: minor cleanups\n\nThis removes one trap for a programmer, few unused macros, and one\nunused struct.\n\nSigned-off-by: Pavel Machek \u003cpavel@suse.cz\u003e\nSigned-off-by: Jiri Benc \u003cjbenc@suse.cz\u003e\n"
    },
    {
      "commit": "771abed990d8642f289f733dc0fa8a395ab31ca1",
      "tree": "576836a8eb68aeb27741199e0a6f0a2382fdf85e",
      "parents": [
        "3ce329cec29b788bd5d9aaa446fd7ecdd4df64fe"
      ],
      "author": {
        "name": "Jiri Benc",
        "email": "jbenc@suse.cz",
        "time": "Thu Aug 25 20:08:22 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Aug 25 20:08:22 2005 -0400"
      },
      "message": "This removes support for old (and non-mainline) kernels from ipw2200.\n\nSigned-off-by: Pavel Machek \u003cpavel@suse.cz\u003e\nSigned-off-by: Jiri Benc \u003cjbenc@suse.cz\u003e\n"
    },
    {
      "commit": "3ce329cec29b788bd5d9aaa446fd7ecdd4df64fe",
      "tree": "8f31ce7cd3da75ad255c1bedc2a16dee75dc21af",
      "parents": [
        "53788015c736b9957448aebd7b7c286da217ee51"
      ],
      "author": {
        "name": "Jiri Benc",
        "email": "jbenc@suse.cz",
        "time": "Thu Aug 25 20:07:01 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Aug 25 20:07:01 2005 -0400"
      },
      "message": "ipw2100: interface-up carrier state fix\n\nFrom: Imre Deak \u003cimre.deak@nokia.com\u003e\n\nI had a problem where doing an open after a close left the device\nunusable. netif_carrier_on should be called whenever we go to the\nassociated state, but this is not so in case of a close-\u003eopen sequence.\n\nSigned-off-by: Jiri Benc \u003cjbenc@suse.cz\u003e\n"
    },
    {
      "commit": "53788015c736b9957448aebd7b7c286da217ee51",
      "tree": "8a86bf1e50bf971f2515faeaa9320e17548a4810",
      "parents": [
        "c4aee8c21ff5d8d6f9a27112468f5e840d5ced1b"
      ],
      "author": {
        "name": "Jiri Benc",
        "email": "jbenc@suse.cz",
        "time": "Thu Aug 25 20:05:45 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Aug 25 20:05:45 2005 -0400"
      },
      "message": "ipw2100: Fix incorrectly named config option.\n\nSigned-off-by: Jiri Benc \u003cjbenc@suse.cz\u003e\nSigned-off-by: Jirka Bohac \u003cjbohac@suse.cz\u003e\n"
    },
    {
      "commit": "c4aee8c21ff5d8d6f9a27112468f5e840d5ced1b",
      "tree": "8bbd4c06bcbcb94083b6424dcd592f7245833e89",
      "parents": [
        "797b4f7652a4dcf06bdf6a8c870991acdf56c03d"
      ],
      "author": {
        "name": "Jiri Benc",
        "email": "jbenc@suse.cz",
        "time": "Thu Aug 25 20:04:43 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Aug 25 20:04:43 2005 -0400"
      },
      "message": "ipw2100: minor cleanups\n\nFrom: Adrian Bunk \u003cbunk@stusta.de\u003e\n\nThis patch contains the following possible cleanups:\n- make needlessly global code static\n- remove the unused IPW_DEBUG_ENABLED\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nSigned-off-by: Jiri Benc \u003cjbenc@suse.cz\u003e\n"
    },
    {
      "commit": "797b4f7652a4dcf06bdf6a8c870991acdf56c03d",
      "tree": "8f948ed3592fe9e4f726955f4d1e217af00622a7",
      "parents": [
        "19f7f74297e7f88f60c183acb105a5488dd189b6"
      ],
      "author": {
        "name": "Jiri Benc",
        "email": "jbenc@suse.cz",
        "time": "Thu Aug 25 20:03:27 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Aug 25 20:03:27 2005 -0400"
      },
      "message": "ipw2100: remove custom debug-print macros\n\nFrom: Pavel Machek \u003cpavel@ucw.cz\u003e\n\nipw2100 uses custom debug prints that are sometimes longer and always\nharder to read than normal printk. They also introduced some bugs where\nprefix is printed twice.\n\nSigned-off-by: Pavel Machek \u003cpavel@suse.cz\u003e\nSigned-off-by: Jiri Benc \u003cjbenc@suse.cz\u003e\n"
    },
    {
      "commit": "19f7f74297e7f88f60c183acb105a5488dd189b6",
      "tree": "bda720299a5212d3da8d23017fbf54c92c0bd527",
      "parents": [
        "e88187eedc0a9223914b23b063342db8bcc31f9c"
      ],
      "author": {
        "name": "Jiri Benc",
        "email": "jbenc@suse.cz",
        "time": "Thu Aug 25 20:02:10 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Thu Aug 25 20:02:10 2005 -0400"
      },
      "message": "ipw2100: remove strange symbol prefixes\n\nFrom: Pavel Machek \u003cpavel@ucw.cz\u003e\n\nipw2100 uses strange X__ prefixes even for symbols already prefixed\nby ipw2100. Fixed.\n\nSigned-off-by: Pavel Machek \u003cpavel@suse.cz\u003e\nSigned-off-by: Jiri Benc \u003cjbenc@suse.cz\u003e\n"
    },
    {
      "commit": "75a95178dafb5c8d69b4abe45ea746a9cea23142",
      "tree": "1dbf80c83d9521dcdebc9e670f48da6c1ba34187",
      "parents": [
        "8531c5ffbca65f6df868637c26e6df6f88bff738",
        "0572e3da3ff5c3744b2f606ecf296d5f89a4bbdf"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Aug 24 01:03:34 2005 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Wed Aug 24 01:03:34 2005 -0400"
      },
      "message": "Merge upstream into \u0027upstream\u0027 branch of netdev-2.6.git.\n\nHand fix merge conflict in drivers/net/tokenring/Kconfig.\n"
    }
  ],
  "next": "343b0597297c3190647854881c087c01faf40a6f"
}
