)]}'
{
  "log": [
    {
      "commit": "deb8ee43a23d48116cb23eb8dd1de2348efb1e80",
      "tree": "c30cede8edd09cc7aff7c01ea6fbcb7b0d900e5d",
      "parents": [
        "4550718f6c75c9abe8b987fa4c625fd041aa95a2"
      ],
      "author": {
        "name": "Dominic Cerquetti",
        "email": "binary1230@yahoo.com",
        "time": "Tue Oct 10 14:42:48 2006 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:33 2006 -0700"
      },
      "message": "USB: xpad: dance pad support\n\nAdds support for dance pads to the xpad driver. Dance pads require the\nd-pad to be mapped to four buttons instead of two axes, so that\ncombinations of up/down and left/right can be hit simultaneously.\nKnown dance pads are detected, and there is a module parameter added\nto default unknown xpad devices to map the d-pad to buttons if this is\ndesired. (dpad_to_buttons). Minor modifications were made to port the\nchanges in the original patch to a newer kernel version.\n\nThis patch was originally from Dominic Cerquetti originally written\nfor kernel 2.6.11.4, with minor modifications (API changes for USB,\nspelling fixes to the documentation added in the original patch) made\nto apply to the current kernel. I have modified Dominic\u0027s original\npatch per some suggestions from Dmitry Torokhov. (There was nothing\nin the patch format description about multiple From: lines, so I\nhaven\u0027t added myself.)\n\n[akpm@osdl.org: cleanups]\nSigned-off-by: Adam Buchbinder \u003cadam.buchbinder@gmail.com\u003e\nAcked-by: Dmitry Torokhov \u003cdtor@mail.ru\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "4550718f6c75c9abe8b987fa4c625fd041aa95a2",
      "tree": "199876339655e70fdab7f72ea69d5d344a13843e",
      "parents": [
        "0e185b7922ac81516c5c4653dcf6aacbf6341e73"
      ],
      "author": {
        "name": "Grant Grundler",
        "email": "grundler@parisc-linux.org",
        "time": "Tue Oct 10 14:42:51 2006 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:33 2006 -0700"
      },
      "message": "USB: input: extract() and implement() are bit field manipulation routines\n\nextract() and implement() have brain damaged attempts to handle 32-bit wide\n\"fields\".\n\nThe problem is the index math in the original code didn\u0027t clear all the\nrelevant bits.  (offset \u003e\u003e 5) only compensated for 32-bit index.  We need\n(offset \u003e\u003e 6) if we want to use 64-bit loads.\n\nBut it was also wrong in that it tried to use quasi-aligned loads.  Ie\n\"report\" was only incremented in multiples of 4 bytes and then the offset\nwas masked off for values greater than 4 bytes.  The right way is to\npretend \"report\" points at a byte array.  And offset is then only minor\nadjustment for \u003c 8 bits of offset.  \"n\" (field width) can then be as big as\n24 (assuming 32-bit loads) since \"offset\" will never be bigger than 7.\n\nIf someone needs either function to handle more than 24-bits, please\ndocument why - point at a specification or specific USB hid device - in\ncomments in the code.\n\nextract/implement() are also an eyesore to read.  Please banish whoever\nwrote it to read CodingStyle 3 times in a row to a classroom full of 1st\ngraders armed with rubberbands.  Or just flame them.  Whatever.  Globbing\nall the code together on two lines does NOT make it faster and is Just\nWrong.\n\nI\u0027ve tested this patch on j6000 (dual 750Mhz PA-RISC, 32-bit 2.6.12-rc5). \nKyle McMartin tested on c3000 (up 400Mhz PA-RISC, same kernel).  \"p2-mate\"\n(Peter De Schrijver?) tested on sb1250 (dual core Mips, broadcom \"swarm\"\neval board).\n\nSigned-off-by: Grant Grundler \u003cgrundler@parisc-linux.org\u003e\nSigned-off-by: Matthew Wilcox \u003cmatthew@wil.cx\u003e\nCc: Vojtech Pavlik \u003cvojtech@suse.cz\u003e\nCc: Dmitry Torokhov \u003cdtor@mail.ru\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "0e185b7922ac81516c5c4653dcf6aacbf6341e73",
      "tree": "ef16d187c31398203e44e884255a4a5e1a87026d",
      "parents": [
        "c0fc0ee06f6c9ab37f53afc62b0d94a700fa7a97"
      ],
      "author": {
        "name": "Eric Sesterhenn",
        "email": "snakebyte@gmx.de",
        "time": "Tue Oct 10 14:42:50 2006 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:33 2006 -0700"
      },
      "message": "USB: Memory leak in drivers/usb/serial/airprime.c\n\nthe commit\nhttp://www.kernel.org/git/?p\u003dlinux/kernel/git/torvalds/linux-2.6.git;a\u003dcommitdiff;h\u003d5dda171202f94127e49c12daf780cdae1b4e668b\nadded a memory leak.  In case we cant allocate an urb, we dont free the\nbuffer and leak it.  Coverity id #1438\n\nSigned-off-by: Eric Sesterhenn \u003csnakebyte@gmx.de\u003e\nAcked-by: Andy Gay \u003candy@andynet.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "c0fc0ee06f6c9ab37f53afc62b0d94a700fa7a97",
      "tree": "bcffef531ff793cc676d038eec54704a41fccf8d",
      "parents": [
        "521b600b58376b7c85a7c615ee32fae185c20b16"
      ],
      "author": {
        "name": "Jan Mate",
        "email": "mate@fiit.stuba.sk",
        "time": "Tue Oct 10 14:42:47 2006 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:33 2006 -0700"
      },
      "message": "USB Storage: unusual_devs.h entry for Sony Ericsson P990i\n\nUSB Storage: this patch adds support for Sony Ericsson P990i\n\nSigned-off-by: Jan Mate \u003cmate@fiit.stuba.sk\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "521b600b58376b7c85a7c615ee32fae185c20b16",
      "tree": "f3b0965bdd5077db50daa7bdb9dd3b1031b13635",
      "parents": [
        "3ccf25ce185d4798e66a91812a7622f7fe6987df"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Tue Oct 10 14:42:46 2006 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:33 2006 -0700"
      },
      "message": "USB: fix usbatm tiny race\n\nia64:\n\ndrivers/usb/atm/usbatm.c: In function `usbatm_do_heavy_init\u0027:\ndrivers/usb/atm/usbatm.c:1004: warning: implicit declaration of function `get_current\u0027\ndrivers/usb/atm/usbatm.c:1004: error: invalid type argument of `-\u003e\u0027\n\nSigned-off-by: Duncan Sands \u003cbaldrick@free.fr\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n\n"
    },
    {
      "commit": "3ccf25ce185d4798e66a91812a7622f7fe6987df",
      "tree": "78e11370e79563c09b867b7a60aac9cf707c1132",
      "parents": [
        "ad18027f4909c8fc107056460c97dbedb6635128"
      ],
      "author": {
        "name": "Alan Stern",
        "email": "stern@rowland.harvard.edu",
        "time": "Fri Oct 13 09:59:17 2006 -0400"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:33 2006 -0700"
      },
      "message": "USB: unusual_devs entry for Nokia 6234\n\nThis patch (as803) adds an unusual_devs entry for the Nokia 6234\nmobile phone.\n\nSigned-off-by: Alan Stern \u003cstern@rowland.harvard.edu\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "ad18027f4909c8fc107056460c97dbedb6635128",
      "tree": "cf15d6e79ba3324e4974634a7fa446ff10fa4381",
      "parents": [
        "c19ecd654209725444d1f47a4422e6f48846b53c"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Mon Oct 09 01:16:32 2006 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:33 2006 -0700"
      },
      "message": "USB: mos7840.c: fix a check-after-dereference\n\nThis patch fixes an obvious check-after-dereference spotted by the\nCoverity checker.\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "c19ecd654209725444d1f47a4422e6f48846b53c",
      "tree": "8f6de019004de5ca1f599bdbf57f392372f9be5a",
      "parents": [
        "1ff15e8efc1703eaae1eeec6fc09db6af1e4049f"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Mon Oct 09 01:16:24 2006 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:33 2006 -0700"
      },
      "message": "USB: ftdi-elan.c: remove dead code\n\nThe Coverity checker spotted this obviously dead code.\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "1ff15e8efc1703eaae1eeec6fc09db6af1e4049f",
      "tree": "92aca4c8a5695b114bd571508047df2ba44748cb",
      "parents": [
        "a65dc301c7448a9a8d24bf1cbfe292541d1fa390"
      ],
      "author": {
        "name": "Tobias Lorenz",
        "email": "tobias.lorenz@gmx.net",
        "time": "Sun Oct 08 22:56:40 2006 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:33 2006 -0700"
      },
      "message": "USB: Mitsumi USB FDD 061M: UNUSUAL_DEV multilun fix\n\nFrom: Tobias Lorenz \u003ctobias.lorenz@gmx.net\u003e\nSigned-off-by: Phil Dibowitz \u003cphil@ipom.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "a65dc301c7448a9a8d24bf1cbfe292541d1fa390",
      "tree": "accd226dcdd84f0422fd7d933fbfbbebb56ea4fd",
      "parents": [
        "0f64478cbc7a008fe7b7e9ae79a73d8a6904ead8"
      ],
      "author": {
        "name": "Eric Sesterhenn",
        "email": "snakebyte@gmx.de",
        "time": "Fri Oct 06 00:09:29 2006 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:33 2006 -0700"
      },
      "message": "USB: fix dereference in drivers/usb/misc/adutux.c\n\nin two of the error cases, dev is still NULL,\nand we dereference it. Spotted by coverity (cid#1428, 1429)\n\nSigned-off-by: Eric Sesterhenn \u003csnakebyte@gmx.de\u003e\nCc: Randy Dunlap \u003crdunlap@xenotime.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "0f64478cbc7a008fe7b7e9ae79a73d8a6904ead8",
      "tree": "ce55416f6efd38a7383e99e843a826f17bd58f93",
      "parents": [
        "9fcde235270e6783600d1aee5bcda78c8282bcdd"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Apr 09 12:14:34 2002 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:32 2006 -0700"
      },
      "message": "USB: add USB serial mos7720 driver\n\nAdd support for Moschip 7720 USB dual port usb to serial device.\n\nThis driver is originally based on the drivers/usb/io_edgeport.c driver.\n\nCleaned up and forward ported by me.\n\nCc: VijayaKumar \u003cvijaykumar@aspirecom.net\u003e\nCc: AjayKumar \u003cajay@aspirecom.net\u003e\nCc: Gurudeva \u003cgurudev@aspirecom.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "9fcde235270e6783600d1aee5bcda78c8282bcdd",
      "tree": "9941716acecf72572b59f93af218ffd09220a36c",
      "parents": [
        "a9fc6338bd51a3d5735839e756fe7b741c2e6fad"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 10 13:47:35 2006 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:32 2006 -0700"
      },
      "message": "USB: move trancevibrator.c to the proper usb directory\n\nIt\u0027s not a input driver, so it doesn\u0027t belong in the input directory.\n\n\nCc: Sam Hocevar \u003csam@zoy.org\u003e\nCc: Dmitry Torokhov \u003cdtor@insightbb.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "a9fc6338bd51a3d5735839e756fe7b741c2e6fad",
      "tree": "0c75d1739bd65f21b125562dd9f603b1d195dd8c",
      "parents": [
        "c41286fd42f3545513f8de9f61028120b6d38e89"
      ],
      "author": {
        "name": "Arnd Bergmann",
        "email": "arnd@arndb.de",
        "time": "Mon Oct 09 00:08:02 2006 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:32 2006 -0700"
      },
      "message": "usbnet: add a mutex around phy register access\n\nWhen working on the mcs7830, I noticed the need for a mutex in its\nmdio_read/mdio_write functions. A related problem seems to be present\nin the asix driver in the respective functions.\n\nThis introduces a mutex in the common usbnet driver and uses it\nfrom the two hardware specific drivers.\n\nAcked-by: David Hollis \u003cdhollis@davehollis.com\u003e\nSigned-off-by: Arnd Bergmann \u003carnd@arndb.de\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "c41286fd42f3545513f8de9f61028120b6d38e89",
      "tree": "2dddcf5c7423c0db62a1f8752c002cf62080287b",
      "parents": [
        "2a36d7083438ccb607055abae633f39495a99947"
      ],
      "author": {
        "name": "Arnd Bergmann",
        "email": "arnd@arndb.de",
        "time": "Mon Oct 09 00:08:01 2006 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:32 2006 -0700"
      },
      "message": "usbnet: improve generic ethtool support\n\nThis adds generic support for the ethtool commands get_settings,\nset_settings, get_link and nway_reset to usbnet. These are now\nimplemented using mii functions when a low-level driver supports\nmdio_read/mdio_write and does not override the usbnet ethtool\ncommands with its own.\n\nCurrently, this applies to the asix and the mcs7830 drivers.\nI have tested it on mcs7830.\n\nSigned-off-by: Arnd Bergmann \u003carnd@arndb.de\u003e\nAcked-by: David Hollis \u003cdhollis@davehollis.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "2a36d7083438ccb607055abae633f39495a99947",
      "tree": "622266ad628307fe8e9ceec355c910b8c70a53b1",
      "parents": [
        "27d39e2627dc7493f554bc0549d8c63953762478"
      ],
      "author": {
        "name": "Arnd Bergmann",
        "email": "arnd@arndb.de",
        "time": "Mon Oct 09 00:08:00 2006 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:32 2006 -0700"
      },
      "message": "USB: driver for mcs7830 (aka DeLOCK) USB ethernet adapter\n\nThis driver adds support for the DeLOCK USB ethernet adapter\nand potentially others based on the MosChip MCS7830 chip.\n\nIt is based on the usbnet and asix drivers as well as the\noriginal device driver provided by MosChip, which in turn\nwas based on the usbnet driver.\n\nIt has been tested successfully on an OHCI, but interestingly\nthere seems to be a problem with the mcs7830 when connected to\nthe ICH6/EHCI in my thinkpad: it keeps receiving lots of\nbroken packets in the RX interrupt. The problem goes away when\nI\u0027m using an active USB hub, so I assume it\u0027s not related to\nthe device driver, but rather to the hardware.\n\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Arnd Bergmann \u003carnd@arndb.de\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n\n"
    },
    {
      "commit": "27d39e2627dc7493f554bc0549d8c63953762478",
      "tree": "17aa7627b203a897657472abaf3559a73ed4fa9d",
      "parents": [
        "f8ac232ad7388bfff680b26e84b3ac63889d1cea"
      ],
      "author": {
        "name": "Akinobu Mita",
        "email": "akinobu.mita@gmail.com",
        "time": "Mon Oct 09 18:09:33 2006 +0900"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:32 2006 -0700"
      },
      "message": "usb devio: handle class_device_create() error\n\nThis patch adds missing class_device_create() error check,\nand makes notifier return NOTIFY_BAD.\n\nSigned-off-by: Akinobu Mita \u003cakinobu.mita@gmail.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "f8ac232ad7388bfff680b26e84b3ac63889d1cea",
      "tree": "f6961b189ec82c63d0eae24428c8d251d27fd302",
      "parents": [
        "d5477c11111467e19787f00d3cab20fb48c2699e"
      ],
      "author": {
        "name": "Alexey Dobriyan",
        "email": "adobriyan@gmail.com",
        "time": "Sun Oct 08 16:02:00 2006 +0400"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:32 2006 -0700"
      },
      "message": "USB: drivers/usb/net/*: use BUILD_BUG_ON\n\nSigned-off-by: Alexey Dobriyan \u003cadobriyan@gmail.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "d5477c11111467e19787f00d3cab20fb48c2699e",
      "tree": "58716db7e697cdacec1895fc9803604eddfc775c",
      "parents": [
        "c40fd5ea565587c05b0e2c49c02cad2c35fd85c6"
      ],
      "author": {
        "name": "Alan Stern",
        "email": "stern@rowland.harvard.edu",
        "time": "Tue Oct 10 11:56:26 2006 -0400"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:32 2006 -0700"
      },
      "message": "usbcore: fix endpoint device creation\n\nThis patch (as800) straightens out the USB endpoint class device\ncreation routine, fixing a refcount bug in the process.\n\nSigned-off-by: Alan Stern \u003cstern@rowland.harvard.edu\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "c40fd5ea565587c05b0e2c49c02cad2c35fd85c6",
      "tree": "2ecf07bfaaf60ca6cadccd967f4750fe5f2d2f01",
      "parents": [
        "b62df4516981745d4b5de01ceec1d65a9174a524"
      ],
      "author": {
        "name": "Alan Stern",
        "email": "stern@rowland.harvard.edu",
        "time": "Tue Oct 10 11:55:47 2006 -0400"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:32 2006 -0700"
      },
      "message": "usbcore: fix refcount bug in endpoint removal\n\nThis patch (as799) fixes a nasty refcount error in the USB endpoint class.\n\nSigned-off-by: Alan Stern \u003cstern@rowland.harvard.edu\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "b62df4516981745d4b5de01ceec1d65a9174a524",
      "tree": "b7eae113a1fc6b860763abb91ca49629552cbd83",
      "parents": [
        "96a518928e1fd00a6d0eb344f420ea82aeec8ab9"
      ],
      "author": {
        "name": "Alan Stern",
        "email": "stern@rowland.harvard.edu",
        "time": "Tue Oct 10 10:54:00 2006 -0400"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:31 2006 -0700"
      },
      "message": "UHCI: workaround for Asus motherboard\n\nThis patch (as798) adds a workaround to uhci-hcd.  At least one Asus\nmotherboard is wired in such a way that any device attached to a\nsuspended UHCI controller will prevent the system from entering\nsuspend-to-RAM by immediately waking it up.  The only way around the\nproblem is to turn the controller off instead of suspending it.\n\nThis fixes Bugzilla #6193.\n\nSigned-off-by: Alan Stern \u003cstern@rowland.harvard.edu\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "96a518928e1fd00a6d0eb344f420ea82aeec8ab9",
      "tree": "b9482d646329df33edd77dc85041b5fd5613bf2b",
      "parents": [
        "516077c1ee8a4a47cc41634a29954b636f3975ea"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Mon Oct 09 12:24:49 2006 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:31 2006 -0700"
      },
      "message": "USB: ftdi-elan: fix sparse warnings\n\nDeleted some unused code that could do bad things on non-x86 platforms.\n\nAlso fixed some minor formatting errors.\n\nThanks to Al Viro for pointing out the sparse errors.\n\nCc: Tony Olech \u003ctony.olech@elandigitalsystems.com\u003e\nCc: Al Viro \u003cviro@zeniv.linux.org.uk\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n\n"
    },
    {
      "commit": "516077c1ee8a4a47cc41634a29954b636f3975ea",
      "tree": "937b43dd72ce5a745efb2f2b670c9ced199423d1",
      "parents": [
        "44960af1b6ab3e8fd23dc134fcf7862caf42936b"
      ],
      "author": {
        "name": "Oliver Neukum",
        "email": "oliver@neukum.org",
        "time": "Thu Oct 05 09:04:11 2006 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:31 2006 -0700"
      },
      "message": "USB: fix suspend support for usblp\n\nthis implements suspend support for usblp. According to the CUPS people\nENODEV will make CUPS retry the job. Thus it is returned in the runtime\ncase. My printer survives suspend/resume cycles with it.\n\nSigned-off-by: Oliver Neukum \u003coliver@neukum.name\u003e\nSigned-off-by: Vojtech Pavlik \u003cvojtech@suse.cz\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n\n"
    },
    {
      "commit": "44960af1b6ab3e8fd23dc134fcf7862caf42936b",
      "tree": "feab883afb63dac3b996a79c38d3268923ed759f",
      "parents": [
        "6a4f1b41357d2bd65d39f7a5d44e92f69daaf04b"
      ],
      "author": {
        "name": "Duncan Sands",
        "email": "baldrick@free.fr",
        "time": "Thu Oct 05 11:05:50 2006 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:31 2006 -0700"
      },
      "message": "cxacru: add the ZTE ZXDSL 852\n\n From http://doc.ubuntu-fr.org/materiel/zxdsl852.\n\nSigned-off-by: Duncan Sands \u003cbaldrick@free.fr\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "6a4f1b41357d2bd65d39f7a5d44e92f69daaf04b",
      "tree": "9cd7cb832e9c1435f16c6a1a11c949e3f23fd291",
      "parents": [
        "ccf40d62c70128990cf2e8775853cc3287cd7ce3"
      ],
      "author": {
        "name": "Duncan Sands",
        "email": "baldrick@free.fr",
        "time": "Thu Oct 05 10:40:55 2006 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:31 2006 -0700"
      },
      "message": "speedtch: \"extended reach\"\n\nThe speedtouch modem setup code was reverse engineered many years\nago from a prehistoric windows driver. Less ancient windows drivers,\neven those from a few years ago, perform extra initialization steps\nwhich this patch adds to the linux driver.  David Woodhouse observed\nthat this initialization along with the firmware bin/sachu3/zzzlp2.eni\nfrom the driver at\nhttp://www.speedtouch.co.uk/downloads/330/301/UK3012%20Extended.zip\nimproves line sync speeds by about 20%.  He provided the original\npatch, which I\u0027ve modified to use symbolic names (BMaxDSL, ModemMode,\nModemOption) rather than magic numbers.  These names may not seem like\nmuch of an improvement (after all, what is \"ModemOption\" exactly?),\nbut they do have one big advantage: they are the names used in the\nwindows registry.  I\u0027ve made them available as module parameters.\nThanks are due to Aurelio Arroyo, who noticed the relationship\nbetween these magic numbers and the entries in Phonebook.ini.\n\nSigned-off-by: Duncan Sands \u003cbaldrick@free.fr\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "ccf40d62c70128990cf2e8775853cc3287cd7ce3",
      "tree": "1f9ee5f3da100404be153f6d2a563b682d3f2ecc",
      "parents": [
        "e4a20daa7b44ab9805979eb716f6bb7532bc67b9"
      ],
      "author": {
        "name": "Duncan Sands",
        "email": "baldrick@free.fr",
        "time": "Thu Oct 05 09:56:44 2006 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:31 2006 -0700"
      },
      "message": "usbatm: fix tiny race\n\nIf usbatm_do_heavy_init finishes before usbatm_heavy_init\nwrites the pid, the disconnect method could shoot down the\nwrong process if the pid has been recycled.\n\nSigned-off-by: Duncan Sands \u003cbaldrick@free.fr\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "e4a20daa7b44ab9805979eb716f6bb7532bc67b9",
      "tree": "7330e0b662483aee14cbb2c68aaf0c2c1f78b020",
      "parents": [
        "762f007b05446f5c63268fb2c28646f28959ee4b"
      ],
      "author": {
        "name": "Alan Stern",
        "email": "stern@rowland.harvard.edu",
        "time": "Wed Oct 04 16:31:15 2006 -0400"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:31 2006 -0700"
      },
      "message": "USB: unusual_devs entry for Nokia 6131\n\nThis patch (as796) adds an unusual_devs entry for the Nokia 6131, which\ndoesn\u0027t like large transfer sizes.\n\nSigned-off-by: Alan Stern \u003cstern@rowland.harvard.edu\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "762f007b05446f5c63268fb2c28646f28959ee4b",
      "tree": "48e35914e0e423b6014fa57cd3474fcacdc18a38",
      "parents": [
        "a7a0c9cd1f45c2cae38ebe0951246bf94399818a"
      ],
      "author": {
        "name": "Jarek Poplawski",
        "email": "jarkao2@o2.pl",
        "time": "Fri Oct 06 07:23:11 2006 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:31 2006 -0700"
      },
      "message": "USB: fix cdc-acm problems with hard irq? (inconsistent lock state)\n\nSigned-off-by: Jarek Poplawski \u003cjarkao2@o2.pl\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n\n"
    },
    {
      "commit": "a7a0c9cd1f45c2cae38ebe0951246bf94399818a",
      "tree": "2e93104a6328c5d3e1342552783c7917ad1061cb",
      "parents": [
        "531a39bbab213209a9914e68809bcf8b60a54f47"
      ],
      "author": {
        "name": "matthieu castet",
        "email": "castet.matthieu@free.fr",
        "time": "Tue Oct 03 21:44:11 2006 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:31 2006 -0700"
      },
      "message": "UEAGLE : comestic changes\n\nHi,\n\nthis patch does some cosmetic changes :\n- dump firwmare version as soon as possible and export it on sysfs\n- hint about wrong cmv/dsp\n- Display a message to warn user when the modem is ready : it can help\n  people to detect problems on the line without debug trace\n- Fix wrong indent\n- display modem type (pots/isdn)\n- increase version number\n\n\nSigned-off-by: Matthieu Castet \u003ccastet.matthieu@free.fr\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n\n"
    },
    {
      "commit": "531a39bbab213209a9914e68809bcf8b60a54f47",
      "tree": "44ecec0b3145cbc14d03ec4004ea95f8dba566b2",
      "parents": [
        "9ca5346483ea2c2e8932268246d1d8746fe3bcaa"
      ],
      "author": {
        "name": "matthieu castet",
        "email": "castet.matthieu@free.fr",
        "time": "Tue Oct 03 21:49:29 2006 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:31 2006 -0700"
      },
      "message": "UEAGLE : use interruptible sleep\n\nthis patch use wait_event_interruptible_timeout and msleep_interruptible\nbeacause uninterruptible sleep (task state \u0027D\u0027) is counted as 1 towards\nload average, like running processes.\n\n\nSigned-off-by: Matthieu Castet \u003ccastet.matthieu@free.fr\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n\n"
    },
    {
      "commit": "9ca5346483ea2c2e8932268246d1d8746fe3bcaa",
      "tree": "e53f26c946489d32cacd9e082427b0b81c75353b",
      "parents": [
        "8442ae00d47dad690ac1105b426274433dc672f8"
      ],
      "author": {
        "name": "matthieu castet",
        "email": "castet.matthieu@free.fr",
        "time": "Tue Oct 03 21:46:33 2006 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:31 2006 -0700"
      },
      "message": "UEAGLE : be suspend friendly\n\nthis patch avoid that the kernel thread block the suspend process.\nSome work is still need to recover after a resume.\n\nSigned-off-by: Matthieu Castet \u003ccastet.matthieu@free.fr\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "8442ae00d47dad690ac1105b426274433dc672f8",
      "tree": "629c48b66106bb16b069b54edcff52614381c880",
      "parents": [
        "1a2ea1dfc4ee078841cd6406ebf6bf0c5a3d25e9"
      ],
      "author": {
        "name": "David Brownell",
        "email": "david-b@pacbell.net",
        "time": "Mon Oct 02 07:20:10 2006 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:30 2006 -0700"
      },
      "message": "USB: ohci-pnx4008 build fixes\n\nThe OHCI bus glue for the Philips PNX chips is missing a few calls.\n\n - Bus suspend/resume were wrongly omitted in the original submission.\n - Two new calls were added since that glue was submitted:\n     * Root hub irq enable call\n     * Shutdown hook for usbcore\n\nPlus usb_bus.hcpriv has now been removed from usbcore.\n\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "1a2ea1dfc4ee078841cd6406ebf6bf0c5a3d25e9",
      "tree": "cba3ced71bc8573e283fe5cd85c2eb532f3e3438",
      "parents": [
        "fbe2bafcb00b25265c2c869ba4615d6a5324b7f1"
      ],
      "author": {
        "name": "Oliver Neukum",
        "email": "oliver@neukum.name",
        "time": "Tue Oct 03 10:30:52 2006 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:30 2006 -0700"
      },
      "message": "USB: suspend/resume support for kaweth\n\nthis adds support for suspend and resume to the kaweth driver.\n\nSigned-off-by: Oliver Neukum \u003coliver@neukum.name\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "fbe2bafcb00b25265c2c869ba4615d6a5324b7f1",
      "tree": "33524d8878fbb57b16930cd998771916f377d54d",
      "parents": [
        "91a9c9214e34c364bf15406aadb922787ae7129b"
      ],
      "author": {
        "name": "Oliver Neukum",
        "email": "oliver@neukum.name",
        "time": "Thu Sep 28 23:36:04 2006 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:30 2006 -0700"
      },
      "message": "USB: remove private debug macros from kaweth\n\nthis kills the private debug macros from the kaweth driver.\n\nSigned-off-by: Oliver Neukum \u003coliver@neukum.name\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "91a9c9214e34c364bf15406aadb922787ae7129b",
      "tree": "299c8cbe41baa25747a0bc1300665d4e0909057f",
      "parents": [
        "931b0411ac296591643662b7a790d15d6e23d57e"
      ],
      "author": {
        "name": "Chris Malley",
        "email": "mail@chrismalley.co.uk",
        "time": "Tue Oct 03 10:08:28 2006 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:30 2006 -0700"
      },
      "message": "USB: Support for BT On-Air USB modem in cdc-acm.c\n\nThe patch below is a necessary workaround to support the BT On-Air USB modem, which\nfails to initialise properly during normal probing thus:\n\nSep 30 17:34:57 sled kernel: drivers/usb/class/cdc-acm.c: Zero length descriptor references\nSep 30 17:34:57 sled kernel: cdc_acm: probe of 1-1.2:1.0 failed with error -22\n\nAdding the patch below causes the probing section to be skipped, and the modem\nthen initialises correctly.\n\nSigned-off-by: Chris Malley \u003cmail@chrismalley.co.uk\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n\n"
    },
    {
      "commit": "931b0411ac296591643662b7a790d15d6e23d57e",
      "tree": "c96b35d042ed64169e09e545777eb143614f5077",
      "parents": [
        "2daa48729dfafd349c2a52520734de2edb9dc805"
      ],
      "author": {
        "name": "Luiz Fernando N. Capitulino",
        "email": "lcapitulino@mandriva.com.br",
        "time": "Tue Oct 03 10:31:36 2006 -0300"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:30 2006 -0700"
      },
      "message": "airprime: New device ID.\n\nAdds support for the verizon wireless Broadband Access, National Access V640\nExpressCard34 Qualcomm 3G CDMA.\n\nReported by Maciej A. __enczykowski \u003cmaze@google.com\u003e\n\nSigned-off-by: Luiz Fernando N. Capitulino \u003clcapitulino@mandriva.com.br\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "2daa48729dfafd349c2a52520734de2edb9dc805",
      "tree": "9355ed48b1da6d74b8877866fb49cfb57ec579f5",
      "parents": [
        "2920349d438ec08d2b1f6761c8b78b8d13fd1dee"
      ],
      "author": {
        "name": "Eric Sesterhenn",
        "email": "snakebyte@gmx.de",
        "time": "Wed Oct 04 09:56:44 2006 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:30 2006 -0700"
      },
      "message": "USB: fix use after free in wacom_sys.c\n\nthe following commit added a use after free\nhttp://www.kernel.org/git/?p\u003dlinux/kernel/git/torvalds/linux-2.6.git;a\u003dcommit;h\u003d3D3bea733ab21247290bd552dd6a2cd3049af9adef\nFound by coverity (cid #1441)\n\nSigned-off-by: Eric Sesterhenn \u003csnakebyte@gmx.de\u003e\nSigned-off-by: \"Ping Cheng\" \u003cpingc@wacom.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "2920349d438ec08d2b1f6761c8b78b8d13fd1dee",
      "tree": "10fb227d8a4df923291eb6cbae67c1257cad241f",
      "parents": [
        "8d32e3ae5972641ee9eb813e7a5c44a2b85d3694"
      ],
      "author": {
        "name": "Eric Sesterhenn",
        "email": "[mailto:snakebyte@gmx.de]",
        "time": "Tue Oct 17 14:46:30 2006 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:30 2006 -0700"
      },
      "message": "USB: BUG_ON conversion for wacom.c\n\nthis patch converts two if () BUG(); construct to BUG_ON();\nwhich occupies less space, uses unlikely and is safer when\nBUG() is disabled.\n\nSigned-off-by: Eric Sesterhenn \u003csnakebyte@gmx.de\u003e\nAcked-by: \"Ping Cheng\" \u003cpingc@wacom.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "8d32e3ae5972641ee9eb813e7a5c44a2b85d3694",
      "tree": "115d520ebc40873b268db11a88ab9a5c3a05c763",
      "parents": [
        "64f89798da35f43c6ef6afda0541e25034513458"
      ],
      "author": {
        "name": "Ping Cheng",
        "email": "pingc@wacom.com",
        "time": "Tue Sep 26 13:34:47 2006 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 14:46:30 2006 -0700"
      },
      "message": "USB: Wacom driver updates\n\nThis fixes some issues with the current wacom driver due to the split of\nthe driver into different pieces and adds support for the Intuos3 4x6\n\nSigned-off-by: Ping Cheng \u003cpingc@wacom.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n"
    },
    {
      "commit": "64f89798da35f43c6ef6afda0541e25034513458",
      "tree": "419546d28bac423277b504b3a94ed7da333490ca",
      "parents": [
        "4e4bc305e16440ab38060d61fbcb7d774881d2f1"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 13:57:18 2006 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Tue Oct 17 13:57:18 2006 -0700"
      },
      "message": "USB: revert EHCI VIA workaround patch\n\nThis reverts 26f953fd884ea4879585287917f855c63c6b2666 which caused\nresume problems on the mac mini.\n\nCc: David Brownell \u003cdavid-b@pacbell.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "4e4bc305e16440ab38060d61fbcb7d774881d2f1",
      "tree": "6d5a2557f487a9ec881ecf7232cf1188241e4f2c",
      "parents": [
        "a052b52f4b6b77503af2647dc0c7415939d8232a"
      ],
      "author": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 10:24:25 2006 -0700"
      },
      "committer": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 10:24:25 2006 -0700"
      },
      "message": "sky2: GMAC pause frame\n\nThis reverts earlier change that attempted to fix flow control.\nDevice needs to discard pause frames, otherwise it hangs after a while.\n\nSigned-off-by: Stephen Hemminger \u003cshemminger@osdl.org\u003e\n"
    },
    {
      "commit": "a052b52f4b6b77503af2647dc0c7415939d8232a",
      "tree": "e62c42a7d2dfaceb7ddbd86e5fc8c5e444ecb77a",
      "parents": [
        "52c89cac6781dea0ee2426821cd3effae1a925d3"
      ],
      "author": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 10:24:23 2006 -0700"
      },
      "committer": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 10:24:23 2006 -0700"
      },
      "message": "sky2: accept multicast pause frames\n\nWhen using flow control, the PHY needs to accept multicast pause frames.\nWithout this fix, these frames were getting discarded by the PHY before\ndoing any flow control.\n\nSigned-off-by: Stephen Hemminger \u003cshemminger@osdl.org\u003e\n"
    },
    {
      "commit": "52c89cac6781dea0ee2426821cd3effae1a925d3",
      "tree": "dcf3f7f94a055127f3f964cd63085a70ed3a86c0",
      "parents": [
        "b6d7773462df13c105c19ab89706687ded839844"
      ],
      "author": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 10:24:18 2006 -0700"
      },
      "committer": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 10:24:18 2006 -0700"
      },
      "message": "sky2: version 1.9\n\nMark version, this has been a lot of patches.\n\nSigned-off-by: Stephen Hemminger \u003cshemminger@osdl.org\u003e\n"
    },
    {
      "commit": "b6d7773462df13c105c19ab89706687ded839844",
      "tree": "e3202eedceee73389818767ce9eb7a80f0b5b63d",
      "parents": [
        "16ad91e1c686734aaa5664cd08af0b5e9bf3af61"
      ],
      "author": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 10:24:16 2006 -0700"
      },
      "committer": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 10:24:16 2006 -0700"
      },
      "message": "sky2: no message on rx fifo overflow\n\nUnder high load it is possible to make the receiver FIFO get overloaded.\nThe driver/hardware recover properly, so there is no reason to fill the log\nwith lots of extra messages, just update counter.\n\nSigned-off-by: Stephen Hemminger \u003cshemminger@osdl.org\u003e\n"
    },
    {
      "commit": "16ad91e1c686734aaa5664cd08af0b5e9bf3af61",
      "tree": "2e4c5d3e4932c66d2c00eddee81b2df0667970fe",
      "parents": [
        "7800fddcd05a7dc89276389b96664af4f7890ea7"
      ],
      "author": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 10:24:13 2006 -0700"
      },
      "committer": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 10:24:13 2006 -0700"
      },
      "message": "sky2: flow control setting fixes\n\nThe result of flow control negotiation should not limit the next\nnegotiatition. If board is plugged into an old half duplex 10Mbit port,\nwithout pause, then replugged into a gigabit port, it should negotiate\nwhat is desired, not inherit that last negotiation.\n\nSigned-off-by: Stephen Hemminger \u003cshemminger@osdl.org\u003e\n"
    },
    {
      "commit": "7800fddcd05a7dc89276389b96664af4f7890ea7",
      "tree": "5c302f2906b3b36ab38fe4f19fd129534f556d8c",
      "parents": [
        "7c74ac1c236457e454804774e832046c1a7cc0bf"
      ],
      "author": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 10:24:10 2006 -0700"
      },
      "committer": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 10:24:10 2006 -0700"
      },
      "message": "sky2: don\u0027t reset PHY twice\n\nDon\u0027t need to reset PHY twice on startup.\n\nSigned-off-by: Stephen Hemminger \u003cshemminger@osdl.org\u003e\n"
    },
    {
      "commit": "7c74ac1c236457e454804774e832046c1a7cc0bf",
      "tree": "10d9bc000ffbec9fc94604977eef69f84a134def",
      "parents": [
        "0edea0f54e1e28bdc1ce6b02d5ca3c4c878cf959"
      ],
      "author": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 10:24:08 2006 -0700"
      },
      "committer": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 10:24:08 2006 -0700"
      },
      "message": "sky2: use duplex result bits\n\nThe result of duplex negotiation is avaliable in the phy status\nregister, so use that to simplify code and avoid rereading the PHY.\n\nSigned-off-by: Stephen Hemminger \u003cshemminger@osdl.org\u003e\n"
    },
    {
      "commit": "0edea0f54e1e28bdc1ce6b02d5ca3c4c878cf959",
      "tree": "362667dd0b62cf4af8e6769a9d756e06e2d2aef4",
      "parents": [
        "709c6e7bb07411176ef9ef660242b1e59fc87a6f"
      ],
      "author": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 10:24:07 2006 -0700"
      },
      "committer": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 10:24:07 2006 -0700"
      },
      "message": "sky2: advertising register 16 bits\n\nThe advertising bits (from ethtool.h) fit in 16 bits.\n"
    },
    {
      "commit": "709c6e7bb07411176ef9ef660242b1e59fc87a6f",
      "tree": "429b3ac2178cc3a9c437d739253b9c31da230621",
      "parents": [
        "ebc646f681a6ad5a81989a6906832e82155df283"
      ],
      "author": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 10:24:04 2006 -0700"
      },
      "committer": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 10:24:04 2006 -0700"
      },
      "message": "sky2: fiber pause bits\n\nThe advertisement bits for flow control are located in\ndifferent location on fiber (1000baseX)\n\nSigned-off-by: Stephen Hemminger \u003cshemminger@osdl.org\u003e\n"
    },
    {
      "commit": "ebc646f681a6ad5a81989a6906832e82155df283",
      "tree": "650bb7a00d2236080faa05acf52ad768648e04ea",
      "parents": [
        "e561a83be5c9cada5fa3733efdff67a2098a0c8e"
      ],
      "author": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 10:23:56 2006 -0700"
      },
      "committer": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 10:23:56 2006 -0700"
      },
      "message": "sky2: phy irq on shutdown\n\nWhen PHY is turned off on shutdown, it causes the IRQ to get stuck on.\nMake sure and disable the IRQ first, and if IRQ occurs when device\nis not running, don\u0027t access PHY because that will hang.\n\nSigned-off-by: Stephen Hemminger \u003cshemminger@osdl.org\u003e\n"
    },
    {
      "commit": "e561a83be5c9cada5fa3733efdff67a2098a0c8e",
      "tree": "f8c85b3dc8f7af7dfe7ec5cf30c6002ea45e82e1",
      "parents": [
        "2bffc23a01a489ad46ba7d61a1a657cecec87cc8"
      ],
      "author": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 10:20:51 2006 -0700"
      },
      "committer": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 10:20:51 2006 -0700"
      },
      "message": "sky2: turn of workaround timer\n\nThe workaround timer is not needed in most systems with proper IRQ\nrouting and by perodically waking up it adds to laptop power consumption.\n\nSigned-off-by: Stephen Hemminger \u003cshemminger@osdl.org\u003e\n"
    },
    {
      "commit": "2bffc23a01a489ad46ba7d61a1a657cecec87cc8",
      "tree": "c51f1e9da8eb1e8dde9ae197c4ba61849d6d772e",
      "parents": [
        "43f82216f0bd114599f4a221ae6924f3658a0c9a"
      ],
      "author": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 10:17:18 2006 -0700"
      },
      "committer": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 10:17:18 2006 -0700"
      },
      "message": "sky2: MSI test is only a warning\n\nSome motherboards don\u0027t implement MSI correctly. The driver handles this\nbut the warning is too verbose and overly cautious.\n\nSigned-off-by: Stephen Hemminger \u003cshemminger@osdl.org\u003e\n"
    },
    {
      "commit": "43f82216f0bd114599f4a221ae6924f3658a0c9a",
      "tree": "89dbd85a0a1882ae38e6b61e360b365c018195fd",
      "parents": [
        "20f85957667ccc53183b5ffac22213d75e317408",
        "b435fdcda126db42343b8055d04a0a27c229717b"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:56:43 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:56:43 2006 -0700"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input\n\n* git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input:\n  Input: fm801-gp - handle errors from pci_enable_device()\n  Input: gameport core - handle errors returned by device_bind_driver()\n  Input: serio core - handle errors returned by device_bind_driver()\n  Lockdep: fix compile error in drivers/input/serio/serio.c\n  Input: serio - add lockdep annotations\n  Lockdep: add lockdep_set_class_and_subclass() and lockdep_set_subclass()\n  Input: atkbd - supress \"too many keys\" error message\n  Input: i8042 - supress ACK/NAKs when blinking during panic\n  Input: add missing exports to fix modular build\n"
    },
    {
      "commit": "20f85957667ccc53183b5ffac22213d75e317408",
      "tree": "d3db6c50c32dac25757d6f7dff977ccadc28a714",
      "parents": [
        "7786ce192fc4917fb9b789dd823476ff8fd6cf66",
        "284a940675a64df253e3dffc60b09bb4bbb149e4"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:20:57 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:20:57 2006 -0700"
      },
      "message": "Merge branch \u0027merge\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc\n\n* \u0027merge\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc:\n  [POWERPC] Check for offline nodes in pci NUMA code\n  [POWERPC] Better check in show_instructions\n  [POWERPC] POWER6 has 6 PMCs\n  [POWERPC] Never panic when taking altivec exceptions from userspace\n  [POWERPC] Fix IO Window Updates on P2P bridges.\n  [POWERPC] Add Makefile entry for MPC832x_mds support\n  [POWERPC] Fix MPC8360EMDS PB board support\n  [POWERPC] ppc: Add missing calls to set_irq_regs\n  [POWERPC] Off-by-one in /arch/ppc/platforms/mpc8*\n  [POWERPC] Add DOS partition table support to mpc834x_itx_defconfig\n  [POWERPC] spufs: fix support for read/write on cntl\n  [POWERPC] Don\u0027t crash on cell with 2 BEs when !CONFIG_NUMA\n"
    },
    {
      "commit": "7786ce192fc4917fb9b789dd823476ff8fd6cf66",
      "tree": "3ec803c1c77ff22bfe6076ea4d90a27f888b4fad",
      "parents": [
        "04518bfe8eac2e82b476fb2b0093527adc2bc791"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Tue Oct 17 00:10:40 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:49 2006 -0700"
      },
      "message": "[PATCH] ISDN: check for userspace copy faults\n\nMost of the ISDN -\u003ereadstat() implementations needed to check\ncopy_to_user() and put_user() return values.\n\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\nCc: Karsten Keil \u003ckkeil@suse.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "04518bfe8eac2e82b476fb2b0093527adc2bc791",
      "tree": "4b90b18cb60d1db94325675886b74f0aa0bf346f",
      "parents": [
        "078d396598401dbaa88d5f95ec45579f9d3dce0e"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Tue Oct 17 00:10:39 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:49 2006 -0700"
      },
      "message": "[PATCH] ISDN: fix drivers, by handling errors thrown by -\u003ereadstat()\n\nThis is a particularly ugly on-failure bug, possibly security, since the\nlack of error handling here is covering up another class of bug: failure to\nhandle copy_to_user() return values.\n\nThe I4L API function -\u003ereadstat() returns an integer, and by looking at\nseveral existing driver implementations, it is clear that a negative return\nvalue was meant to indicate an error.\n\nGiven that several drivers already return a negative value indicating an\nerrno-style error, the current code would blindly accept that [negative]\nvalue as a valid amount of bytes read.  Obvious damage ensues.\n\nCorrecting -\u003ereadstat() handling to properly notice errors fixes the\nexisting code to work correctly on error, and enables future patches to\nmore easily indicate errors during operation.\n\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\nCc: Karsten Keil \u003ckkeil@suse.de\u003e\nCc: \u003cstable@kernel.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "078d396598401dbaa88d5f95ec45579f9d3dce0e",
      "tree": "747f189ffa8a1329b1cab8f048b12992d89e9cd4",
      "parents": [
        "0d9ba869e103d91d471146378ad85bf1fb8e74b4"
      ],
      "author": {
        "name": "Amol Lad",
        "email": "amol@verismonetworks.com",
        "time": "Tue Oct 17 00:10:37 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:48 2006 -0700"
      },
      "message": "[PATCH] drivers/isdn/isdnloop: save_flags()/cli(), restore_flags() replaced appropriately\n\nSigned-off-by: Amol Lad \u003camol@verismonetworks.com\u003e\nAcked-by: Karsten Keil \u003ckkeil@suse.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "0d9ba869e103d91d471146378ad85bf1fb8e74b4",
      "tree": "9892fa0c36e9ac88ab6810a8b233426747a28423",
      "parents": [
        "bd5349cfd2b9bbb10a3dbcd3fe5cbaabe0b2ab9e"
      ],
      "author": {
        "name": "Amol Lad",
        "email": "amol@verismonetworks.com",
        "time": "Tue Oct 17 00:10:36 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:48 2006 -0700"
      },
      "message": "[PATCH] drivers/isdn/hysdn: save_flags()/cli(), restore_flags() replaced appropriately\n\nWith Karsten Keil \u003ckkeil@suse.de\u003e\n\nsave_flags()/cli() pair is replaced with spin_lock_irqsave() and\nrestore_flags() replaced with spin_unlock_irqrestore()\n\nTested compile only using allmodconfig\n\nSigned-off-by: Amol Lad \u003camol@verismonetworks.com\u003e\nAcked-by: Karsten Keil \u003ckkeil@suse.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "bd5349cfd2b9bbb10a3dbcd3fe5cbaabe0b2ab9e",
      "tree": "20a55c6592f0934d6dccebb7972d28d120b4badd",
      "parents": [
        "bea493a031fe3337f4fe5479e8e865513828ea76"
      ],
      "author": {
        "name": "Neil Brown",
        "email": "neilb@suse.de",
        "time": "Tue Oct 17 00:10:35 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:48 2006 -0700"
      },
      "message": "[PATCH] Convert cpu hotplug notifiers to use raw_notifier instead of blocking_notifier\n\nThe use of blocking notifier by _cpu_up and _cpu_down in cpu.c has two\nproblem.\n\n1/ An interaction with the workqueue notifier causes lockdep to spit a\n   warning.\n\n2/ A notifier could conceivable be added or removed while _cpu_up or\n   _cpu_down are in process.  As each notifier is called twice (prepare\n   then commit/abort) this could be unhealthy.\n\nTo fix to we simply take cpu_add_remove_lock while adding or removing\nnotifiers to/from the list.\n\nThis makes the \u0027blocking\u0027 usage unnecessary as all accesses to cpu_chain\nare now protected by cpu_add_remove_lock.  So change \"blocking\" to \"raw\" in\nall relevant places.  This fixes 1.\n\nCredit: Andrew Morton\nCc: Rusty Russell \u003crusty@rustcorp.com.au\u003e\nCc: Michal Piotrowski \u003cmichal.k.k.piotrowski@gmail.com\u003e (reporter)\nSigned-off-by: Neil Brown \u003cneilb@suse.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "bea493a031fe3337f4fe5479e8e865513828ea76",
      "tree": "e8876149b729076e0104b59f387e615dcd2e7a76",
      "parents": [
        "91b943ee4afa2037678dc1db30b89baef0e17090"
      ],
      "author": {
        "name": "Peter Zijlstra",
        "email": "a.p.zijlstra@chello.nl",
        "time": "Tue Oct 17 00:10:33 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:48 2006 -0700"
      },
      "message": "[PATCH] rt-mutex: fixup rt-mutex debug code\n\nBUG: warning at kernel/rtmutex-debug.c:125/rt_mutex_debug_task_free() (Not tainted)\n [\u003cc04051e3\u003e] show_trace_log_lvl+0x58/0x16a\n [\u003cc04057f0\u003e] show_trace+0xd/0x10\n [\u003cc0405900\u003e] dump_stack+0x19/0x1b\n [\u003cc043f03d\u003e] rt_mutex_debug_task_free+0x35/0x6a\n [\u003cc04224c0\u003e] free_task+0x15/0x24\n [\u003cc042378c\u003e] copy_process+0x12bd/0x1324\n [\u003cc0423835\u003e] do_fork+0x42/0x113\n [\u003cc04021dd\u003e] sys_fork+0x19/0x1b\n [\u003cc0403fb7\u003e] syscall_call+0x7/0xb\n\nIn copy_process(), dup_task_struct() also duplicates the -\u003epi_lock,\n-\u003epi_waiters and -\u003epi_blocked_on members.  rt_mutex_debug_task_free()\ncalled from free_task() validates these members.  However free_task() can\nbe invoked before these members are reset for the new task.\n\nMove the initialization code before the first bail that can hit free_task().\n\nSigned-off-by: Peter Zijlstra \u003ca.p.zijlstra@chello.nl\u003e\nAcked-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "91b943ee4afa2037678dc1db30b89baef0e17090",
      "tree": "d9ec82560d81a8616c3d0b2bfdf91d2c080809b5",
      "parents": [
        "3f3fd3c055853d11295a1ec6cdc81e37e2182d16"
      ],
      "author": {
        "name": "Aneesh Kumar K.V",
        "email": "aneesh.kumar@gmail.com",
        "time": "Tue Oct 17 00:10:32 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:48 2006 -0700"
      },
      "message": "[PATCH] Add entry.S labels to tag file\n\nAdd functions defined using ENTRY macro to the tags file.\n\nSigned-off-by: Aneesh Kumar K.V \u003caneesh.kumar@gmail.com\u003e\nCc: Sam Ravnborg \u003csam@ravnborg.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3f3fd3c055853d11295a1ec6cdc81e37e2182d16",
      "tree": "1a0c01f2b35d5fe773b1b204ce10808ca6a0c9ae",
      "parents": [
        "dabad0568a5935e9f4903f5fd1d8f22b1c7c88c7"
      ],
      "author": {
        "name": "Greg Banks",
        "email": "gnb@sgi.com",
        "time": "Tue Oct 17 00:10:30 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:48 2006 -0700"
      },
      "message": "[PATCH] kbuild: allow multi-word $M in Makefile.modpost\n\nSome people want to do crazy things like pass multiple directories as the\nvalue of $(SUBDIRS) or $M.  Mostly this kinda works, except that\nMakefile.modpost constructs a modpost commandline which fails modpost\u0027s\nargument parsing.  This patch fixes that little wrinkle.\n\nSigned-off-by: Greg Banks \u003cgnb@melbourne.sgi.com\u003e\nCc: Sam Ravnborg \u003csam@ravnborg.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "dabad0568a5935e9f4903f5fd1d8f22b1c7c88c7",
      "tree": "8f095cf80e83c01b3262451fc1c91b4ee22ff26f",
      "parents": [
        "ea6f94dfe9db4d19a39e774cfafa5c9428a9fdbc"
      ],
      "author": {
        "name": "Akinobu Mita",
        "email": "akinobu.mita@gmail.com",
        "time": "Tue Oct 17 00:10:28 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:48 2006 -0700"
      },
      "message": "[PATCH] epca: prevent panic on tty_register_driver() failure\n\nMake epca fail on initialization failure instead of panic.\n\nCc: \"Digi International, Inc\" \u003cEng.Linux@digi.com\u003e\nSigned-off-by: Akinobu Mita \u003cakinobu.mita@gmail.com\u003e\nAcked-by: Alan Cox \u003calan@redhat.com\u003e\nAcked-by: Scott Kilau \u003cscottk@digi.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "ea6f94dfe9db4d19a39e774cfafa5c9428a9fdbc",
      "tree": "22c0b158dd9bf54e516eb7a9d6f50e3405b729d7",
      "parents": [
        "3864c4894a7f4c03d69a90082a5bb0ab10e437ab"
      ],
      "author": {
        "name": "Akinobu Mita",
        "email": "akinobu.mita@gmail.com",
        "time": "Tue Oct 17 00:10:27 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:48 2006 -0700"
      },
      "message": "[PATCH] rd: memory leak on rd_init() failure\n\nIf RAM disk driver initialization fails due to blk_alloc_queue() faulure, the\ngendisk structs stored in rd_disks[] will not be freed completely.\n\nThis patch resolves that memory leak case by doing alloc_disk() and\nblk_alloc_queue() at the same time.\n\nSigned-off-by: Akinobu Mita \u003cakinobu.mita@gmail.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3864c4894a7f4c03d69a90082a5bb0ab10e437ab",
      "tree": "4d7ad8c494593d335f857499a82ddb29e34debec",
      "parents": [
        "6a15f46c1272afd3010259067451bf0df04f6511"
      ],
      "author": {
        "name": "Peter Zijlstra",
        "email": "a.p.zijlstra@chello.nl",
        "time": "Tue Oct 17 00:10:26 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:47 2006 -0700"
      },
      "message": "[PATCH] lockdep: annotate i386 apm\n\nLockdep doesn\u0027t like to enable interrupts when they are enabled already.\n\nBUG: warning at kernel/lockdep.c:1814/trace_hardirqs_on() (Not tainted)\n [\u003cc04051ed\u003e] show_trace_log_lvl+0x58/0x16a\n [\u003cc04057fa\u003e] show_trace+0xd/0x10\n [\u003cc0405913\u003e] dump_stack+0x19/0x1b\n [\u003cc043abfb\u003e] trace_hardirqs_on+0xa2/0x11e\n [\u003cc041463c\u003e] apm_bios_call_simple+0xcd/0xfd\n [\u003cc0415242\u003e] apm+0x92/0x5b1\n [\u003cc0402005\u003e] kernel_thread_helper+0x5/0xb\nDWARF2 unwinder stuck at kernel_thread_helper+0x5/0xb\nLeftover inexact backtrace:\n [\u003cc04057fa\u003e] show_trace+0xd/0x10\n [\u003cc0405913\u003e] dump_stack+0x19/0x1b\n [\u003cc043abfb\u003e] trace_hardirqs_on+0xa2/0x11e\n [\u003cc041463c\u003e] apm_bios_call_simple+0xcd/0xfd\n [\u003cc0415242\u003e] apm+0x92/0x5b1\n [\u003cc0402005\u003e] kernel_thread_helper+0x5/0xb\n\nSigned-off-by: Peter Zijlstra \u003ca.p.zijlstra@chello.nl\u003e\nCc: Stephen Rothwell \u003csfr@canb.auug.org.au\u003e\nCc: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "6a15f46c1272afd3010259067451bf0df04f6511",
      "tree": "21968f8737159e2ef24c8fef487fb633ba2c9681",
      "parents": [
        "eee44cca665aa1a5663e6a00c2bdfc275739dac5"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Tue Oct 17 00:10:25 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:47 2006 -0700"
      },
      "message": "[PATCH] rtc: fix printk of 64-bit res on 32-bit platform\n\nWith 64-bit resources on 32-bit platforms, the resource address might be\nlarger than a void*.  Fix printk to work regardless of resource size.\n\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\nCc: Alessandro Zummo \u003ca.zummo@towertech.it\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "eee44cca665aa1a5663e6a00c2bdfc275739dac5",
      "tree": "86bf3f4d3d265a487d6f8e029e2e43dadf812e2c",
      "parents": [
        "6b5f29675c6a1041aefc147271508bd56cf2b761"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Tue Oct 17 00:10:23 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:47 2006 -0700"
      },
      "message": "[PATCH] fs/partitions/check: add sysfs error handling\n\nHandle errors thrown in disk_sysfs_symlinks(), and propagate back to\ncaller.\n\nThe callers and associated functions don\u0027t do a real good job of handling\nkobject errors anyway (add_partition, register_disk, rescan_partitions), so\nthis should do until something better comes along.\n\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\nCc: Greg KH \u003cgreg@kroah.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "6b5f29675c6a1041aefc147271508bd56cf2b761",
      "tree": "097426aac84e322df5188954b435a86281bbb40a",
      "parents": [
        "12fda16814bba05a84a49a1da25a069d6c249758"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Tue Oct 17 00:10:22 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:46 2006 -0700"
      },
      "message": "[PATCH] I2O: handle a few sysfs errors\n\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\nCc: Markus Lidel \u003cMarkus.Lidel@shadowconnect.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "12fda16814bba05a84a49a1da25a069d6c249758",
      "tree": "05cb63f14784190d75e98d6ac3f9b2e5949a5539",
      "parents": [
        "58ff407bee5a55f9c1188a3f9d70ffc79485183c"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Tue Oct 17 00:10:20 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:46 2006 -0700"
      },
      "message": "[PATCH] drivers/led: handle sysfs errors\n\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\nCc: Richard Purdie \u003crpurdie@rpsys.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "58ff407bee5a55f9c1188a3f9d70ffc79485183c",
      "tree": "58132c31553a16b09e10f876561cd9ff1132fa77",
      "parents": [
        "d343fce148a4eee24a907a05c4101d3268045aae"
      ],
      "author": {
        "name": "Jan Kara",
        "email": "jack@suse.cz",
        "time": "Tue Oct 17 00:10:19 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:46 2006 -0700"
      },
      "message": "[PATCH] Fix IO error reporting on fsync()\n\nWhen IO error happens on metadata buffer, buffer is freed from memory and\nlater fsync() is called, filesystems like ext2 fail to report EIO.  We\n\nsolve the problem by introducing a pointer to associated address space into\nthe buffer_head.  When a buffer is removed from a list of metadata buffers\nassociated with an address space, IO error is transferred from the buffer to\nthe address space, so that fsync can later report it.\n\nSigned-off-by: Jan Kara \u003cjack@suse.cz\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "d343fce148a4eee24a907a05c4101d3268045aae",
      "tree": "b8a110f85050b2425ce85434c01c0eac0076472b",
      "parents": [
        "4481d1038f4116f3f5c307d919e6dc815a3acbb9"
      ],
      "author": {
        "name": "NeilBrown",
        "email": "neilb@suse.de",
        "time": "Tue Oct 17 00:10:18 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:46 2006 -0700"
      },
      "message": "[PATCH] knfsd: Allow lockd to drop replies as appropriate\n\nIt is possible for the -\u003efopen callback from lockd into nfsd to find that an\nanswer cannot be given straight away (an upcall is needed) and so the request\nhas to be \u0027dropped\u0027, to be retried later.  That error status is not currently\npropagated back.\n\nSo:\n  Change nlm_fopen to return nlm error codes (rather than a private\n  protocol) and define a new nlm_drop_reply code.\n  Cause nlm_drop_reply to cause the rpc request to get rpc_drop_reply\n  when this error comes back.\n  Cause svc_process to drop a request which returns a status of\n  rpc_drop_reply.\n\n[akpm@osdl.org: fix warning storm]\nCc: Marc Eshel \u003ceshel@almaden.ibm.com\u003e\nSigned-off-by: Neil Brown \u003cneilb@suse.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "4481d1038f4116f3f5c307d919e6dc815a3acbb9",
      "tree": "4424568a3b335a379796eb867e3c0d898b2dc5d3",
      "parents": [
        "0942176f4353ffebcd6e3f95abce9fd8e24f2cb1"
      ],
      "author": {
        "name": "NeilBrown",
        "email": "neilb@suse.de",
        "time": "Tue Oct 17 00:10:17 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:46 2006 -0700"
      },
      "message": "[PATCH] knfsd: Fix bug in recent lockd patches that can cause reclaim to fail\n\nWhen an nfs server shuts down, lockd needs to release all the locks even\nthough the client still holds them.\n\nIt should therefore not \u0027unmonitor\u0027 the clients, so that the files in nfs/sm\nwill still be there when the nfs server restarts, so that those clients will\nbe told to reclaim their locks.\n\nHowever the hosts are fully unmonitored, so statd may well remove the files.\n\nlockd has a test for \u0027sm_sticky\u0027 and avoid the unmonitor call if it is set,\nbut it is currently not set.\n\nSo set it when tearing down lockd.\n\nSigned-off-by: Neil Brown \u003cneilb@suse.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "0942176f4353ffebcd6e3f95abce9fd8e24f2cb1",
      "tree": "9a1d63914b9e13f9f01ebb31aa747c18c8998dcb",
      "parents": [
        "9801d8a39cfe6c34f39f9552a246a6bd002e735e"
      ],
      "author": {
        "name": "J. Bruce Fields",
        "email": "bfields@fieldses.org",
        "time": "Tue Oct 17 00:10:16 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:46 2006 -0700"
      },
      "message": "[PATCH] knfsd: nfsd4: Fix error handling in nfsd\u0027s callback client\n\nCoverity noticed that the error handling code in the NFSv4 callback client\nsets cb-\u003ecb_client to NULL, then calls rpc_shutdown_client with the NULL\npointer.\n\nCoverity: #cid 1397\n\nSigned-off-by: Chuck Lever \u003cchuck.lever@oracle.com\u003e\nSigned-off-by: J. Bruce Fields \u003cbfields@citi.umich.edu\u003e\nSigned-off-by: Neil Brown \u003cneilb@suse.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "9801d8a39cfe6c34f39f9552a246a6bd002e735e",
      "tree": "1bc534709dc02d308532f5285b9f376ca2f2ec31",
      "parents": [
        "dc730e173785e29b297aa605786c94adaffe2544"
      ],
      "author": {
        "name": "J. Bruce Fields",
        "email": "bfields@fieldses.org",
        "time": "Tue Oct 17 00:10:14 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:46 2006 -0700"
      },
      "message": "[PATCH] knfsd: nfsd4: fix open permission checking\n\nWe weren\u0027t actually checking for SHARE_ACCESS_WRITE, with the result that the\nowner could open a non-writeable file for write!\n\nContinue to allow DENY_WRITE only with write access.\n\nThanks to Jim Rees for reporting the bug.\n\nSigned-off-by: J. Bruce Fields \u003cbfields@citi.umich.edu\u003e\nSigned-off-by: Neil Brown \u003cneilb@suse.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "dc730e173785e29b297aa605786c94adaffe2544",
      "tree": "3ff7089bcc454d730cbf39b5609472dfc52b56b4",
      "parents": [
        "e956edd0523b6b48ed367c63b0c82d8f4c447a58"
      ],
      "author": {
        "name": "J. Bruce Fields",
        "email": "bfields@fieldses.org",
        "time": "Tue Oct 17 00:10:13 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:45 2006 -0700"
      },
      "message": "[PATCH] knfsd: nfsd4: fix owner-override on open\n\nIf a client creates a file using an open which sets the mode to 000, or if a\nchmod changes permissions after a file is opened, then situations may arise\nwhere an NFS client knows that some IO is permitted (because a process holds\nthe file open), but the NFS server does not (because it doesn\u0027t know about the\nopen, and only sees that the IO conflicts with the current mode of the file).\n\nAs a hack to solve this problem, NFS servers normally allow the owner to\noverride permissions on IO.  The client can still enforce correct\npermissions-checking on open by performing an explicit access check.\n\nIn NFSv4 the client can rely on the explicit on-the-wire open instead of an\naccess check.\n\nTherefore we should not be allowing the owner to override permissions on an\nover-the-wire open!\n\nHowever, we should still allow the owner to override permissions in the case\nwhere the client is claiming an open that it already made either before a\nreboot, or while it was holding a delegation.\n\nThanks to Jim Rees for reporting the bug.\n\nSigned-off-by: J. Bruce Fields \u003cbfields@citi.umich.edu\u003e\nSigned-off-by: Neil Brown \u003cneilb@suse.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "e956edd0523b6b48ed367c63b0c82d8f4c447a58",
      "tree": "a45b03edfa376a769721b69211a9882fcd6f8060",
      "parents": [
        "d2a85164aaa8d514ef5efbf5d05746e85dd13ddd"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Tue Oct 17 00:10:12 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:45 2006 -0700"
      },
      "message": "[PATCH] fuse: fix dereferencing dentry parent\n\nThere\u0027s no locking for -\u003ed_revalidate, so fuse_dentry_revalidate() should use\ndget_parent() instead of simply dereferencing -\u003ed_parent.\n\nDue to topology changes in the directory tree the parent could become negative\nor be destroyed while being used.  There hasn\u0027t been any reports about this\nyet.\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "d2a85164aaa8d514ef5efbf5d05746e85dd13ddd",
      "tree": "82a10eff007860a9bfc515d037cc2fea6c999bc0",
      "parents": [
        "265126ba9e1f8e217e61d1017c6609f76828aa7a"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Tue Oct 17 00:10:11 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:45 2006 -0700"
      },
      "message": "[PATCH] fuse: fix handling of moved directory\n\nFuse considered it an error (EIO) if lookup returned a directory inode, to\nwhich a dentry already refered.  This is because directory aliases are not\nallowed.\n\nBut in a network filesystem this could happen legitimately, if a directory is\nmoved on a remote client.  This patch attempts to relax the restriction by\ntrying to first evict the offending alias from the cache.  If this fails, it\nstill returns an error (EBUSY).\n\nA rarer situation is if an mkdir races with an indenpendent lookup, which\nfinds the newly created directory already moved.  In this situation the mkdir\nshould return success, but that would be incorrect, since the dentry cannot be\ninstantiated, so return EBUSY.\n\nPreviously checking for a directory alias and instantiation of the dentry\nweren\u0027t done atomically in lookup/mkdir, hence two such calls racing with each\nother could create aliased directories.  To prevent this introduce a new\nper-connection mutex: fuse_conn-\u003einst_mutex, which is taken for instantiations\nwith a directory inode.\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "265126ba9e1f8e217e61d1017c6609f76828aa7a",
      "tree": "27eeee59ad960f3c31d589caeb69f988bf4e78ce",
      "parents": [
        "8da5ff23ce0a84d9845b01e6fe5047e17836bf5a"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Tue Oct 17 00:10:09 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:45 2006 -0700"
      },
      "message": "[PATCH] fuse: fix spurious BUG\n\nFix a spurious BUG in an unlikely race, where at least three parallel lookups\nreturn the same inode, but with different file type.  This has not yet been\nobserved in real life.\n\nAllowing unlimited retries could delay fuse_iget() indefinitely, but this is\nreally for the broken userspace filesystem to worry about.\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "8da5ff23ce0a84d9845b01e6fe5047e17836bf5a",
      "tree": "dc711306a3793c91a5df7fc0223738a40ea3fb7c",
      "parents": [
        "7762f5a0b709b415fda132258ad37b9f2a1db994"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Tue Oct 17 00:10:08 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:45 2006 -0700"
      },
      "message": "[PATCH] fuse: locking fix for nlookup\n\nAn inode could be returned by independent parallel lookups, in this case an\nupdate of the lookup counter could be lost resulting in a memory leak in\nuserspace.\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "7762f5a0b709b415fda132258ad37b9f2a1db994",
      "tree": "7eb1b54dc392f2100bf2cf1e407a2480a4680e7d",
      "parents": [
        "9ffbb9162312fd8113037cb3d94f787f06bbfa9a"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Tue Oct 17 00:10:07 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:45 2006 -0700"
      },
      "message": "[PATCH] document i_size_write locking rules\n\nUnless someone reads the documentation for write_seqcount_{begin,end} it is\nnot obvious, that i_size_write() needs locking.  Especially, that lack of such\nlocking can result in a system hang.\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "9ffbb9162312fd8113037cb3d94f787f06bbfa9a",
      "tree": "a8194bb542dcda56271b44d7de23f2a72ecac900",
      "parents": [
        "48d1a7ea6373337985f27dc1c707649469df5827"
      ],
      "author": {
        "name": "Miklos Szeredi",
        "email": "miklos@szeredi.hu",
        "time": "Tue Oct 17 00:10:06 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:45 2006 -0700"
      },
      "message": "[PATCH] fuse: fix hang on SMP\n\nFuse didn\u0027t always call i_size_write() with i_mutex held which caused rare\nhangs on SMP/32bit.  This bug has been present since fuse-2.2, well before\nbeing merged into mainline.\n\nThe simplest solution is to protect i_size_write() with the per-connection\nspinlock.  Using i_mutex for this purpose would require some restructuring of\nthe code and I\u0027m not even sure it\u0027s always safe to acquire i_mutex in all\nplaces i_size needs to be set.\n\nSince most of vmtruncate is already duplicated for other reasons, duplicate\nthe remaining part as well, making all i_size_write() calls internal to fuse.\n\nUsing i_size_write() was unnecessary in fuse_init_inode(), since this function\nis only called on a newly created locked inode.\n\nReported by a few people over the years, but special thanks to Dana Henriksen\nwho was persistent enough in helping me debug it.\n\nSigned-off-by: Miklos Szeredi \u003cmiklos@szeredi.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "48d1a7ea6373337985f27dc1c707649469df5827",
      "tree": "38139069fec8acb041ed2fae759d9770e2eb2e88",
      "parents": [
        "a460e745e8f9c75a0525ff94154a0629f9d3e05d"
      ],
      "author": {
        "name": "Alexey Dobriyan",
        "email": "adobriyan@gmail.com",
        "time": "Tue Oct 17 00:10:05 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:45 2006 -0700"
      },
      "message": "[PATCH] sx: fix user-visible typo (devic)\n\nSigned-off-by: Alexey Dobriyan \u003cadobriyan@gmail.com\u003e\nAcked-by: Alan Cox \u003calan@redhat.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "a460e745e8f9c75a0525ff94154a0629f9d3e05d",
      "tree": "38ef71d81c2ca2f979319b0a91f34f0cf9998643",
      "parents": [
        "308ba5fcf89b6e328f9290067181c1e4d772fdc9"
      ],
      "author": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Tue Oct 17 00:10:03 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:45 2006 -0700"
      },
      "message": "[PATCH] genirq: clean up irq-flow-type naming\n\nIntroduce desc-\u003ename and eliminate the handle_irq_name() hack.  Add\nset_irq_chip_and_handler_name() to set the flow type and name at once.\n\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nAcked-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\nCc: \"Eric W. Biederman\" \u003cebiederm@xmission.com\u003e\nCc: Matthew Wilcox \u003cwilly@debian.org\u003e\nCc: Kyle McMartin \u003ckyle@mcmartin.ca\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "308ba5fcf89b6e328f9290067181c1e4d772fdc9",
      "tree": "0c294fa2202429b0fd76e5571a1934fae0a5951c",
      "parents": [
        "a4bb2cf1c3d30e7498e5561b22246b5bcbfe2e15"
      ],
      "author": {
        "name": "David Woodhouse",
        "email": "dwmw2@infradead.org",
        "time": "Tue Oct 17 00:10:02 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:44 2006 -0700"
      },
      "message": "[PATCH] fix `make headers_install\u0027\n\nFix this:\n\nmake[3]: *** No rule to make target\n`/mnt/md0/devel/linux-git/include/linux/version.h\u0027, needed by\n`/mnt/md0/devel/linux-git-obj/usr/include/linux/version.h\u0027.  Stop.\nmake[2]: *** [linux] Error 2\nmake[1]: *** [headers_install] Error 2\n\nSigned-off-by: David Woodhouse \u003cdwmw2@infradead.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "a4bb2cf1c3d30e7498e5561b22246b5bcbfe2e15",
      "tree": "2f8a81498718d563b928c2e2c3d139ec799f4b02",
      "parents": [
        "c60099bfe3a5e6fa22a930627689b3769c52153f"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Tue Oct 17 00:10:00 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:44 2006 -0700"
      },
      "message": "[PATCH] drivers/char/specialix.c: fix the baud conversion\n\nCorrect the following bugs introduced by commit\n67cc0161ecc9ebee6eba4af6cbfdba028090b1b9:\n\n- remove one remaining and now incorrect baud_table[] usage\n- \"baud +\u003d\" is no longer correct\n\nThe former bug was spotted by the Coverity checker.\n\nRolf Eike Beer spotted a bug in the initial version of my patch.\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nCc: Alan Cox \u003calan@lxorguk.ukuu.org.uk\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "c60099bfe3a5e6fa22a930627689b3769c52153f",
      "tree": "477a477f6260da7c9c7871c266205d2212e17a2c",
      "parents": [
        "1fec74a9cda95772887c82ede5c0ac60f5be857e"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Tue Oct 17 00:09:59 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:44 2006 -0700"
      },
      "message": "[PATCH] swsusp: fix memory leaks\n\nMy fancy new swsusp IO code had a big memory leak.  It\u0027s somewhat invisible\nbecause the whole mem_map[] gets overwritten after resume, but it can cause us\nto get low on memory during the actual suspend process.\n\nCc: \"Rafael J. Wysocki\" \u003crjw@sisk.pl\u003e\nCc: Pavel Machek \u003cpavel@ucw.cz\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "1fec74a9cda95772887c82ede5c0ac60f5be857e",
      "tree": "c3d0cc4270d37bff046668a0f437950c0788939c",
      "parents": [
        "286e1ea3ac1ca4f503ebbb3020bdb0cbe6adffac"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Tue Oct 17 00:09:58 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:44 2006 -0700"
      },
      "message": "[PATCH] acpi_processor_latency_notifier(): UP warning fix\n\ndrivers/acpi/processor_idle.c:1112: warning: \u0027smp_callback\u0027 defined but not used\n\nCc: Len Brown \u003clenb@kernel.org\u003e\nCc: Arjan van de Ven \u003carjan@infradead.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "286e1ea3ac1ca4f503ebbb3020bdb0cbe6adffac",
      "tree": "b8e332d7aa9a64d6fe49501deb3ac5a18a708f3f",
      "parents": [
        "c430169e0c9f42f2cd27e0a6161e7ff4dc7e608d"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Tue Oct 17 00:09:57 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:44 2006 -0700"
      },
      "message": "[PATCH] vmalloc(): don\u0027t pass __GFP_ZERO to slab\n\nA recent change to the vmalloc() code accidentally resulted in us passing\n__GFP_ZERO into the slab allocator.  But we only wanted __GFP_ZERO for the\nactual pages whcih are being vmalloc()ed, and passing __GFP_ZERO into slab is\nnot a rational thing to ask for.\n\nCc: Jonathan Corbet \u003ccorbet@lwn.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "c430169e0c9f42f2cd27e0a6161e7ff4dc7e608d",
      "tree": "9d91a42684644fdf76c8c7b0667beeb36b52dcf3",
      "parents": [
        "f9b2e97bea228739b74b541033b1119c5707200b"
      ],
      "author": {
        "name": "Francisco Larramendi",
        "email": "flarramendi@gmail.com",
        "time": "Tue Oct 17 00:09:53 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:44 2006 -0700"
      },
      "message": "[PATCH] rtc-max6902: month conversion fix\n\nFix October-only BCD-to-binary conversion bug:\n\n\t0x08 -\u003e 7\n\t0x09 -\u003e 8\n\t0x10 -\u003e 15 (!)\n\t0x11 -\u003e 19\n\nFixes http://bugzilla.kernel.org/show_bug.cgi?id\u003d7361\n\nCc: Raphael Assenat \u003craph@raphnet.net\u003e\nCc: Alessandro Zummo \u003ca.zummo@towertech.it\u003e\nCc: \u003cstable@kernel.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "f9b2e97bea228739b74b541033b1119c5707200b",
      "tree": "7e71ebdebb36276f6899c32ee1affb0fd1f5f3f3",
      "parents": [
        "91828a405ae454a9503c41a7744f6ff877a80714"
      ],
      "author": {
        "name": "Evgeniy Polyakov",
        "email": "johnpol@2ka.mipt.ru",
        "time": "Tue Oct 17 00:09:47 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:44 2006 -0700"
      },
      "message": "[PATCH] w1 kconfig fix\n\nRemove dependency of w1 subsytem from connector, only w1_con must depend on\nit.  With attached patch applied to vanilla 2.6.19-git things works fine.\n\nSigned-off-by: Evgeniy Polyakov \u003cjohnpol@2ka.mipt.ru\u003e\nCc: \u003cdmb@pochta.ru\u003e\nCc: Greg KH \u003cgreg@kroah.com\u003e\nCc: Roman Zippel \u003czippel@linux-m68k.org\u003e\nCc: \"Randy.Dunlap\" \u003crdunlap@xenotime.net\u003e\nCc: Adrian Bunk \u003cbunk@stusta.de\u003e\nAcked-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": "91828a405ae454a9503c41a7744f6ff877a80714",
      "tree": "aa1f051da60f320675a970ad304a9987ca1d7ce3",
      "parents": [
        "5c496374a72320279ddb86291ef709e090a5d531"
      ],
      "author": {
        "name": "David M. Grimes",
        "email": "dgrimes@navisite.com",
        "time": "Tue Oct 17 00:09:45 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:43 2006 -0700"
      },
      "message": "[PATCH] knfsd: add nfs-export support to tmpfs\n\nWe need to encode a decode the \u0027file\u0027 part of a handle.  We simply use the\ninode number and generation number to construct the filehandle.\n\nThe generation number is the time when the file was created.  As inode numbers\ncycle through the full 32 bits before being reused, there is no real chance of\nthe same inum being allocated to different files in the same second so this is\nsuitably unique.  Using time-of-day rather than e.g.  jiffies makes it less\nlikely that the same filehandle can be created after a reboot.\n\nIn order to be able to decode a filehandle we need to be able to lookup by\ninum, which means that the inode needs to be added to the inode hash table\n(tmpfs doesn\u0027t currently hash inodes as there is never a need to lookup by\ninum).  To avoid overhead when not exporting, we only hash an inode when it is\nfirst exported.  This requires a lock to ensure it isn\u0027t hashed twice.\n\nThis code is separate from the patch posted in June06 from Atal Shargorodsky\nwhich provided the same functionality, but does borrow slightly from it.\n\nLocking comment: Most filesystems that hash their inodes do so at the point\nwhere the \u0027struct inode\u0027 is initialised, and that has suitable locking\n(I_NEW).  Here in shmem, we are hashing the inode later, the first time we\nneed an NFS file handle for it.  We no longer have I_NEW to ensure only one\nthread tries to add it to the hash table.\n\nCc: Atal Shargorodsky \u003catal@codefidence.com\u003e\nCc: Gilad Ben-Yossef \u003cgilad@codefidence.com\u003e\nSigned-off-by: David M. Grimes \u003cdgrimes@navisite.com\u003e\nSigned-off-by: Neil Brown \u003cneilb@suse.de\u003e\nAcked-by: Hugh Dickins \u003chugh@veritas.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "5c496374a72320279ddb86291ef709e090a5d531",
      "tree": "40c0cd65a0928efe529436c681f47e0e52d32f1c",
      "parents": [
        "aaa248f6c9c81b2683db7dbb0689cd5ed1c86d88"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Tue Oct 17 00:09:44 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:43 2006 -0700"
      },
      "message": "[PATCH] remove carta_random32\n\nThis library function should be in obj-y and not in lib-y.  But when we do\nthat it clashes unpleasantly with the assembly-language implementation in the\nia64 architecture.\n\nInstead of trying to fix it all up, just remove the generic carta_random32 in\nthe expectation that the recently-made-generic random32() will suffice.\n\nIf/when perfmon is migrated to random32, ia64\u0027s private carta_random32\nimplementation can also be removed.\n\nCc: Stephane Eranian \u003ceranian@hpl.hp.com\u003e\nCc: \"Luck, Tony\" \u003ctony.luck@intel.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "aaa248f6c9c81b2683db7dbb0689cd5ed1c86d88",
      "tree": "106d9ce5ebac4175b0fb97ff80a92e399fcf2a33",
      "parents": [
        "0187f879ee8d4b914e74ffa3cc5df268311fc2d2"
      ],
      "author": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Oct 17 00:09:42 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:43 2006 -0700"
      },
      "message": "[PATCH] rename net_random to random32\n\nMake net_random() more widely available by calling it random32\n\nakpm: hopefully this will permit the removal of carta_random32.  That needs\nconfirmation from Stephane - this code looks somewhat more computationally\nexpensive, and has a different (ie: callee-stateful) interface.\n\n[akpm@osdl.org: lots of build fixes, cleanups]\nSigned-off-by: Stephen Hemminger \u003cshemminger@osdl.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\nCc: Stephane Eranian \u003ceranian@hpl.hp.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "0187f879ee8d4b914e74ffa3cc5df268311fc2d2",
      "tree": "6c29aa7911a9a3ffc4497ea319d3fb6d1bfbd55c",
      "parents": [
        "ac08c26492a0ad4d94a25bd47d5630cd38337069"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Tue Oct 17 00:09:41 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:43 2006 -0700"
      },
      "message": "[PATCH] PROC_NUMBUF is wrong\n\nActually, the decimal representation of a 32-bit signed number can take 12\nbytes, including the \\0.\n\nAnd then some code adds a \\n as well, so let\u0027s give it 13 bytes.\n\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "ac08c26492a0ad4d94a25bd47d5630cd38337069",
      "tree": "a6115a173a221ef80a9ffe9b4f110bd4d92443c5",
      "parents": [
        "e24650c2e744f99541125a5b023f0d02cad19d14"
      ],
      "author": {
        "name": "Thomas Gleixner",
        "email": "tglx@linutronix.de",
        "time": "Tue Oct 17 00:09:39 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:43 2006 -0700"
      },
      "message": "[PATCH] posix-cpu-timers: prevent signal delivery starvation\n\nThe integer divisions in the timer accounting code can round the result\ndown to 0.  Adding 0 is without effect and the signal delivery stops.\n\nClamp the division result to minimum 1 to avoid this.\n\nProblem was reported by Seongbae Park \u003cspark@google.com\u003e, who provided\nalso an inital patch.\n\nRoland sayeth:\n\n  I have had some more time to think about the problem, and to reproduce it\n  using Toyo\u0027s test case.  For the record, if my understanding of the problem\n  is correct, this happens only in one very particular case.  First, the\n  expiry time has to be so soon that in cputime_t units (usually 1s/HZ ticks)\n  it\u0027s \u003c nthreads so the division yields zero.  Second, it only affects each\n  thread that is so new that its CPU time accumulation is zero so now+0 is\n  still zero and -\u003eit_*_expires winds up staying zero.  For the VIRT and PROF\n  clocks when cputime_t is tick granularity (or the SCHED clock on\n  configurations where sched_clock\u0027s value only advances on clock ticks), this\n  is not hard to arrange with new threads starting up and blocking before they\n  accumulate a whole tick of CPU time.  That\u0027s what happens in Toyo\u0027s test\n  case.\n\n  Note that in general it is fine for that division to round down to zero,\n  and set each thread\u0027s expiry time to its \"now\" time.  The problem only\n  arises with thread\u0027s whose \"now\" value is still zero, so that now+0 winds up\n  0 and is interpreted as \"not set\" instead of \"\u003e\u003d now\".  So it would be a\n  sufficient and more precise fix to just use max(ticks, 1) inside the loop\n  when setting each it_*_expires value.\n\n  But, it does no harm to round the division up to one and always advance\n  every thread\u0027s expiry time.  If the thread didn\u0027t already fire timers for\n  the expiry time of \"now\", there is no expectation that it will do so before\n  the next tick anyway.  So I followed Thomas\u0027s patch in lifting the max out\n  of the loops.\n\n  This patch also covers the reload cases, which are harder to write a test\n  for (and I didn\u0027t try).  I\u0027ve tested it with Toyo\u0027s case and it fixes that.\n\n[toyoa@mvista.com: fix: min_t -\u003e max_t]\nSigned-off-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\nCc: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Roland McGrath \u003croland@redhat.com\u003e\nCc: Daniel Walker \u003cdwalker@mvista.com\u003e\nCc: Toyo Abe \u003ctoyoa@mvista.com\u003e\nCc: john stultz \u003cjohnstul@us.ibm.com\u003e\nCc: Roman Zippel \u003czippel@linux-m68k.org\u003e\nCc: Seongbae Park \u003cspark@google.com\u003e\nCc: Peter Mattis \u003cpmattis@google.com\u003e\nCc: Rohit Seth \u003crohitseth@google.com\u003e\nCc: Martin Bligh \u003cmbligh@google.com\u003e\nCc: \u003cstable@kernel.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "e24650c2e744f99541125a5b023f0d02cad19d14",
      "tree": "59f043a5bddb973feac1b1543cf87970665370c5",
      "parents": [
        "a649fd9271773dd0f78e2b9f347bcceecb8827f9"
      ],
      "author": {
        "name": "Akinobu Mita",
        "email": "akinobu.mita@gmail.com",
        "time": "Tue Oct 17 00:09:38 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:43 2006 -0700"
      },
      "message": "[PATCH] md: fix /proc/mdstat refcounting\n\nI have seen mdadm oops after successfully unloading md module.\n\nThis patch privents from unloading md module while\nmdadm is polling /proc/mdstat.\n\nCc: Neil Brown \u003cneilb@suse.de\u003e\nSigned-off-by: Akinbou Mita \u003cakinobu.mita@gmail.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "a649fd9271773dd0f78e2b9f347bcceecb8827f9",
      "tree": "59b29ffef77a2c5cce233393848c13354f02c0f2",
      "parents": [
        "5eb30790d4ccd3409240a80eaf9ab76b4fb75fd8"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Tue Oct 17 00:09:36 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:43 2006 -0700"
      },
      "message": "[PATCH] invalidate: remove_mapping() fix\n\nIf remove_mapping() failed to remove the page from its mapping, don\u0027t go and\nmark it not uptodate!  Makes kernel go dead.\n\n(Actually, I don\u0027t think the ClearPageUptodate is needed there at all).\n\nSays Nick Piggin:\n\n   \"Right, it isn\u0027t needed because at this point the page is guaranteed\n    by remove_mapping to have no references (except us) and cannot pick\n    up any new ones because it is removed from pagecache.\n\n    We can delete it.\"\n\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nAcked-by: Nick Piggin \u003cnickpiggin@yahoo.com.au\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "5eb30790d4ccd3409240a80eaf9ab76b4fb75fd8",
      "tree": "cab8f6c10fc4e63f3ffe2df1c67591adbb5c86a0",
      "parents": [
        "3f4a0b917ce72ef47e438d354c433eb645218e87"
      ],
      "author": {
        "name": "Dave Kleikamp",
        "email": "shaggy@austin.ibm.com",
        "time": "Tue Oct 17 00:09:35 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:43 2006 -0700"
      },
      "message": "[PATCH] null dereference in fs/jbd2/journal.c\n\nThis is Eric Sesterhenn\u0027s jbd patch applied to jbd2.\nCommit: 41716c7c21b15e7ecf14f0caf1eef3980707fb74\n\nHis words:\n\nSince commit d1807793e1e7e502e3dc047115e9dbc3b50e4534 we dereference a NULL\npointer.  Coverity id #1432.  We set journal to NULL, and use it directly\nafterwards.\n\nSigned-off-by: Dave Kleikamp \u003cshaggy@austin.ibm.com\u003e\nCc: Eric Sesterhenn \u003csnakebyte@gmx.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3f4a0b917ce72ef47e438d354c433eb645218e87",
      "tree": "82695f890785cfe1bd14303ce04453a16bd99c01",
      "parents": [
        "b9f5d8040b470e4f74e3266ece2969ef06d0f8aa"
      ],
      "author": {
        "name": "john stultz",
        "email": "johnstul@us.ibm.com",
        "time": "Tue Oct 17 00:09:32 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:42 2006 -0700"
      },
      "message": "[PATCH] i386 Time: Avoid PIT SMP lockups\n\nAvoid possible PIT livelock issues seen on SMP systems (and reported by\nAndi), by not allowing it as a clocksource on SMP boxes.\n\nHowever, since the PIT may no longer be present, we have to properly handle\nthe cases where SMP systems have TSC skew and fall back from the TSC.\nSince the PIT isn\u0027t there, it would \"fall back\" to the TSC again.  So this\nchanges the jiffies rating to 1, and the TSC-bad rating value to 0.\n\nThus you will get the following behavior priority on i386 systems:\n\ntsc\t\t[if present \u0026 stable]\nhpet\t\t[if present]\ncyclone\t\t[if present]\nacpi_pm\t\t[if present]\npit\t\t[if UP]\njiffies\n\nRather then the current more complicated:\ntsc\t\t[if present \u0026 stable]\nhpet\t\t[if present]\ncyclone\t\t[if present]\nacpi_pm\t\t[if present]\npit\t\t[if cpus \u003c 4]\ntsc\t\t[if present \u0026 unstable]\njiffies\n\nSigned-off-by: John Stultz \u003cjohnstul@us.ibm.com\u003e\nCc: Andi Kleen \u003cak@suse.de\u003e\nCc: Ingo Molnar \u003cmingo@elte.hu\u003e\nCc: Thomas Gleixner \u003ctglx@linutronix.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "b9f5d8040b470e4f74e3266ece2969ef06d0f8aa",
      "tree": "db8d3d4c55aceecb5facc808374bc3af1c963d41",
      "parents": [
        "ca268c691de95612981b93e58899c1d73fdb6b47"
      ],
      "author": {
        "name": "Pierre Ossman",
        "email": "drzeus@drzeus.cx",
        "time": "Tue Oct 17 00:09:30 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:42 2006 -0700"
      },
      "message": "[PATCH] New MMC maintainer\n\nI will be taking over after Russell King as the new maintainer of the\nMMC layer.\n\nSigned-off-by: Pierre Ossman \u003cdrzeus@drzeus.cx\u003e\nCc: Russell King \u003crmk@arm.linux.org.uk\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "ca268c691de95612981b93e58899c1d73fdb6b47",
      "tree": "5bffd6512113613ae9c3dfd0e8b19a14d8e64856",
      "parents": [
        "623a43952abfad2d48f287d1fab07b2089d07554"
      ],
      "author": {
        "name": "Ingo Molnar",
        "email": "mingo@elte.hu",
        "time": "Tue Oct 17 00:09:28 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Oct 17 08:18:42 2006 -0700"
      },
      "message": "[PATCH] lockdep: increase max allowed recursion depth\n\nIn general, lockdep warnings are intended to be non-fatal, so I have put in\nvarious practical limits on internal data structure failure modes.  We haven\u0027t\nhad a /single/ lockdep-internal crash ever since lockdep went upstream [the\nunwinder crashes are outside of lockdep], and that\u0027s largely due to the good\ninternal checks it does.\n\nRecursion within the dependency graph is currently limited to 20, that\u0027s\nprobably not enough on some many-CPU boxes - this patch doubles it to 40.  I\nhave written the lockdep functions to have as small stackframes as possible,\nso 40 should be OK too.  (The practical recursion limit should be somewhere\nbetween 100 and 200 entries.  If we hit that then I\u0027ll change the algorithm to\nbe iteration-based.  Graph walking logic is so easy to program via recursion,\nso i\u0027d like to keep recursion as long as possible.)\n\nSigned-off-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    }
  ],
  "next": "623a43952abfad2d48f287d1fab07b2089d07554"
}
