)]}'
{
  "log": [
    {
      "commit": "a3673d3cd1cdeec6b503ffa418ca2d5aeff82fd7",
      "tree": "e68c34bc9fe633afa557b0f3153b0c61df6a2ae3",
      "parents": [
        "9b0e54addf3ea8488c7b57166fb38feeb8ea28fd"
      ],
      "author": {
        "name": "Duncan Sands",
        "email": "baldrick@free.fr",
        "time": "Fri Jan 13 11:12:58 2006 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:40 2006 -0800"
      },
      "message": "[PATCH] USBATM: -EILSEQ workaround\n\nDon\u0027t throttle on -EILSEQ urb status if requested by a minidriver.\nIt seems the ueagle modems are buggy, giving -EILSEQ when they\nhave no data to send.  The ueagle change will be sent separately\nby the ueagle guys.  Patch by Matthieu Castet.\n\nSigned-off-by: Duncan Sands \u003cbaldrick@free.fr\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "9b0e54addf3ea8488c7b57166fb38feeb8ea28fd",
      "tree": "9cea6021b69b47c71f284dd8a58cdea2568c1149",
      "parents": [
        "e3fb2f641f421662ebda48763f2f03cb9bd29e82"
      ],
      "author": {
        "name": "Duncan Sands",
        "email": "baldrick@free.fr",
        "time": "Fri Jan 13 11:08:05 2006 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:40 2006 -0800"
      },
      "message": "[PATCH] USBATM: bump version numbers\n\nSigned-off-by: Duncan Sands \u003cbaldrick@free.fr\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "e3fb2f641f421662ebda48763f2f03cb9bd29e82",
      "tree": "2511087a08a177c27bf28207f3ab05ac3093b85d",
      "parents": [
        "80aae7a17afd21f7ba900dd566fb23a2444021f8"
      ],
      "author": {
        "name": "Duncan Sands",
        "email": "baldrick@free.fr",
        "time": "Fri Jan 13 11:06:46 2006 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:40 2006 -0800"
      },
      "message": "[PATCH] USBATM: handle urbs containing partial cells\n\nThe receive logic has always assumed that urbs contain an integral\nnumber of ATM cells, which is a bit naughty, though it never caused\nany problems with bulk transfers.  Isochronous urbs spank us soundly\nfor this.  Fixed thanks to this patch, mostly by Stanislaw Gruszka.\n\nSigned-off-by: Duncan Sands \u003cbaldrick@free.fr\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "80aae7a17afd21f7ba900dd566fb23a2444021f8",
      "tree": "2193fe416373daddbc2b1da8bca61664081b927b",
      "parents": [
        "6f7494759870ec6fbb066f7202c5585fe36fbe82"
      ],
      "author": {
        "name": "Duncan Sands",
        "email": "baldrick@free.fr",
        "time": "Fri Jan 13 10:59:23 2006 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:40 2006 -0800"
      },
      "message": "[PATCH] USBATM: allow isochronous transfer\n\nWhile the usbatm core has had some support for using isoc urbs\nfor some time, there was no way for users to turn it on.  While\nuse of isoc transfer should still be considered experimental, it\nnow works well enough to let users turn it on.  Minidrivers signal\nto the core that they want to use isoc transfer by setting the new\nUDSL_USE_ISOC flag.  The speedtch minidriver gets a new module\nparameter enable_isoc (defaults to false), plus some logic that\nchecks for the existence of an isoc receive endpoint (not all\nspeedtouch modems have one).\n\nSigned-off-by: Duncan Sands \u003cbaldrick@free.fr\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "6f7494759870ec6fbb066f7202c5585fe36fbe82",
      "tree": "1fcff14ece062fefba2712b55ab4bddd05866425",
      "parents": [
        "227d77611b31df5d9afa572b984f73640f54d490"
      ],
      "author": {
        "name": "Duncan Sands",
        "email": "baldrick@free.fr",
        "time": "Fri Jan 13 10:52:38 2006 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:40 2006 -0800"
      },
      "message": "[PATCH] USBATM: measure buffer size in bytes; force valid sizes\n\nChange the module parameters rcv_buf_size and snd_buf_size to\nspecify buffer sizes in bytes rather than ATM cells.  Since\nthere is some danger that users may not notice this change,\nthe parameters are renamed to rcv_buf_bytes etc.  The transmit\nbuffer needs to be a multiple of the ATM cell size in length,\nwhile the receive buffer should be a multiple of the endpoint\nmaxpacket size (this wasn\u0027t enforced before, which causes trouble\nwith isochronous transfers), so enforce these restrictions.  Now\nthat the usbatm probe method inspects the endpoint maxpacket size,\nminidriver bind routines need to set the correct alternate setting\nfor the interface in their bind routine.  This is the reason for\nthe speedtch changes.\n\nSigned-off-by: Duncan Sands \u003cbaldrick@free.fr\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "227d77611b31df5d9afa572b984f73640f54d490",
      "tree": "a66c12baab626a88e14705b934c239fdc00dad46",
      "parents": [
        "72ef8ab43f5a82e9e2dea247702bf433d6509f87"
      ],
      "author": {
        "name": "Duncan Sands",
        "email": "baldrick@free.fr",
        "time": "Fri Jan 13 10:13:19 2006 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:40 2006 -0800"
      },
      "message": "[PATCH] USBATM: use dev_kfree_skb_any rather than dev_kfree_skb\n\nIn one spot (usbatm_cancel_send) we were calling dev_kfree_skb with irqs\ndisabled.  This mistake is just too easy to make, so systematically use\ndev_kfree_skb_any rather than dev_kfree_skb.\n\nSigned-off-by: Duncan Sands \u003cbaldrick@free.fr\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "72ef8ab43f5a82e9e2dea247702bf433d6509f87",
      "tree": "3bd0837a41fa63747fcda1d7f678abe47398f937",
      "parents": [
        "0e42a627ec3d8defa0c43cff94b8f2080a070716"
      ],
      "author": {
        "name": "Duncan Sands",
        "email": "baldrick@free.fr",
        "time": "Fri Jan 13 10:07:08 2006 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:39 2006 -0800"
      },
      "message": "[PATCH] USBATM: return correct error code when out of memory\n\nWe weren\u0027t always returning -ENOMEM.\n\nSigned-off-by: Duncan Sands \u003cbaldrick@free.fr\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "0e42a627ec3d8defa0c43cff94b8f2080a070716",
      "tree": "5b22c24b224de444ddc6fd9b874a86624d41c227",
      "parents": [
        "233c08e0ff303e659a9003d49b15608f59f08a64"
      ],
      "author": {
        "name": "Duncan Sands",
        "email": "baldrick@free.fr",
        "time": "Fri Jan 13 10:05:15 2006 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:39 2006 -0800"
      },
      "message": "[PATCH] USBATM: shutdown open connections when disconnected\n\nThis patch causes vcc_release_async to be applied to any open\nvcc\u0027s when the modem is disconnected.  This signals a socket\nshutdown, letting the socket user know that the game is up.\nI wrote this patch because of reports that pppd would keep\nconnections open forever when the modem is disconnected.\nThis patch does not fix that problem, but it\u0027s a step in the\nright direction.  It doesn\u0027t help because the pppoatm module\ndoesn\u0027t yet monitor state changes on the ATM socket, so simply\nnever realises that the ATM connection has gone down (meaning\nit doesn\u0027t tell the ppp layer).  But at least there is a socket\nstate change now.  Unfortunately this patch may create problems\nfor those rare users like me who use routed IP or some other\nnon-ppp connection method that goes via the ATM ARP daemon: the\ndaemon is buggy, and with this patch will crash when the modem\nis disconnected.  Users with a buggy atmarpd can simply restart\nit after disconnecting the modem.\n\nSigned-off-by: Duncan Sands \u003cbaldrick@free.fr\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "233c08e0ff303e659a9003d49b15608f59f08a64",
      "tree": "a670a0a07e11aac6f72f2ed3fe0a6996dc3e9327",
      "parents": [
        "9a734efec36c991a74610c6c81d28d4222e1c02b"
      ],
      "author": {
        "name": "Duncan Sands",
        "email": "baldrick@free.fr",
        "time": "Fri Jan 13 09:48:36 2006 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:39 2006 -0800"
      },
      "message": "[PATCH] USBATM: xusbatm rewrite\n\nThe xusbatm driver is for otherwise unsupported modems.\nAll it does is grab hold of a user-specified set of\ninterfaces - the generic usbatm core methods (hopefully)\ndo the rest.  As Aurelio Arroyo discovered when he tried\nto use xusbatm (big mistake!), the interface grabbing logic\nwas completely borked.  Here is a rewrite that works.\n\nSigned-off-by:\tDuncan Sands \u003cbaldrick@free.fr\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "9a734efec36c991a74610c6c81d28d4222e1c02b",
      "tree": "22af3801a3dc494085cd9e3218876320121a9986",
      "parents": [
        "0dfcd3e4444e88285ee7c199d0cbda21551d8c5d"
      ],
      "author": {
        "name": "Duncan Sands",
        "email": "baldrick@free.fr",
        "time": "Fri Jan 13 09:38:22 2006 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:39 2006 -0800"
      },
      "message": "[PATCH] USBATM: kzalloc conversion\n\nConvert kmalloc + memset to kzalloc.\n\nSigned-off-by: Duncan Sands \u003cbaldrick@free.fr\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "0dfcd3e4444e88285ee7c199d0cbda21551d8c5d",
      "tree": "9f2022f47e3711479f672ee7a7ea6224ebac0545",
      "parents": [
        "35644b0cce0ab8735944dcbfceb19e9e65da9a3d"
      ],
      "author": {
        "name": "Duncan Sands",
        "email": "baldrick@free.fr",
        "time": "Fri Jan 13 09:36:20 2006 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:39 2006 -0800"
      },
      "message": "[PATCH] USBATM: remove .owner\n\nRemove the unused .owner field in struct usbatm_driver.\n\nSigned-off-by: Duncan Sands \u003cbaldrick@free.fr\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "35644b0cce0ab8735944dcbfceb19e9e65da9a3d",
      "tree": "caa13c8519c7417fa0adf173cec98b994745c79f",
      "parents": [
        "0ec3c7e856319b600311750d784262caa8ed94b9"
      ],
      "author": {
        "name": "Duncan Sands",
        "email": "baldrick@free.fr",
        "time": "Tue Jan 17 11:16:13 2006 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:39 2006 -0800"
      },
      "message": "[PATCH] USBATM: add flags field\n\nHave minidrivers and the core signal special requirements\nusing a flags field in struct usbatm_data.  For the moment\nthis is only used to replace the need_heavy_init bind\nparameter, but there\u0027ll be new flags in later patches.\n\nSigned-off-by: Duncan Sands \u003cbaldrick@free.fr\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "0ec3c7e856319b600311750d784262caa8ed94b9",
      "tree": "86d0b3aa9105a8b92bbfc514c5964c9abe7da0e7",
      "parents": [
        "7ce08c93e388922e25a96a7d9895784182e4c72c"
      ],
      "author": {
        "name": "Duncan Sands",
        "email": "baldrick@free.fr",
        "time": "Tue Jan 17 11:15:13 2006 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:39 2006 -0800"
      },
      "message": "[PATCH] USBATM: trivial modifications\n\nFormatting, changes to variable names, comments, log level changes,\nprintk rate limiting.\n\nSigned-off-by:\tDuncan Sands \u003cbaldrick@free.fr\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "7ce08c93e388922e25a96a7d9895784182e4c72c",
      "tree": "a76883260255bd2d287dd9b5358e56cdddd11158",
      "parents": [
        "cd6fcc555fe278263880abdb93352ab205099db9"
      ],
      "author": {
        "name": "Luca Risolia",
        "email": "luca.risolia@studio.unibo.it",
        "time": "Wed Jan 11 02:06:59 2006 +0000"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:39 2006 -0800"
      },
      "message": "[PATCH] USB: Add ET61X[12]51 Video4Linux2 driver\n\nThis patch adds a Video4Linux2 driver giving support\nto ET61X151 and ET61X251 PC Camera Controllers made by\nEtoms Electronics.\n\nSigned-off-by: Luca Risolia \u003cluca.risolia@studio.unibo.it\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "cd6fcc555fe278263880abdb93352ab205099db9",
      "tree": "de09c1d3183ed41c1eef653d90a29a03370b2128",
      "parents": [
        "e988fc8a56bb3f76624dd7b0fb13ae3eaccefa59"
      ],
      "author": {
        "name": "Luca Risolia",
        "email": "luca.risolia@studio.unibo.it",
        "time": "Fri Jan 13 17:19:43 2006 +0000"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:38 2006 -0800"
      },
      "message": "[PATCH] USB: SN9C10x driver updates\n\nSN9C10x driver updates:\n\n- Use kzalloc() instead of kmalloc()\n- Move some macro definitions from sn9c102.h to sn9c102_core.c\n- Use vfree() and vmalloc_32() instead of rvfree() and rvmalloc()\n- Fix mmap() sys call\n- Documentation updates\n\nSigned-off-by: Luca Risolia \u003cluca.risolia@studio.unibo.it\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "e988fc8a56bb3f76624dd7b0fb13ae3eaccefa59",
      "tree": "1a2379f657f2d24d173d83fa9b75bbf86fcda056",
      "parents": [
        "6cceb05f8df6e28ab90f44bdeba50d33928cdee5"
      ],
      "author": {
        "name": "Craig Shelley",
        "email": "craig@microtron.org.uk",
        "time": "Fri Jan 20 00:06:19 2006 +0000"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:38 2006 -0800"
      },
      "message": "[PATCH] USB: cp2101 Add new device IDs\n\nThe attached patch adds four new device IDs for the CP2101 driver.\nAlso 3 tab characters have been removed from device ID table.\n\nSigned-off-by: Craig Shelley \u003ccraig@microtron.org.uk\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "6cceb05f8df6e28ab90f44bdeba50d33928cdee5",
      "tree": "8516cd5bbecb10ff06c9d04bdf71b828b526f208",
      "parents": [
        "838b42814c640ddcc378ba29cd31ffd64fb36bc5"
      ],
      "author": {
        "name": "Denis MONTERRAT",
        "email": "denis.monterrat@sagem.com",
        "time": "Thu Jan 19 14:52:38 2006 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:38 2006 -0800"
      },
      "message": "[PATCH] USB: add new pl2303 device ids\n\nSigned-off-by: FALIPOU F Developer \u003cfred.falipou@free.fr\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "838b42814c640ddcc378ba29cd31ffd64fb36bc5",
      "tree": "927d8a8b13463c6d9a9d5573f80e6eec4b76cda5",
      "parents": [
        "a001100d8e4bf8ad98663d3ec1b91e4161267937"
      ],
      "author": {
        "name": "Martin Gingras",
        "email": "martin.gingras@gmail.com",
        "time": "Mon Jan 09 12:35:41 2006 -0500"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:38 2006 -0800"
      },
      "message": "[PATCH] USB: pl2303: Added support for CA-42 clone cable\n\nAdded support for CA-42 clone cable (www.ca-42.com)\n\nSigned-off-by: Martin Gingras \u003cmartin.gingras@gmail.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "a001100d8e4bf8ad98663d3ec1b91e4161267937",
      "tree": "54f3ad162aab15953936da1a0703a6b220702b90",
      "parents": [
        "5732ce8424527ec271e8fa43709948852aa3fc0a"
      ],
      "author": {
        "name": "Juergen Schindele",
        "email": "schindele@nentec.de",
        "time": "Mon Jan 09 08:51:48 2006 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:38 2006 -0800"
      },
      "message": "[PATCH] USB: touchkitusb.c (eGalax driver) fix\n\nThis patch corrects the URB initialisation for transfers\nlike this is done in other drivers too.\nWithout this patch no data was transmitted on a PXA270 OHCI\nplatform. May apply to others too.\n\nSigned-off-by: Juergen Schindele \u003cschindele@nentec.de\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "5732ce8424527ec271e8fa43709948852aa3fc0a",
      "tree": "4bd7f624812c0ac549d2d9ff41971575e443e50a",
      "parents": [
        "a966f3e7512084f916049579067f532908ba3a49"
      ],
      "author": {
        "name": "David Hollis",
        "email": "dhollis@davehollis.com",
        "time": "Thu Jan 05 14:39:49 2006 -0500"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:38 2006 -0800"
      },
      "message": "[PATCH] USB: asix - Add device IDs for 0G0 Cable Ethernet\n\nAdd device IDs for the 0G0 Cable Ethernet device as reported by\nCharles Lepple \u003cclepple@gmail.com\u003e.\n\nSigned-off-by: David Hollis \u003cdhollis@davehollis.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "a966f3e7512084f916049579067f532908ba3a49",
      "tree": "adc4bc3a3b781f4ebc8b169a286f8e60ab3e7e32",
      "parents": [
        "ec7dc8d254985dc4a31858c2c7c7029290e223dd"
      ],
      "author": {
        "name": "Luca Risolia",
        "email": "luca.risolia@studio.unibo.it",
        "time": "Thu Jan 05 18:14:04 2006 +0000"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:38 2006 -0800"
      },
      "message": "[PATCH] USB: SN9C10x driver updates and bugfixes\n\nSN9C10x driver updates and bugfixes.\n\nChanges: + new, - removed, * cleanup, @ bugfix:\n\n@ fix poll()\n@ Remove bad get_ctrl()\u0027s\n* Reduce ioctl stack usage\n* Remove final \";\" from some macro definitions\n* Better support for SN9C103\n+ Add sn9c102_write_regs()\n+ Add 0x0c45/0x602d to the list of SN9C10x based devices\n+ Add support for OV7630 image sensors\n+ Provide support for the built-in microphone interface of the SN9C103\n+ Documentation updates\n+ Add 0x0c45/0x602e to the list of SN9C10x based devices\n\nSigned-off-by: Luca Risolia \u003cluca.risolia@studio.unibo.it\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "ec7dc8d254985dc4a31858c2c7c7029290e223dd",
      "tree": "c35d9d8e2eec394e9087e3cb9ea26c28b503a787",
      "parents": [
        "86067eead5a6c6fa413ef5cb59f7129f5ed80292"
      ],
      "author": {
        "name": "Alexandre Duret-Lutz",
        "email": "adl@gnu.org",
        "time": "Mon Dec 26 23:04:24 2005 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:37 2006 -0800"
      },
      "message": "[PATCH] USB: usb-storage support for SONY DSC-T5 still camera\n\nI\u0027ve been offered a nice Sony DSC-T5 digital camera, with a USB connection.\nUnfortunately it is not recognized by Linux 2.6.14.4\u0027s usb-storage.\n\nWith the following change I\u0027m able to mount and read my pictures:\n\nSigned-off-by: Phil Dibowitz \u003cphil@ipom.com\u003e\n"
    },
    {
      "commit": "86067eead5a6c6fa413ef5cb59f7129f5ed80292",
      "tree": "4861c4ce892c0485beb1810aa346f18833dd9b85",
      "parents": [
        "8e695cdbffe66f5d3142a363f47053be9f83a90d"
      ],
      "author": {
        "name": "Oliver Neukum",
        "email": "oliver@neukum.org",
        "time": "Sun Jan 08 12:39:13 2006 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:37 2006 -0800"
      },
      "message": "[PATCH] USB: fix oops in acm disconnect\n\nthis fixes an oops with disconnection in acm.\n\nSigned-off-by: Oliver Neukum \u003coliver@neukum.name\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "8e695cdbffe66f5d3142a363f47053be9f83a90d",
      "tree": "5bca03e23ce1a6ba89ac90da202958fb19881095",
      "parents": [
        "abb02fdf83f981f2511b3772db6e106845c70ad9"
      ],
      "author": {
        "name": "Oliver Neukum",
        "email": "neukum@fachschaft.cup.uni-muenchen.de",
        "time": "Sat Jan 07 21:35:20 2006 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:37 2006 -0800"
      },
      "message": "[PATCH] USB: cleanup of usblp\n\nthis fixes\n-potential hang by disconnecting through usbfs\n-kzalloc\n-general cleanup\n-micro optimisation in interrupt handlers\n\nIt compiles and I am printing.\n\nSigned-off-by: Oliver Neukum \u003coliver@neukum.name\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "abb02fdf83f981f2511b3772db6e106845c70ad9",
      "tree": "8106d93df3965f80914b30057c14cb3048c1098e",
      "parents": [
        "8e2ce4f92a0f34e8c3316ec58fd6eb6aa282448e"
      ],
      "author": {
        "name": "Matthew Dharm",
        "email": "mdharm-usb@one-eyed-alien.net",
        "time": "Fri Dec 30 19:06:53 2005 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:37 2006 -0800"
      },
      "message": "[PATCH] USB: usb-storage: Add support for Rio Karma\n\nThis patch from Bob Copeland adds support for the Rio Karma portable\ndigital audio player to the usb-storage driver.  The only thing needed to\nsupport this device is a one-time (per plugin) init command which is sent\nto the device.\n\nSigned-off-by: Bob Copeland \u003cme@bobcopeland.com\u003e\nSigned-off-by: Matthew Dharm \u003cmdharm-usb@one-eyed-alien.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "8e2ce4f92a0f34e8c3316ec58fd6eb6aa282448e",
      "tree": "cbb996b43ecc036d69d32bbdcf61e607c9dc676f",
      "parents": [
        "09c280a24650ff74e713742e94120fdf7765cda8"
      ],
      "author": {
        "name": "Henk",
        "email": "Henk.Vergonet@gmail.com",
        "time": "Fri Dec 30 19:41:11 2005 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:37 2006 -0800"
      },
      "message": "[PATCH] drivers/usb/input/yealink.c: Cleanup device matching code\n\nThis should fix things mentioned below:\n\n\t\"I was curious why my firewall was loading a \u0027phone driver\u0027.\n\tIt turns out that the probing in the yealink driver is\n\ta little too assuming..\n\n\tstatic struct usb_device_id usb_table [] \u003d {\n\t    { USB_INTERFACE_INFO(USB_CLASS_HID, 0, 0) },\n\t    { }\n\t};\n\n\tSo it picked up my UPS, and loaded the driver.\n\tWhilst no harm came, because it later checks the vendor/product IDs,\n\tthis driver should probably be rewritten to only probe\n\tfor the device IDs it actually knows about.\n\n\tDave\"\n\nSigned-off-by: Henk Vergonet \u003chenk.vergonet@gmail.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "09c280a24650ff74e713742e94120fdf7765cda8",
      "tree": "4b6bbeac3b24adeaee6fc85392f4ab7a0648d3fb",
      "parents": [
        "ce40d290c111c3d418ef444f82c349de134a0a74"
      ],
      "author": {
        "name": "Rui Santos",
        "email": "rsantos@grupopie.com",
        "time": "Mon Jan 09 13:12:40 2006 +0000"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:37 2006 -0800"
      },
      "message": "[PATCH] USB: ftdi: Two new ATIK based USB astronomical CCD cameras\n\nDocumentation: Specify grayscale specification on ATIK-ATK16\n   and ATIK-ATK16HR comments.\nNew: Add ProductID and VendorID for devices ATIK-ATK16C and\n   ATIK-ATK16HRC. These devices are also USB Astronomical CCD\n   cameras that work through an FTDI 245BM chip, share the\n   same base hardware but, it has a colour CCD chip instead\n   of a grayscale one.\n\nSigned-off-by: Rui Santos \u003crsantos@grupopie.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "ce40d290c111c3d418ef444f82c349de134a0a74",
      "tree": "21710f30e3b069c63d8312d25c1aff3425671941",
      "parents": [
        "a94b52ac84828e193d18c96c1334c9997b524a35"
      ],
      "author": {
        "name": "Wouter Paesen",
        "email": "wouter@kangaroot.net",
        "time": "Tue Jan 03 14:30:31 2006 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:36 2006 -0800"
      },
      "message": "[PATCH] USB: ftdi_sio: new PID for PCDJ DAC2\n\nThe attached patch adds a new PID for the ftdi_sio driver.  It will\nenable support for PC-DJ\u0027s DAC-2 controller module\n(more information on http://www.pcdjhardware.com/DAC2.asp)\n\nSigned-off-by: Wouter Paesen \u003cwouter@kangaroot.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "a94b52ac84828e193d18c96c1334c9997b524a35",
      "tree": "868599cb962d29b2aa07fcf895dbcbbf85c80c94",
      "parents": [
        "641adaaee18aacc4f4ba77850c2257373f1736d1"
      ],
      "author": {
        "name": "Ian Abbott",
        "email": "abbotti@mev.co.uk",
        "time": "Mon Jan 09 17:11:40 2006 +0000"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:36 2006 -0800"
      },
      "message": "[PATCH] USB: ftdi_sio: new IDs for Westrex devices\n\nThis patch adds two new devices to the ftdi_sio driver\u0027s device ID\ntable.  The device IDs were supplied by Cory Lee to support two POS\nprinters made by Westrex International (Model 777 and Model 8900F).\n\nSigned-off-by: Ian Abbott \u003cabbotti@mev.co.uk\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "641adaaee18aacc4f4ba77850c2257373f1736d1",
      "tree": "556ff6b8aea5b247f10d27be4e74f3f32621faff",
      "parents": [
        "2c2e4a2e07f4c16486dd2ac859eb9c558b1c9935"
      ],
      "author": {
        "name": "Louis Nyffenegger",
        "email": "louis.nyffenegger@gmail.com",
        "time": "Thu Jan 05 17:20:37 2006 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:36 2006 -0800"
      },
      "message": "[PATCH] USB: new id for ftdi_sio.c and ftdi_sio.h\n\nthis patch includes the Vendor Id for a optic fiber to USB device named\nTTUSB from thought Technology. It\u0027s just add the vendor Id to\nftdi_sio.h and add the Vendor ID and model Id to table_combined.\n\nSigned-off-by: Louis Nyffenegger \u003clouis.nyffenegger@gmail.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "2c2e4a2e07f4c16486dd2ac859eb9c558b1c9935",
      "tree": "c336fc942fbcc203d3f302f4c82896d409d25085",
      "parents": [
        "b31f821c6dee6f3ecfca6b2583a6552538fb91bf"
      ],
      "author": {
        "name": "Pete Zaitcev",
        "email": "zaitcev@redhat.com",
        "time": "Thu Jan 05 00:26:30 2006 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:36 2006 -0800"
      },
      "message": "[PATCH] USB: ub 05 Bulk reset\n\nFor crying out loud, they have devices which do not like port resets.\nSo, do what usb-storage does and try both bulk and port resets.\nWe start with a port reset (which usb-storage does at the end of transport),\nthen do a Bulk reset, then a port reset again. This seems to work for me.\n\nThe code is getting dirtier and dirtier here, but I swear that I\u0027ll\ndo something about it (see those two new XXX). Honest.\n\nSigned-off-by: Pete Zaitcev \u003czaitcev@redhat.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "b31f821c6dee6f3ecfca6b2583a6552538fb91bf",
      "tree": "3305511c230623ccd4fb1c766c57585479644cc6",
      "parents": [
        "65b4fe553bf43018c06740f3d1f6caf42cf95924"
      ],
      "author": {
        "name": "Pete Zaitcev",
        "email": "zaitcev@redhat.com",
        "time": "Thu Jan 05 00:14:02 2006 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:36 2006 -0800"
      },
      "message": "[PATCH] USB: ub 04 Loss of timer and a hang\n\nIf SCSI commands are submitted while other commands are still processed,\nthe dispatch loop turns, and we stop the work_timer. Then, if URB fails\nto complete, ub hangs until the device is unplugged.\n\nThis does not happen often, becase we only allow one SCSI command per\nblock device, but does happen (on multi-LUN devices, for example).\n\nThe fix is to stop timer only when we actually going to change the state.\n\nThe nicest code would be to have the timer stopped in URB callback, but\nthis is impossible, because it can be called from inside a timer, through\nthe urb_unlink. Then we get BUG in timer.c:cascade(). So, we do it a\nlittle dirtier.\n\nSigned-off-by: Pete Zaitcev \u003czaitcev@redhat.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "65b4fe553bf43018c06740f3d1f6caf42cf95924",
      "tree": "54a95a1a762501307f0b764612eb6b68894c9eb6",
      "parents": [
        "b6daf7f50836c8ed12d8b0ec0113e415f04e8530"
      ],
      "author": {
        "name": "Pete Zaitcev",
        "email": "zaitcev@redhat.com",
        "time": "Wed Dec 28 14:22:17 2005 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:36 2006 -0800"
      },
      "message": "[PATCH] USB: ub 03 Oops with CFQ\n\nThe blk_cleanup_queue does not necesserily destroy the queue. When we\ndestroy the corresponding ub_dev, it may leave the queue spinlock pointer\ndangling.\n\nThis patch moves spinlocks from ub_dev to static memory. The locking\nscheme is not changed. These spinlocks are still separate from the ub_lock.\n\nSigned-off-by: Pete Zaitcev \u003czaitcev@redhat.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "b6daf7f50836c8ed12d8b0ec0113e415f04e8530",
      "tree": "27e473633e83087a994b44761b27847f1e8a8cfa",
      "parents": [
        "401feafa621ba98ecaeed5db1a53ab878943c225"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Tue Jan 24 17:42:24 2006 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:36 2006 -0800"
      },
      "message": "[PATCH] USB: fix ehci early handoff issues warning\n\nCc: David Brownell \u003cdavid-b@pacbell.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "401feafa621ba98ecaeed5db1a53ab878943c225",
      "tree": "225ffa420c626ca5c4525a96f476706cd95f8933",
      "parents": [
        "3fa97c9db4f6f93f41f7a40d08872dbfd8dc907e"
      ],
      "author": {
        "name": "David Brownell",
        "email": "david-b@pacbell.net",
        "time": "Tue Jan 24 07:15:30 2006 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Jan 31 17:23:35 2006 -0800"
      },
      "message": "[PATCH] USB: fix EHCI early handoff issues\n\nThis moves the previously widely-used ehci-pci.c BIOS handoff\ncode into the pci-quirks.c file, replacing the less widely used\n\"early handoff\" version that seems to cause problems lately.\n\nOne notable change:  the \"early handoff\" version always enabled\nan SMI IRQ ... and did so even if the pre-Linux code said it was\nnot using EHCI (and not expecting EHCI SMIs).  Looks like a goof\nin a workaround for some unknown BIOS version.\n\nThis merged version only forcibly enables those IRQs when pre-Linux\ncode says it\u0027s using EHCI.  And now it always forces them off \"just\nin case\".\n\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "3fa97c9db4f6f93f41f7a40d08872dbfd8dc907e",
      "tree": "6a71aea65a6854f6ab16dc2f8cadf885f01b927e",
      "parents": [
        "b8c475be7bf9b79e6417c08d7a921b2e8cb04258"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Tue Jan 31 16:34:26 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 16:49:43 2006 -0800"
      },
      "message": "[PATCH] \"Fix uidhash_lock \u003c-\u003e RXU deadlock\" fix\n\nI get storms of warnings from local_bh_enable().  Better-tested patches,\nplease.\n\nCc: Ingo Molnar \u003cmingo@elte.hu\u003e\nCc: \"Paul E. McKenney\" \u003cpaulmck@us.ibm.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "b8c475be7bf9b79e6417c08d7a921b2e8cb04258",
      "tree": "86a669a52c077b4568e52c9012cf279862d457e9",
      "parents": [
        "10379a25fee8ddc8698d2f6c54ccedd4664c2941",
        "6fe8f479d02e47c80f816b2b9f5d3996ebfe6af6"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 16:21:44 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 16:21:44 2006 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/davej/x86\n"
    },
    {
      "commit": "10379a25fee8ddc8698d2f6c54ccedd4664c2941",
      "tree": "fba7fe3a1aa8e85104f9dcf08ff217dd4b0160c4",
      "parents": [
        "63b3ced0f80ae1c437620d3f7d6ff2bcf0745b0a",
        "3b0e8eadc511eaceba6d6b8d0743359a34ee23c6"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 16:20:55 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 16:20:55 2006 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/davej/agpgart\n"
    },
    {
      "commit": "63b3ced0f80ae1c437620d3f7d6ff2bcf0745b0a",
      "tree": "7fa2a57bffc456f6f83d62b64b7d50e35f5ed506",
      "parents": [
        "28e0cf22c1221650b4bfba48808d966160c42320",
        "f9e61929e5e1dacc2afefbde6abc3e6571ca2887"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 15:22:29 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 15:22:29 2006 -0800"
      },
      "message": "Merge branch \u0027for-linus\u0027 of master.kernel.org:/pub/scm/linux/kernel/git/roland/infiniband\n"
    },
    {
      "commit": "28e0cf22c1221650b4bfba48808d966160c42320",
      "tree": "79e530ac09f62000c1d0ec998a1bfa5404a2577a",
      "parents": [
        "9aef3b7c208b216b54a2e6614c6287ca8a09cf6f",
        "c0672860199ac009af7cf198a134ee7a4c3a9bb3"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 15:09:20 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 15:09:20 2006 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/davej/cpufreq\n"
    },
    {
      "commit": "9aef3b7c208b216b54a2e6614c6287ca8a09cf6f",
      "tree": "0d6b41a55c4e6a4dd1135d76aeb8b12c7b9841bb",
      "parents": [
        "e0ae23550ffd3bfe319fa66879779be1a9a4a155",
        "61d67f2e07d96d20d86135792ca591c491939c27"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 14:14:02 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 14:14:02 2006 -0800"
      },
      "message": "Merge branch \u0027release\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux-2.6\n"
    },
    {
      "commit": "e0ae23550ffd3bfe319fa66879779be1a9a4a155",
      "tree": "c9b7cce2baa430b8625dc01928260c7a6754f29b",
      "parents": [
        "dd1c1853e2742f4938b271dbe0cee735e2ffa3d9",
        "a5b3c86e4bfb5689d68932105d3fdd1477c9c281"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 13:12:41 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 13:12:41 2006 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6\n"
    },
    {
      "commit": "dd1c1853e2742f4938b271dbe0cee735e2ffa3d9",
      "tree": "dca773c1f509e06330559e55113a0e7cae5ddb68",
      "parents": [
        "d195ea4b1456192abe780fd773778cbe9f6d77ea"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 13:11:41 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 13:11:41 2006 -0800"
      },
      "message": "Fix ipv4/igmp.c compile with gcc-4 and IP_MULTICAST\n\nModern versions of gcc do not like case statements at the end of a block\nstatement: you need at least an empty statement.  Using just a \"break;\"\nis preferred for visual style.\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "a5b3c86e4bfb5689d68932105d3fdd1477c9c281",
      "tree": "b6de20e32d8bd79399ccb849b88968c16970d880",
      "parents": [
        "2254c86db124a37057116ad20a8de7b8483b6f44"
      ],
      "author": {
        "name": "Jack Hammer",
        "email": "jack_hammer@adaptec.com",
        "time": "Tue Jan 31 13:17:55 2006 -0500"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@titanic.(none)",
        "time": "Tue Jan 31 14:43:18 2006 -0600"
      },
      "message": "[SCSI] ServeRAID: prevent seeing DADSI devices\n\nA critical thing the ServeRAID driver MUST do is hide the physical DASDI\ndevices from the OS. It does this by intercepting the INQUIRY commands.\n\nIn recent 2.6.15 testing, I discovered this to be failing.\n\nThe cause was the driver assuming that the INQUIRY response data was in a\nsimple single buffer, when it was actually a 1 element scatter gather list.\n\nThis patch makes ips always look at the correct data when examining an\nINQUIRY response.\n\nSigned-off-by: Jack Hammer \u003cjack_hammer@adaptec.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "2254c86db124a37057116ad20a8de7b8483b6f44",
      "tree": "324c4e17c925d3a229b6f522644c37c67c08e3e6",
      "parents": [
        "a69ac3248513ff0fbbdd8f316136036b3b8067a9"
      ],
      "author": {
        "name": "Moore, Eric",
        "email": "Eric.Moore@lsil.com",
        "time": "Tue Jan 17 17:06:29 2006 -0700"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Jan 31 14:40:05 2006 -0600"
      },
      "message": "[SCSI] fusion: add message sanity check\n\nThis adds a sanity check in the interrupt routine\ninsures incoming message frames are a valid\nmessage frames.\n\nThe code for setting 0xdeadbeaf in the freed message\nframes, apparently was already submitted by Christoph\nin previous patch submission.\n\nSigned-off-by: Eric Moore \u003cEric.Moore@lsil.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "a69ac3248513ff0fbbdd8f316136036b3b8067a9",
      "tree": "311845a1d317ab96036387269b589331e6796c64",
      "parents": [
        "335a94124470dd5be6c42378d1b7f7af9a80919e"
      ],
      "author": {
        "name": "Moore, Eric",
        "email": "Eric.Moore@lsil.com",
        "time": "Tue Jan 17 17:06:26 2006 -0700"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Jan 31 14:40:04 2006 -0600"
      },
      "message": "[SCSI] fusion: unloading the driver - only set asyn narrow for configured devices\n\nThis patch inhibits sending spi negotiation parameters\nfor non-configured devices from the slave_destroy function.\n\nSigned-off-by: Eric Moore \u003cEric.Moore@lsil.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "335a94124470dd5be6c42378d1b7f7af9a80919e",
      "tree": "1737368059803a88caf0367800593e392ab46777",
      "parents": [
        "23f236ed2748fca0bcba304f4f9e3eacda51e91c"
      ],
      "author": {
        "name": "Moore, Eric",
        "email": "Eric.Moore@lsil.com",
        "time": "Tue Jan 17 17:06:23 2006 -0700"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Jan 31 14:40:03 2006 -0600"
      },
      "message": "[SCSI] fusion: unloading the driver results in panic - fix\n\nThe ioc-\u003ealt_ioc-\u003ealt_ioc pointer is not getting cleared\nduring driver unload time.   This dangling pointer\ncan result in panic in certain circumstances, such\nas error recovery, or firmware download in flashless\nenvironments. This only impacts dual functions controllers,\nsuch as 1030. Please apply.\n\nThis patch also includes a small cosmetic name change\nfor mpt_spi_log_info.\n\nSigned-off-by: Eric Moore \u003cEric.Moore@lsil.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "23f236ed2748fca0bcba304f4f9e3eacda51e91c",
      "tree": "694b1c45f7b215b366bb0935e958012ca46040fa",
      "parents": [
        "9f63bb73eb52df43f46ce2284759709fc40f4f52"
      ],
      "author": {
        "name": "Christoph Hellwig",
        "email": "hch@lst.de",
        "time": "Mon Jan 30 19:00:43 2006 +0100"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Jan 31 14:40:01 2006 -0600"
      },
      "message": "[SCSI] mptsas: don\u0027t complain on bogus slave_alloc calls\n\nWhen people use the userspace scanning facilities on SAS hardware the\nLLDD gets bogus slave_alloc calls.  Just fail those gracefully instead\nof printing a warning in mptsas and another one in the midlayer.\n\nSigned-off-by: Christoph Hellwig \u003chch@lst.de\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "9f63bb73eb52df43f46ce2284759709fc40f4f52",
      "tree": "06096ad8afd9f3f6a1db1d6ae9888f0faaa1137f",
      "parents": [
        "4ddce14e753fd4fe7445fa046a3aee155c2e48f4"
      ],
      "author": {
        "name": "Moore, Eric",
        "email": "Eric.Moore@lsil.com",
        "time": "Mon Jan 16 18:53:26 2006 -0700"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Jan 31 14:40:00 2006 -0600"
      },
      "message": "[SCSI] fusion: add task managment response code info\n\nAdding verbose message returned from firmware\nwhen a task mangment request fails.\n\nSigned-off-by: Eric Moore \u003cEric.Moore@lsil.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "4ddce14e753fd4fe7445fa046a3aee155c2e48f4",
      "tree": "c95e910366dd8412ae8be1e5f73c56aca5576044",
      "parents": [
        "7e55147fe3203b72e80186c45df9bf0fd6cd97c9"
      ],
      "author": {
        "name": "Christoph Hellwig",
        "email": "hch@infradead.org",
        "time": "Tue Jan 17 13:44:29 2006 +0000"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Jan 31 14:39:59 2006 -0600"
      },
      "message": "[SCSI] fusion: add MSI support\n\nOn Mon, Jan 16, 2006 at 06:53:24PM -0700, Moore, Eric wrote:\n\u003e Adding MSI support, and command line for enabling\n\u003e it.  By default, the command line option has MSI disabled.\n\nmpt_msi_enable is initialized to 0 implicitly, no need to do that.  Also\nreplace if (mpt_msi_enable \u003d\u003d 1) tests with just if (mpt_msi_enable).\n\nUpdated patch below:\n\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "7e55147fe3203b72e80186c45df9bf0fd6cd97c9",
      "tree": "7db7ae7c37c152b3556cc075d006ef6b3538f602",
      "parents": [
        "ece50914d5ce5c238e07d644e58701c173c48b7d"
      ],
      "author": {
        "name": "Moore, Eric",
        "email": "Eric.Moore@lsil.com",
        "time": "Mon Jan 16 18:53:21 2006 -0700"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Jan 31 14:39:58 2006 -0600"
      },
      "message": "[SCSI] fusion: overrun tape fix\n\nSigned-off-by: Eric Moore \u003cEric.Moore@lsil.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "ece50914d5ce5c238e07d644e58701c173c48b7d",
      "tree": "ca26b12074f941cca5eb73ca6ff6884a5a04f39f",
      "parents": [
        "928496ac317cff0eaf70aef2d5039a2f66966247"
      ],
      "author": {
        "name": "Moore, Eric",
        "email": "Eric.Moore@lsil.com",
        "time": "Mon Jan 16 18:53:19 2006 -0700"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Jan 31 14:39:56 2006 -0600"
      },
      "message": "[SCSI] fusion: add verbose messages for RAID actions\n\nA customer request to send raid asyn actions\nfrom firmware to the event syslog.  This shows\nwhen raid volumes go degraded, or complete resync,\nor volumes created/deleted, etc.\n\nSigned-off-by: Eric Moore \u003cEric.Moore@lsil.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "928496ac317cff0eaf70aef2d5039a2f66966247",
      "tree": "0ba4f7b73a29b65b972951d7145bebeef6fa3bef",
      "parents": [
        "d66c7a0f46ce53f1252e03fe372e39dc2dfff1ea"
      ],
      "author": {
        "name": "Moore, Eric",
        "email": "Eric.Moore@lsil.com",
        "time": "Mon Jan 16 18:53:16 2006 -0700"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Jan 31 14:39:55 2006 -0600"
      },
      "message": "[SCSI] fusion: increase reply frame size from 0x40 to 0x50 bytes\n\nIncreasing the reply frame size by 16 bytes, to\nbe in sync with the other fusion drivers.\n\nSigned-off-by: Eric Moore \u003cEric.Moore@lsil.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "d66c7a0f46ce53f1252e03fe372e39dc2dfff1ea",
      "tree": "ab84b802bd3b438f4b87aebb02b72aa195016d10",
      "parents": [
        "432b4c8b443af1b60cef7fcf90e8179cd8924f0a"
      ],
      "author": {
        "name": "Christoph Hellwig",
        "email": "hch@infradead.org",
        "time": "Tue Jan 17 13:43:14 2006 +0000"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Jan 31 14:39:54 2006 -0600"
      },
      "message": "[SCSI] fusion: setting timeouts in eh threads appropiatley for fc/sas/spi\n\nOn Mon, Jan 16, 2006 at 06:53:13PM -0700, Moore, Eric wrote:\n\u003e The task managment request timeout in the eh threads was set\n\u003e for U320 timing, which is between 2-5 seconds.\n\u003e This is too small for FC and SAS.\n\u003e According to the firmware engineers, Fibre needs to be 40 seconds\n\u003e and SAS needs to be 10 seconds.\n\nThe timeout selection should probably be done in a little helper instead\nof duplicated in a few places.  Updated patch below.\n\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "432b4c8b443af1b60cef7fcf90e8179cd8924f0a",
      "tree": "4fe6d641cae28d401589b8ce0176bb8bd339f8e9",
      "parents": [
        "d8e925dc8850c01e36e6b2acb08ed0fbdc38b9f1"
      ],
      "author": {
        "name": "Moore, Eric",
        "email": "Eric.Moore@lsil.com",
        "time": "Mon Jan 16 18:53:11 2006 -0700"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Jan 31 14:39:53 2006 -0600"
      },
      "message": "[SCSI] fusion: mptsas, increase discovery timout to 300 seconds\n\nIncrease the port enable timeout only for SAS from 30 to 300 seconds.\nA customer request for the handling large topologies.\n\nSigned-off-by: Eric Moore \u003cEric.Moore@lsil.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "d8e925dc8850c01e36e6b2acb08ed0fbdc38b9f1",
      "tree": "08be691a42c50f2b815f35f954ec85eab1ea5df4",
      "parents": [
        "eb221849540b7f4165c58b6c79d98b97ac902fdb"
      ],
      "author": {
        "name": "Moore, Eric",
        "email": "Eric.Moore@lsil.com",
        "time": "Mon Jan 16 18:53:06 2006 -0700"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Jan 31 14:39:51 2006 -0600"
      },
      "message": "[SCSI] fusion: spi bus reset when driver loads\n\nThis patch is for spi.  This issues bus reset when driver\nloads. Handling cases when initator has negotiated for packetized,\nand target negotiated for non-packetized; effectly this bus reset\nis getting both target and initiator on the same sheet of music.\n\nSigned-off-by: Eric Moore \u003cEric.Moore@lsil.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "eb221849540b7f4165c58b6c79d98b97ac902fdb",
      "tree": "606f04871288b2b062f52fe2804e9320aa924644",
      "parents": [
        "d60256b1b3ceb79cb06a5dd5e259b23bd27d4c61"
      ],
      "author": {
        "name": "Hannes Reinecke",
        "email": "hare@suse.de",
        "time": "Mon Jan 30 16:10:31 2006 +0100"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Jan 31 14:39:50 2006 -0600"
      },
      "message": "[SCSI] aic79xx: Fix timer handling\n\nFix the timer handling in aic79xx to use the SCSI-ML provided handling\ninstead of implementing our own.\nIt also fixes a deadlock in the command recovery code.\n\nSigned-off-by: Hannes Reinecke \u003chare@suse.de\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "d60256b1b3ceb79cb06a5dd5e259b23bd27d4c61",
      "tree": "868e38d62560083763b8ef9b1eb4709cba298890",
      "parents": [
        "3fb086126462c2de06dddaec58981d8827be100d"
      ],
      "author": {
        "name": "Hannes Reinecke",
        "email": "hare@suse.de",
        "time": "Tue Jan 24 10:45:35 2006 +0100"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Jan 31 14:39:49 2006 -0600"
      },
      "message": "[SCSI] aic7xxx: update documentation\n\nThis patch updates the documentation for aic7xxx and aic79xx with fixes\nfrom the adaptec driver.\n\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "3fb086126462c2de06dddaec58981d8827be100d",
      "tree": "eaa3e79ef84f8a68246e0ba68a1d048b03e9acd4",
      "parents": [
        "53467e636b7beb350c307cc88323aae4676577f2"
      ],
      "author": {
        "name": "Hannes Reinecke",
        "email": "hare@suse.de",
        "time": "Tue Jan 24 10:44:38 2006 +0100"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Jan 31 14:39:48 2006 -0600"
      },
      "message": "[SCSI] aic79xx: SLOWCRC fix\n\nThis patch introduces the SLOWCRC handling for certain buggy chipsets.\n\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "53467e636b7beb350c307cc88323aae4676577f2",
      "tree": "ca6348fb6d7d0059d72b5b633ad69574329eb133",
      "parents": [
        "2628ed2b1aa3fd115bb8e14925e180e9ecd07055"
      ],
      "author": {
        "name": "Hannes Reinecke",
        "email": "hare@suse.de",
        "time": "Tue Jan 24 10:43:26 2006 +0100"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Jan 31 14:39:46 2006 -0600"
      },
      "message": "[SCSI] aic79xx: sequencer fixes\n\nThis patch updates the aic79xx sequencer with latest fixes from adaptec.\nThe sequencer code now corresponds with adaptec version 2.0.15.\n\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "2628ed2b1aa3fd115bb8e14925e180e9ecd07055",
      "tree": "17e76e1799342efd949f804ce4c529e0dc8038c2",
      "parents": [
        "663e1aa12f9fc338fccee09f98d9f5bf68517f72"
      ],
      "author": {
        "name": "Hannes Reinecke",
        "email": "hare@suse.de",
        "time": "Tue Jan 24 10:41:45 2006 +0100"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Jan 31 14:39:44 2006 -0600"
      },
      "message": "[SCSI] aic7xxx: Update aicasm\n\nThis patchset updates aicasm code with the latest fixes from adaptec.\n\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "663e1aa12f9fc338fccee09f98d9f5bf68517f72",
      "tree": "c6d5dfec129285c284222f08983cfc6365918eed",
      "parents": [
        "fda4c2c8d0c9e22e3b9eeb6d75706d876af988f8"
      ],
      "author": {
        "name": "James Bottomley",
        "email": "jejb@titanic.(none)",
        "time": "Sun Jan 29 12:10:24 2006 -0600"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@titanic.(none)",
        "time": "Tue Jan 31 14:39:43 2006 -0600"
      },
      "message": "[SCSI] fusion: fix compile\n\nThe prior fusion patches moved an invocation of a function,\nmptscsih_TMHandler(), static to mptscsih.c into mptsas.c\n\nMake the function unstatic, move the header to mptscsih.h and export it.\n\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "fda4c2c8d0c9e22e3b9eeb6d75706d876af988f8",
      "tree": "59a02d8cd870fb62c68df0f52d4ca88160db27cd",
      "parents": [
        "3bc7bf1d1294642f87c4f7df04c048dafa38ad51"
      ],
      "author": {
        "name": "Moore, Eric",
        "email": "Eric.Moore@lsil.com",
        "time": "Wed Jan 25 18:05:21 2006 -0700"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Jan 31 14:39:42 2006 -0600"
      },
      "message": "[SCSI] fusion: bump version\n\nSigned-off-by: Eric Moore \u003cEric.Moore@lsil.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "3bc7bf1d1294642f87c4f7df04c048dafa38ad51",
      "tree": "263a1466b905e3e3685f84975f4bd7850b489042",
      "parents": [
        "79de278e86121cd4473c276409f834aee87f3195"
      ],
      "author": {
        "name": "Michael Reed",
        "email": "mdr@sgi.com",
        "time": "Wed Jan 25 18:05:18 2006 -0700"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Jan 31 14:39:41 2006 -0600"
      },
      "message": "[SCSI] fusion: FC rport code fixes\n\nThis fix\u0027s problems with recent fc submission regarding\ni/o being redirected to the wrong target.\n\nSigned-off-by: Michael Reed \u003cmdr@sgi.com\u003e\nSigned-off-by: Eric Moore \u003cEric.Moore@lsil.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "79de278e86121cd4473c276409f834aee87f3195",
      "tree": "56b8d88d9b4bfd79c612bf81a133246b2131d5bc",
      "parents": [
        "7d3eecf7b2195c64d26f7e7d105d00e5a6dd702e"
      ],
      "author": {
        "name": "Moore, Eric",
        "email": "Eric.Moore@lsil.com",
        "time": "Wed Jan 25 18:05:15 2006 -0700"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Jan 31 14:39:39 2006 -0600"
      },
      "message": "[SCSI] fusion: move sas persistent event handling over to the mptsas module\n\nThis moves code intented for SAS from\nthe generic mptscsih module over to the\nmptsas module.\n\nSigned-off-by: Eric Moore \u003cEric.Moore@lsil.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "7d3eecf7b2195c64d26f7e7d105d00e5a6dd702e",
      "tree": "9de227b1c38f68e6c7312e85028ebb734457c7cd",
      "parents": [
        "c73787eecdbe4691d4e3f989052db8b552e1ac34"
      ],
      "author": {
        "name": "Moore, Eric",
        "email": "Eric.Moore@lsil.com",
        "time": "Wed Jan 25 18:05:12 2006 -0700"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Jan 31 14:39:38 2006 -0600"
      },
      "message": "[SCSI] fusion: target reset when drive is being removed\n\nThe issuing of the target reset\nused in device hot removal case so the\nfirmware queue is flushed out off outstanding\ncommands.\n\nSigned-off-by: Eric Moore \u003cEric.Moore@lsil.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "c73787eecdbe4691d4e3f989052db8b552e1ac34",
      "tree": "f5c53229a700edbc0f27a4fc203811032dcb1c02",
      "parents": [
        "d99ca4180fe44ae7f409fc73f1a09f270b8d458a"
      ],
      "author": {
        "name": "Moore, Eric",
        "email": "Eric.Moore@lsil.com",
        "time": "Thu Jan 26 16:20:06 2006 -0700"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Jan 31 14:39:37 2006 -0600"
      },
      "message": "[SCSI] fusion: add support for raid hot add/del support\n\nRAID event support.\n\nThis will hot add and remove raid volumes\nwhen managment application creates and\ndeletes the volumes.  The driver is basically\nresponding to firmware asyn events, and reporting\nthe changes to the above layers.\n\nSigned-off-by: Eric Moore \u003cEric.Moore@lsil.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "d99ca4180fe44ae7f409fc73f1a09f270b8d458a",
      "tree": "b72d85c8f7f782cef7588ce4e621e967d2d23d1d",
      "parents": [
        "1341c939222f4d1cc8d9eb2b794f26f089fe0a61"
      ],
      "author": {
        "name": "Moore, Eric",
        "email": "Eric.Moore@lsil.com",
        "time": "Thu Jan 26 16:20:02 2006 -0700"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Jan 31 14:39:36 2006 -0600"
      },
      "message": "[SCSI] scsi_transport_sas.c: display port identifier\n\nThis patch displays the port identifier on\nthe folder attribute; located in the middle digit.\n\n/sys/class/sas_rphy/rphy-%x:%x:%x\n\nThe port identifier is basically the unique identifier\nfor each sas domain.\n\nSigned-off-by: Eric Moore \u003cEric.Moore@lsil.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "d195ea4b1456192abe780fd773778cbe9f6d77ea",
      "tree": "25ea330c4fced145290f6f5cfb1b06a1cf8402c0",
      "parents": [
        "bb4bc81a234c66e8d8a4475110fa2d7988a34671",
        "df7559d3440ff759ff6e1371ff722bb3a73a3639"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 11:31:54 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 11:31:54 2006 -0800"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-serial\n"
    },
    {
      "commit": "bb4bc81a234c66e8d8a4475110fa2d7988a34671",
      "tree": "dd97395a565e8e6fc05f58bb0d3cba8f300d114d",
      "parents": [
        "adac1665234dd966990af846eccd20b7f4923279",
        "14e54cc391e22bd564993583464577e4e34a2701"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 11:31:02 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 11:31:02 2006 -0800"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-arm\n"
    },
    {
      "commit": "adac1665234dd966990af846eccd20b7f4923279",
      "tree": "22c542365e34db4dc5c29d59245dd6d2cbc1351d",
      "parents": [
        "f6bc2666ed6696c40ef055e88ffef0b7657437a4"
      ],
      "author": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 25 19:50:12 2006 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 11:30:18 2006 -0800"
      },
      "message": "[PATCH] rcu_torture_lock deadlock fix\n\nrcu_torture_lock is used in a softirq-unsafe manner, but it is also\ntaken by rcu_torture_cb(), which may execute in softirq-context,\nresulting in potential deadlocks.\n\nThe fix is to acquire rcu_torture_lock in a softirq-safe manner.  With\nthis fix applied, the rcu-torture code passes validation.\n\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nAcked-by: Paul E. McKenney \u003cpaulmck@us.ibm.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "f6bc2666ed6696c40ef055e88ffef0b7657437a4",
      "tree": "30377687ad0cb9c9ef0141bf142511062e1980b5",
      "parents": [
        "4021cb279a532728c3208a16b9b09b0ca8016850"
      ],
      "author": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Thu Jan 26 01:42:11 2006 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 11:30:18 2006 -0800"
      },
      "message": "[PATCH] fix deadlock in drivers/pci/msi.c\n\nThe lock validator caught another one: drivers/pci/msi.c is accessing\n\u0026irq_desc[i].lock with interrupts enabled (!).\n\nThe fix is to disable interrupts properly.\n\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "4021cb279a532728c3208a16b9b09b0ca8016850",
      "tree": "1103bc655772ea388eb1fb2b259797bc9c703926",
      "parents": [
        "d5bee775137c56ed993f1b3c9d66c268b3525d7d"
      ],
      "author": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Wed Jan 25 15:23:07 2006 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 11:30:18 2006 -0800"
      },
      "message": "[PATCH] fix uidhash_lock \u003c-\u003e RCU deadlock\n\nRCU task-struct freeing can call free_uid(), which is taking\nuidhash_lock - while other users of uidhash_lock are softirq-unsafe.\n\nThe fix is to always take the uidhash_spinlock in a softirq-safe manner.\n\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nAcked-by: Paul E. McKenney \u003cpaulmck@us.ibm.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "d5bee775137c56ed993f1b3c9d66c268b3525d7d",
      "tree": "3357ee75d4785f27e7c783f25f0478a23594b06a",
      "parents": [
        "0827f2b698735aee7cfb2990d393a82f6e1690eb",
        "fddfdeafa8396f85c666bfc5e1e920eb535514cf"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 11:22:40 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 11:22:40 2006 -0800"
      },
      "message": "Merge branch \u0027for-linus\u0027 of git://brick.kernel.dk/data/git/linux-2.6-block\n"
    },
    {
      "commit": "0827f2b698735aee7cfb2990d393a82f6e1690eb",
      "tree": "5eb1fa871154ab36c38794c4dc488698f13c71e0",
      "parents": [
        "70b4d63e98fd93fb9742708a54f872cba24e0fea",
        "c6f0d75a2defe8c7d8bf9f78de891cedc46b4b3e"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 10:29:35 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 10:29:35 2006 -0800"
      },
      "message": "Merge branch \u0027upstream-fixes\u0027 of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6\n"
    },
    {
      "commit": "70b4d63e98fd93fb9742708a54f872cba24e0fea",
      "tree": "016df3fe69c8ca9240d489f846b69674b8746a2d",
      "parents": [
        "7fcdf327bedfe9cc418af49429d0fc0e48d98de9"
      ],
      "author": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Mon Jan 30 20:24:38 2006 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 10:23:31 2006 -0800"
      },
      "message": "[PATCH] Fix boot-time slowdown for measure_migration_cost\n\nThis reduces the amount of time the migration cost calculations cost\nduring bootup. Based on numbers by Tony Luck \u003ctony.luck@intel.com\u003e.\n\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\n"
    },
    {
      "commit": "7fcdf327bedfe9cc418af49429d0fc0e48d98de9",
      "tree": "4dd9ab338b1641318b1251cc0522c22f14137e4b",
      "parents": [
        "f7dd16bf3a2e7e29670051a2488d4be1895e408d",
        "2c74088e4104a2a82bd773f79ae0344c22eceb8c"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 10:21:13 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 10:21:13 2006 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6\n"
    },
    {
      "commit": "f7dd16bf3a2e7e29670051a2488d4be1895e408d",
      "tree": "8778621ad8bf9bec35d285c4a7aa423609771bea",
      "parents": [
        "951069e311a2a931bf7c9d838db860f90bf14c45",
        "22f01da398069e823e79f1209518f0913e05fc47"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 10:20:49 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 10:20:49 2006 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6\n"
    },
    {
      "commit": "951069e311a2a931bf7c9d838db860f90bf14c45",
      "tree": "0aaeb29c496036983b4e894477f9d9f4881286e1",
      "parents": [
        "3ee68c4af3fd7228c1be63254b9f884614f9ebb2"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 10:16:55 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Jan 31 10:16:55 2006 -0800"
      },
      "message": "Don\u0027t try to \"validate\" a non-existing timeval.\n\nsettime() with a NULL timeval is silly but legal.\n\nNoticed by Dave Jones \u003cdavej@redhat.com\u003e\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "c6f0d75a2defe8c7d8bf9f78de891cedc46b4b3e",
      "tree": "e4789ef4c9634a757882bb12a85b37439e7a73cf",
      "parents": [
        "0febb720fe77153f54b68fe7a3d7114f4c6711d8"
      ],
      "author": {
        "name": "Daniel Drake",
        "email": "dsd@gentoo.org",
        "time": "Sat Jan 21 19:35:34 2006 +0000"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Tue Jan 31 11:52:08 2006 -0500"
      },
      "message": "[PATCH] Clarify help text of SKGE/SK98LIN/SKY2\n\nSome users have commented that it is unclear which driver they should be\nusing for their Marvell/SysKonnect network adapter, and which ones\nare/aren\u0027t interchangable.\n\nThis patch attempts to reduce the confusion.\n\nSigned-off-by: Daniel Drake \u003cdsd@gentoo.org\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "0febb720fe77153f54b68fe7a3d7114f4c6711d8",
      "tree": "d0d99f78b46051cabd1e75ce5269b6d1a40f7a12",
      "parents": [
        "b0b020d4783fbc4cc477e2ca678ac47c50d5bc3e",
        "ae7ec20582de0867abda66ad06d468ce12b231f2"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Tue Jan 31 11:50:11 2006 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Tue Jan 31 11:50:11 2006 -0500"
      },
      "message": "Merge branch \u0027upstream-fixes\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6\n"
    },
    {
      "commit": "fddfdeafa8396f85c666bfc5e1e920eb535514cf",
      "tree": "72994a14d741bdb2ca60eeebb6531f95840cffbc",
      "parents": [
        "48bdc8ec4aa2ca04e339bf5c3a47677d8dd00bb6"
      ],
      "author": {
        "name": "Jens Axboe",
        "email": "axboe@suse.de",
        "time": "Tue Jan 31 15:24:34 2006 +0100"
      },
      "committer": {
        "name": "Jens Axboe",
        "email": "axboe@suse.de",
        "time": "Tue Jan 31 15:24:34 2006 +0100"
      },
      "message": "[BLOCK] A few kerneldoc fixups\n\nSigned-off-by: Jens Axboe \u003caxboe@suse.de\u003e\n"
    },
    {
      "commit": "2c74088e4104a2a82bd773f79ae0344c22eceb8c",
      "tree": "17d560c7005f28db308bebc51c1d0cf42dee2785",
      "parents": [
        "c5d90e000437a463440c1fe039011a02583a9ee5"
      ],
      "author": {
        "name": "Baruch Even",
        "email": "baruch@ev-en.org",
        "time": "Mon Jan 30 20:54:39 2006 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 30 20:54:39 2006 -0800"
      },
      "message": "[TCP] H-TCP: Fix accounting\n\nThis fixes the accounting in H-TCP, the ccount variable is also\nadjusted a few lines above this one.\n\nThis line was not supposed to be there and wasn\u0027t there in the patches\noriginally submitted, the four patches submitted were merged to one\nand in that merge the bug was introduced.\n\nSigned-Off-By: Baruch Even \u003cbaruch@ev-en.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "c5d90e000437a463440c1fe039011a02583a9ee5",
      "tree": "d9b335bf132b089ea4036f7d19bcdd9cc490aaf9",
      "parents": [
        "e2c2fc2c8f3750e1f7ffbb3ac2b885a49416110c"
      ],
      "author": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Mon Jan 30 20:27:17 2006 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 30 20:27:17 2006 -0800"
      },
      "message": "[IPV4] igmp: remove pointless printk\n\nThis is easily triggerable by sending bogus packets,\nallowing a malicious user to flood remote logs.\n\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "22f01da398069e823e79f1209518f0913e05fc47",
      "tree": "1dc89da285ebaf552f90ff899c31b4f188e3e279",
      "parents": [
        "cddfc12e2513a4229bad0d05fde2d40a75c3e197"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 30 16:46:24 2006 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 30 16:46:24 2006 -0800"
      },
      "message": "[SPARC]: Fix compile failures in math-emu.\n\nKill debugging default switch cases in do_one_mathemu().\nThat case is handled properly already and gcc hates\nthe empty statement that results when the debug code is\ndisabled.\n\nPointed out by kaffe.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "e2c2fc2c8f3750e1f7ffbb3ac2b885a49416110c",
      "tree": "26aff65b275398addfe4cd8013b9efea3ff42016",
      "parents": [
        "81845c21dc1ec7ce2bf12845dbc01e4880f9ea9a"
      ],
      "author": {
        "name": "Vlad Yasevich",
        "email": "vladislav.yasevich@hp.com",
        "time": "Mon Jan 30 16:00:40 2006 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 30 16:00:40 2006 -0800"
      },
      "message": "[SCTP]: heartbeats exceed maximum retransmssion limit\n\nThe number of HEARTBEAT chunks that an association may transmit is\nlimited by Association.Max.Retrans count; however, the code allows\nus to send one extra heartbeat.\n\nThis patch limits the number of heartbeats to the maximum count.\n\nSigned-off-by: Vlad Yasevich \u003cvladislav.yasevich@hp.com\u003e\nSigned-off-by: Sridhar Samudrala \u003csri@us.ibm.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "81845c21dc1ec7ce2bf12845dbc01e4880f9ea9a",
      "tree": "70bcfbad6cb4076b16da72f7c7f31be65b7e7dfc",
      "parents": [
        "7add2a439868d636910fb6a216b12c7392778956"
      ],
      "author": {
        "name": "Vlad Yasevich",
        "email": "vladislav.yasevich@hp.com",
        "time": "Mon Jan 30 15:59:54 2006 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Jan 30 15:59:54 2006 -0800"
      },
      "message": "[SCTP]: correct the number of INIT retransmissions\n\nWe currently count the initial INIT/COOKIE_ECHO chunk toward the\nretransmit count and thus sends a total of sctp_max_retrans_init chunks.\nThe correct behavior is to retransmit the chunk sctp_max_retrans_init in\naddition to sending the original.\n\nSigned-off-by: Vlad Yasevich \u003cvladislav.yasevich@hp.com\u003e\nSigned-off-by: Sridhar Samudrala \u003csri@us.ibm.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "ae7ec20582de0867abda66ad06d468ce12b231f2",
      "tree": "a65889b95d06275d93b43ac3161a1a58b0a7d1cf",
      "parents": [
        "1a1fedf4d3e27c920b8de92a429011fb11c89028"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Mon Jan 30 19:23:17 2006 +0100"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Mon Jan 30 17:41:36 2006 -0500"
      },
      "message": "[PATCH] PCMCIA\u003dm, HOSTAP_CS\u003dy is not a legal configuration\n\nCONFIG_PCMCIA\u003dm, CONFIG_HOSTAP_CS\u003dy doesn\u0027t compile.\n\nReported by \"Gabriel C.\" \u003ccrazy@pimpmylinux.org\u003e.\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "1a1fedf4d3e27c920b8de92a429011fb11c89028",
      "tree": "cfc243d60289014cf64a8cc49c2609242601b03a",
      "parents": [
        "489f4458cd98592d0bc527d4a5ac1c1393aaf254"
      ],
      "author": {
        "name": "Larry Finger",
        "email": "Larry.Finger@lwfinger.net",
        "time": "Mon Jan 30 09:42:24 2006 -0600"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Mon Jan 30 17:41:36 2006 -0500"
      },
      "message": "[PATCH] Typo corrections for ieee80211\n\nThis patch, generated against 2.6.16-rc1-git4, corrects two typographical\nerrors in ieee80211_rx.c and adds the facility name to a bare printk.\n\nSigned-Off-By: Larry Finger \u003cLarry.Finger@lwfinger.net\u003e\n\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "489f4458cd98592d0bc527d4a5ac1c1393aaf254",
      "tree": "a051e20f92bb9e67471940637a6dfba7c2cf946c",
      "parents": [
        "17ed081deed479702ee4896f6de40aa32ecd6644"
      ],
      "author": {
        "name": "Zhu Yi",
        "email": "yi.zhu@intel.com",
        "time": "Tue Jan 24 16:37:41 2006 +0800"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Mon Jan 30 17:41:35 2006 -0500"
      },
      "message": "[PATCH] ipw2200: Fix a variable referenced after kfree() bug\n\nSigned-off-by: Zhu Yi \u003cyi.zhu@intel.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "17ed081deed479702ee4896f6de40aa32ecd6644",
      "tree": "c45447aed379c000bd14ae21c63a947641ad53d4",
      "parents": [
        "f73cb83f1ace1a4bd3c57ae33f5c6c8bac9c0946"
      ],
      "author": {
        "name": "Zhu Yi",
        "email": "yi.zhu@intel.com",
        "time": "Tue Jan 24 16:36:31 2006 +0800"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Mon Jan 30 17:41:35 2006 -0500"
      },
      "message": "[PATCH] ipw2200: Fix sw_reset doesn\u0027t clear the static essid problem\n\nSigned-off-by: Zhu Yi \u003cyi.zhu@intel.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "f73cb83f1ace1a4bd3c57ae33f5c6c8bac9c0946",
      "tree": "ce9a268bbcbcc2c130355e98b6cf5383c2b145e9",
      "parents": [
        "b6e4da72342cb075a2742c79e693c8edc1d55389"
      ],
      "author": {
        "name": "Zhu Yi",
        "email": "yi.zhu@intel.com",
        "time": "Tue Jan 24 16:36:22 2006 +0800"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Mon Jan 30 17:41:35 2006 -0500"
      },
      "message": "[PATCH] ipw2200: Fix \"iwspy ethx off\" causes kernel panic\n\nSigned-off-by: Hong Liu \u003chong.liu@intel.com\u003e\nSigned-off-by: Zhu Yi \u003cyi.zhu@intel.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "b6e4da72342cb075a2742c79e693c8edc1d55389",
      "tree": "c21c089c15328273ceb350ea0d71c928e4c0277f",
      "parents": [
        "3c5eca542d19cd50e9a028dc32897cd698dcc33e"
      ],
      "author": {
        "name": "Zhu Yi",
        "email": "yi.zhu@intel.com",
        "time": "Tue Jan 24 13:49:32 2006 +0800"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Mon Jan 30 17:41:35 2006 -0500"
      },
      "message": "[PATCH] ipw2100: Fix setting txpower failed problem\n\nThe ipw2100 driver misunderstood the parameter of txpower.\nTx Power off means turn off the radio, but the driver interpret it as\n\"can\u0027t set txpower\". So when getting the txpower, it sets disabled\u003d1 to\nthe iwconifg tool in managed mode. And the tool will display \"Tx Power off\"\nwhen disabled\u003d1.\n\nNow, in managed mode, iwconfig will not show \"TX Power\" if the radio is not\nswitched off. It will only display \"Tx Power off\" only if the radio is killed.\n\nSigned-off-by: Hong Liu \u003chong.liu@intel.com\u003e\nSigned-off-by: Zhu Yi \u003cyi.zhu@intel.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "3c5eca542d19cd50e9a028dc32897cd698dcc33e",
      "tree": "b09b68bccc5d2bb695475b75094170c35370fb91",
      "parents": [
        "4a99ac3a9ee7e1b90ebc3ddbb44db75eef5c41e6"
      ],
      "author": {
        "name": "Zhu Yi",
        "email": "yi.zhu@intel.com",
        "time": "Tue Jan 24 13:49:26 2006 +0800"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Mon Jan 30 17:41:35 2006 -0500"
      },
      "message": "[PATCH] ipw2100: Fix a gcc compile warning\n\ndrivers/net/wireless/ipw2100.c:2236: warning: `ipw2100_match_buf\u0027 defined\nbut not used\n\nCc: Yi Zhu \u003cyi.zhu@intel.com\u003e\nCc: James Ketrenos \u003cjketreno@linux.intel.com\u003e\nCc: Jeff Garzik \u003cjgarzik@pobox.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Zhu Yi \u003cyi.zhu@intel.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "48bdc8ec4aa2ca04e339bf5c3a47677d8dd00bb6",
      "tree": "6d268b950e95128be9deaf667e2bb661d42cc12b",
      "parents": [
        "dfcd77d16b5745fbfea7d5636f15fc80cc05fef8"
      ],
      "author": {
        "name": "Jens Axboe",
        "email": "axboe@suse.de",
        "time": "Mon Jan 30 16:09:35 2006 +0100"
      },
      "committer": {
        "name": "Jens Axboe",
        "email": "axboe@suse.de",
        "time": "Mon Jan 30 16:09:35 2006 +0100"
      },
      "message": "[LIBATA] Blacklist certain Maxtor firmware revisions for FUA support\n\nIt looks like they are either discarding or corrupting data when the FUA\ncommand is used, bad.\n\nSigned-off-by: Jens Axboe \u003caxboe@suse.de\u003e\n"
    },
    {
      "commit": "cddfc12e2513a4229bad0d05fde2d40a75c3e197",
      "tree": "0ed4d1c46a033ed4664d6d1376fb143526460872",
      "parents": [
        "d3ed309a718bc6f79dc485a6d18731990daeee5e"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Mon Jan 30 01:31:09 2006 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Mon Jan 30 01:31:09 2006 -0800"
      },
      "message": "[SPARC64]: Kill compat_sys_clock_settime sign extension stub.\n\nIt\u0027s wrong and totally unneeded.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "1341c939222f4d1cc8d9eb2b794f26f089fe0a61",
      "tree": "acafd546c590b8661f9f67b9a293f7742e50bd7c",
      "parents": [
        "cb59aa6a7ca1ae40fd436c45dff568a83f3fab2f"
      ],
      "author": {
        "name": "Sumant Patro",
        "email": "sumantp@lsil.com",
        "time": "Wed Jan 25 12:02:40 2006 -0800"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Sun Jan 29 11:25:30 2006 -0600"
      },
      "message": "[SCSI] megaraid_sas: new template defined to represent each type of controllers\n\nThis patch defines a new template to represent each type of\ncontrollers (identified by the processor used). The template has\nmembers that is set with appropriate values during driver\ninitialisation. This change is done to support new controllers with\nminimal change to existing code. In future, for a new controller\nsupport, a template will be declared and its members initialised\nappropriately.\n\nSigned-off-by: Sumant Patro \u003cSumant.Patro@lsil.com\u003e\n\nRejections fixed and\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "cb59aa6a7ca1ae40fd436c45dff568a83f3fab2f",
      "tree": "fe39a56ef4d95987d1c45eb44a4e764972820e58",
      "parents": [
        "bb1d1073a10fdc8547e3eb821ee2488260094b39"
      ],
      "author": {
        "name": "Sumant Patro",
        "email": "sumantp@lsil.com",
        "time": "Wed Jan 25 11:53:25 2006 -0800"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Sun Jan 29 11:18:16 2006 -0600"
      },
      "message": "[SCSI] megaraid_sas: cleanup queue command path\n\nThis patch (originally submitted by Christoph Hellwig) removes code\nduplication in megasas_build_cmd.  It also defines\nMEGASAS_IOC_FIRMWARE32 to allow 64 bit compiled applications to work.\n\nSigned-off-by: Sumant Patro \u003cSumant.Patro@lsil.com\u003e\n\nRejections fixed and\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "b0b020d4783fbc4cc477e2ca678ac47c50d5bc3e",
      "tree": "0b241c17a89330382527e667f96b64cc22397cfc",
      "parents": [
        "6651a5c3839517685c601e44979f19de8b6249c3",
        "4a99ac3a9ee7e1b90ebc3ddbb44db75eef5c41e6"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sat Jan 28 16:06:30 2006 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sat Jan 28 16:06:30 2006 -0500"
      },
      "message": "Merge branch \u0027upstream-fixes\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6\n"
    },
    {
      "commit": "14e54cc391e22bd564993583464577e4e34a2701",
      "tree": "cc1ba238be80b026ec9e2c3adff4bcfa355530a9",
      "parents": [
        "7efb83002bc20c5c72151d51468593834b510d71"
      ],
      "author": {
        "name": "Catalin Marinas",
        "email": "catalin.marinas@arm.com",
        "time": "Sat Jan 28 20:54:50 2006 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Sat Jan 28 20:54:50 2006 +0000"
      },
      "message": "[ARM] 3289/1: Enable the LCD support for Integrator/CP\n\nPatch from Catalin Marinas\n\nThe LCD displays were no longer working with Integrator/CP after some\nchanges to the setup code. This patch re-enables them.\n\nSigned-off-by: Catalin Marinas \u003ccatalin.marinas@arm.com\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    }
  ],
  "next": "4a99ac3a9ee7e1b90ebc3ddbb44db75eef5c41e6"
}
