)]}'
{
  "log": [
    {
      "commit": "7334bb4ae931159384acf168eacb0d5d6e0d083c",
      "tree": "acbe6d8634e526c90fa73fc2f44f50f179fcf82f",
      "parents": [
        "a2e0b56316fa90e137802fdad6a7c6a9b85c86c3"
      ],
      "author": {
        "name": "Danny Tholen",
        "email": "obiwan@mailmij.org",
        "time": "Sun Aug 27 01:23:29 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Aug 27 11:01:28 2006 -0700"
      },
      "message": "[PATCH] 1394: fix for recently added firewire patch that breaks things on ppc\n\nRecently a patch was added for preliminary suspend/resume handling on\n!PPC_PMAC.  However, this broke both suspend and firewire on powerpc\nbecause it saves the pci state after the device has already been disabled.\n\nThis moves the save state to before the pmac specific code.\n\nSigned-off-by: Danny Tholen \u003cobiwan@mailmij.org\u003e\nCc: Stefan Richter \u003cstefanr@s5r6.in-berlin.de\u003e\nAcked-by: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nCc: Ben Collins \u003cbcollins@ubuntu.com\u003e\nCc: Jody McIntyre \u003cscjody@modernduck.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": "cc36e7f124da139a819ad316c39d9dbcb5ba1897",
      "tree": "869cec3385a820bfc7b286c9bdc91fa47d4ada22",
      "parents": [
        "641741e010b615bae417c876a21d17dbd616241f"
      ],
      "author": {
        "name": "Rolf Eike Beer",
        "email": "eike-kernel@sf-tec.de",
        "time": "Sun Aug 27 01:23:27 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Aug 27 11:01:28 2006 -0700"
      },
      "message": "[PATCH] tty: remove bogus call to cdev_del()\n\nWhen cdev_add() failed there is no reason to call cdev_del().\n\nSigned-off-by: Rolf Eike Beer \u003ceike-kernel@sf-tec.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": "641741e010b615bae417c876a21d17dbd616241f",
      "tree": "236c363b0b4924052c0fd4045e68b54c0e7a79a1",
      "parents": [
        "b6b5bce3571e496504a89ee575d32101e0a98b93"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Sun Aug 27 01:23:27 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Aug 27 11:01:28 2006 -0700"
      },
      "message": "[PATCH] rtc-s3c.c: fix time setting checks\n\nFix the year check on setting the time with the S3C24XX RTC driver.  Also\nmove the debug to before the set to see what is going on if it does fail.\n\nSigned-off-by: Ben Dooks \u003cben-linux@fluff.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "c06aad854fdb9da38fcc22dccfe9d72919453e43",
      "tree": "a27fc99fe974cc5df08393c5b16b4499b07aa3e5",
      "parents": [
        "9a654518e1b774b8e8f74a819fd12a931e7672c9"
      ],
      "author": {
        "name": "Daniel Kobras",
        "email": "kobras@linux.de",
        "time": "Sun Aug 27 01:23:24 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Aug 27 11:01:28 2006 -0700"
      },
      "message": "[PATCH] dm: Fix deadlock under high i/o load in raid1 setup.\n\nOn an nForce4-equipped machine with two SATA disk in raid1 setup using dmraid,\nwe experienced frequent deadlock of the system under high i/o load.  \u0027cat\n/dev/zero \u003e ~/zero\u0027 was the most reliable way to reproduce them: Randomly\nafter a few GB, \u0027cp\u0027 would be left in \u0027D\u0027 state along with kjournald and\nkmirrord.  The functions cp and kjournald were blocked in did vary, but\nkmirrord\u0027s wchan always pointed to \u0027mempool_alloc()\u0027.  We\u0027ve seen this pattern\non 2.6.15 and 2.6.17 kernels.  http://lkml.org/lkml/2005/4/20/142 indicates\nthat this problem has been around even before.\n\nSo much for the facts, here\u0027s my interpretation: mempool_alloc() first tries\nto atomically allocate the requested memory, or falls back to hand out\npreallocated chunks from the mempool.  If both fail, it puts the calling\nprocess (kmirrord in this case) on a private waitqueue until somebody refills\nthe pool.  Where the only \u0027somebody\u0027 is kmirrord itself, so we have a\ndeadlock.\n\nI worked around this problem by falling back to a (blocking) kmalloc when\nbefore kmirrord would have ended up on the waitqueue.  This defeats part of\nthe benefits of using the mempool, but at least keeps the system running.  And\nit could be done with a two-line change.  Note that mempool_alloc() clears the\nGFP_NOIO flag internally, and only uses it to decide whether to wait or return\nan error if immediate allocation fails, so the attached patch doesn\u0027t change\nbehaviour in the non-deadlocking case.  Path is against current git\n(2.6.18-rc4), but should apply to earlier versions as well.  I\u0027ve tested on\n2.6.15, where this patch makes the difference between random lockup and a\nstable system.\n\nSigned-off-by: Daniel Kobras \u003ckobras@linux.de\u003e\nAcked-by: Alasdair G Kergon \u003cagk@redhat.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": "9a654518e1b774b8e8f74a819fd12a931e7672c9",
      "tree": "54ba738524292b9f54404ba97029727b05e7a04f",
      "parents": [
        "66a377c5041e1e399633153c8b500d457281e7c1"
      ],
      "author": {
        "name": "Ben Dooks",
        "email": "ben-linux@fluff.org",
        "time": "Sun Aug 27 01:23:22 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Aug 27 11:01:28 2006 -0700"
      },
      "message": "[PATCH] drivers/rtc: fix rtc-s3c.c\n\nIn the cleanups of drivers/rtc/s3c-rtc.c, the base address for the\nregisters got broken.  This patch fixes that by ensuring the readb/writeb\nare all prefixed with the base returned from ioremap()ing the registers.\n\nAlso fix check for valid year range, which was the wrong way around.\n\nSigned-off-by: Ben Dooks \u003cben-linux@fluff.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "94918ff68a7c78fdd3241d13e18444ef80b8ff4a",
      "tree": "740220a5cd8a9e6e8f2957b4b10afca3d8c016ac",
      "parents": [
        "be729523369ec7825bde4a0e774ee7932e9d3dff"
      ],
      "author": {
        "name": "Alan Stern",
        "email": "stern@rowland.harvard.edu",
        "time": "Mon Aug 14 11:40:46 2006 -0400"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Sat Aug 26 13:06:24 2006 -0700"
      },
      "message": "[PATCH] unusual_devs update for UCR-61S2B\n\nThe existing unusual_devs entry for the UCR-61S2B appears to have too\nwide a revision range.  It matches at least one device that doesn\u0027t\nrespond to the initialization sequence.  Perhaps the sequence needs to\nbe updated, or perhaps something else can be done.  For now, this patch\n(as764) restricts the range to include only the revision mentioned in\nthe original comment.\n\nThis resolves (for now!) Bugzilla entry #6950.\n\nSigned-off-by: Alan Stern \u003cstern@rowland.harvard.edu\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "be729523369ec7825bde4a0e774ee7932e9d3dff",
      "tree": "736ab807f33c7c90089655dbbf86c6d8fcd3096e",
      "parents": [
        "b93b58eea81beacac55770dd39e34fbffdc36000"
      ],
      "author": {
        "name": "Tomasz Kazmierczak",
        "email": "tomek.fizyk@op.pl",
        "time": "Fri Aug 18 23:43:29 2006 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Sat Aug 26 13:06:17 2006 -0700"
      },
      "message": "[PATCH] USB: pl2303: removed support for OTi\u0027s DKU-5 clone cable\n\nThis patch removes support for a clone of Nokia DKU-5 cable made by Ours\nTechnology Inc, as it turned out that the cable does not use the pl2303\nchip, but OTI-6858 chip which is not compatible with the pl2303.\n\nSigned-off-by: Tomasz Kazmierczak \u003ctomek.fizyk@op.pl\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "b93b58eea81beacac55770dd39e34fbffdc36000",
      "tree": "39cdedf90344a07ca815692f0c0d1b9316850dd8",
      "parents": [
        "39ba487fe22a63b3df7c543c82d01db0f0fed700"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Mon Aug 14 17:32:51 2006 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Sat Aug 26 13:06:11 2006 -0700"
      },
      "message": "[PATCH] USB: fix bug in cypress_cy7c63.c driver\n\nThis was pointed out by Adrian Bunk \u003cbunk@stusta.de\u003e, as found by the Coverity Checker.\n\nCc: Adrian Bunk \u003cbunk@stusta.de\u003e\nCc: Oliver Bock \u003co.bock@fh-wolfenbuettel.de\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "39ba487fe22a63b3df7c543c82d01db0f0fed700",
      "tree": "13431f83dd7b0f8ccba5121c5fa7707c006a102b",
      "parents": [
        "cc702c2c5e5ab51e1b0d3386d447e7b1772879ee"
      ],
      "author": {
        "name": "Henrik Kretzschmar",
        "email": "henne@nachtwindheim.de",
        "time": "Tue Aug 15 10:57:16 2006 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Sat Aug 26 13:05:59 2006 -0700"
      },
      "message": "[PATCH] PCI: kerneldoc correction in pci-driver\n\nRemoves an unused kerneldoc entry from pci_match_device and\nput the others into correct order.\n\nSigned-off-by: Henrik Kretzschmar \u003chenne@nachtwindheim.de\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "cc702c2c5e5ab51e1b0d3386d447e7b1772879ee",
      "tree": "925c4fb498a8798ff548a840b19d00f9d84abd4a",
      "parents": [
        "65ae4dddbb56c7415c31e9aae0b3811cb583bbea"
      ],
      "author": {
        "name": "Scott Murray",
        "email": "scottm@somanetworks.com",
        "time": "Tue Aug 22 19:55:57 2006 -0400"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Sat Aug 26 13:05:52 2006 -0700"
      },
      "message": "[PATCH] CPCI hotplug: fix resource assignment\n\nHere is a patch against the CPCI hotplug core to fix up PCI resource\nassignment such that things will actually work when a hot inserted\ndevice is enabled.  I mentioned this patch to you way back in April at\nELC, but am only now out from under things enough to clean it up and\nsubmit it.  I\u0027ve basically cribbed the corresponding code from\nshpchp_pci.c, so there are no big surprises.  If it\u0027s still possible, I\nwouldn\u0027t mind this going into 2.6.18, but it wouldn\u0027t be the end of the\nworld if it went into 2.6.19.\n\nSigned-off-by: Scott Murray \u003cscottm@somanetworks.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "65ae4dddbb56c7415c31e9aae0b3811cb583bbea",
      "tree": "86a3a3c30fa8ea45538458cc907e9979a1b2e13e",
      "parents": [
        "fd4dc27cff15f77cde218613baa36b855c85ad9f"
      ],
      "author": {
        "name": "Daniel Ritz",
        "email": "daniel.ritz-ml@swissonline.ch",
        "time": "Tue Aug 22 07:29:10 2006 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Sat Aug 26 13:05:45 2006 -0700"
      },
      "message": "[PATCH] PCI: fix ICH6 quirks\n\n- add the ICH6(R) LPC to the ICH6 ACPI quirks.  currently only the ICH6-M\n  is handled.  [ PCI_DEVICE_ID_INTEL_ICH6_1 is the ICH6-M LPC, ICH6_0 is\n  the ICH6(R) ]\n\n- remove the wrong quirk calling asus_hides_smbus_lpc() for ICH6.  the\n  register modified in asus_hides_smbus_lpc() has a different meaning in\n  ICH6.\n\nSigned-off-by: Daniel Ritz \u003cdaniel.ritz@gmx.ch\u003e\nAcked-by: Jean Delvare \u003ckhali@linux-fr.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "faf9b616325430422fa13fead88ca7843eb249d6",
      "tree": "7272b6ac857c5ec400ea61a65f141927de3712af",
      "parents": [
        "4801bc25f37a969ea773c24d12fd4738541848a1"
      ],
      "author": {
        "name": "Hans de Goede",
        "email": "j.w.r.degoede@hhs.nl",
        "time": "Fri Aug 25 10:24:20 2006 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Sat Aug 26 13:05:19 2006 -0700"
      },
      "message": "[PATCH] hwmon: abituguru timeout fixes\n\nThis patch contains 2 sets of fixes for the abituguru:\n 1) Much improved timeout handling, drasticly reducing the amount of\n    timeout errors on some motherboards\n 2) Fix the exit paths in the bank1 sensor type detect code to always\n    restore the original settings even on an error. Without this our\n    special test settings could remain seriously confusing the system\n    BIOS\u0027s setup menu.\n\nBoth are very much related and are must haves, to avoid messing up the\nuguru CMOS settings.\n\nDetailed changes:\n- Much improved timeout / wait for status handling. Many thanks to Sunil\n  Kumar, for all his testing, ideas and patches! The code now first busy\n  waits, polling the uguru for the expected status as this usually\n  succeeds pretty quickly (within 90 reads). To avoid unnecessary CPU burn\n  in timeout conditions, the amount of busy waiting has been halved from\n  previous versions (120 tries instead of 250). This is not a problem,\n  because this version goes to sleep after 120 attemps for 1 jiffy and\n  then tries again, it does this sleep and try again 5 times before\n  finally giving up. This (almost?) completly removes the timeout errors\n  some people have seen regulary. Apparently some older uguru versions\n  sometimes are distracted for a (relatively) long time. This solves this.\n- These timeout errors not only occur in the sending address part of\n  reading the uguru but also in the wait for read state, so errors in\n  this state are now handled as retryable just like send address state\n  errors and are only logged and reported to userspace if 3 executive\n  tries fail.\n- Fix a very nasty bug in the bank1 sensor type detection code, where it\n  would not restore the original settings in any of the error paths!\n- Since not successfully restoring the original settings can seriously\n  confuse the system BIOS (hang when entering the relevant setup menu),\n  we now try restoring them 3 times before giving up.\n\nSigned-off-by: Hans de Goede \u003cj.w.r.degoede@hhs.nl\u003e\nSigned-off-by: Jean Delvare \u003ckhali@linux-fr.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "4801bc25f37a969ea773c24d12fd4738541848a1",
      "tree": "95e9c36770d255dbf5f78515abda64ca91d0a1f3",
      "parents": [
        "f834c755423332a6ff4397fae754029a6a7a8249"
      ],
      "author": {
        "name": "David Brownell",
        "email": "david-b@pacbell.net",
        "time": "Fri Aug 11 22:53:08 2006 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Sat Aug 26 13:05:12 2006 -0700"
      },
      "message": "[PATCH] i2c: tps65010 build fixes\n\nThe tps65010.c driver in the main tree never got updated with\nbuild fixes since the last batch of I2C driver changes; and the\ngenirq trigger flags were updated wierdly too.\n\nThis also includes a minor tweak to reduce the frequency used to\npoll for unplug-the-AC-power on the TPS chips that don\u0027t provide\nrelevant IRQs.  It _would_ be nice to sense whether there\u0027s even\na battery, but that\u0027d normally be an HDQ/1-wire interface to a\nsmart battery, and such APIs aren\u0027t standardized.\n\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Jean Delvare \u003ckhali@linux-fr.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "f834c755423332a6ff4397fae754029a6a7a8249",
      "tree": "004266b9612a69484a5dc0dc3d6db0d1e5ab60d5",
      "parents": [
        "62250b3bb596ffbae17c4b3d865fecd6329ce8b3",
        "0db99e3359234be181590463184b9959059a9ea9"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Sat Aug 26 13:04:23 2006 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Sat Aug 26 13:04:23 2006 -0700"
      },
      "message": "Merge gregkh@master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6\n"
    },
    {
      "commit": "0db99e3359234be181590463184b9959059a9ea9",
      "tree": "3822a0e4c6408cd0f0d23211f7f969dae873b483",
      "parents": [
        "15a3758dc9e1c9d862e46acdf607de70c302fa6a"
      ],
      "author": {
        "name": "Mike Christie",
        "email": "michaelc@cs.wisc.edu",
        "time": "Sat Aug 26 03:00:22 2006 -0400"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.il.steeleye.com",
        "time": "Sat Aug 26 10:03:14 2006 -0500"
      },
      "message": "[SCSI] fix scsi_send_eh_cmnd regression\n\nThe callers of scsi_send_eh_cmnd are setting the cmnd buffer,\nand then scsi_send_eh_cmnd is copying that updated buffer to\nthe old_cmnd variable. Then after the command runs, we end up\ncopying that old_cmnd var which has the new cmnd to the scsi\ncommand buffer. When this command gets recent, all types of fun\nthings happen like getting TUR or START_STOP commands with\ndata and scatterlists.\n\nThis patch made against scsi-rc-fixes, has the callers of\nscsi_send_eh_cmnd pass in the command so scsi_send_eh_cmnd\ncan do the right thing. This should go into 2.6.18 since this\nfixes a regression added when we removed some of the scsi_cmnd\nfields and replaced them with local variables.\n\nSigned-off-by: Mike Christie \u003cmichaelc@cs.wisc.edu\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "15a3758dc9e1c9d862e46acdf607de70c302fa6a",
      "tree": "af0ae6bc2158682350961ee097af4b08f280af63",
      "parents": [
        "476e8978d9ccacfc911bd42e083dd784ad1465b1"
      ],
      "author": {
        "name": "Andrew Vasquez",
        "email": "andrew.vasquez@qlogic.com",
        "time": "Wed Aug 23 14:54:56 2006 -0700"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.il.steeleye.com",
        "time": "Sat Aug 26 09:26:57 2006 -0500"
      },
      "message": "[SCSI] qla2xxx: Update version number to 8.01.07-k1.\n\nSigned-off-by: Andrew Vasquez \u003candrew.vasquez@qlogic.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "476e8978d9ccacfc911bd42e083dd784ad1465b1",
      "tree": "419fe17bfbffccd5e777b17d357c6d1324038d1d",
      "parents": [
        "9c06938aa458843fb71fa35371f23a3b89317252"
      ],
      "author": {
        "name": "Andrew Vasquez",
        "email": "andrew.vasquez@qlogic.com",
        "time": "Wed Aug 23 14:54:55 2006 -0700"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.il.steeleye.com",
        "time": "Sat Aug 26 09:26:41 2006 -0500"
      },
      "message": "[SCSI] qla2xxx: Properly re-enable EFT support after an ISP abort.\n\nSoftware must explicitely re-enable extended firmware tracing\nafter any ISP abort condition.\n\nSigned-off-by: Andrew Vasquez \u003candrew.vasquez@qlogic.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "9c06938aa458843fb71fa35371f23a3b89317252",
      "tree": "1734579259d73df860207c1e66c5404011e127cf",
      "parents": [
        "b2155d0417df9f2b4c0d396b6530b864d9f08623"
      ],
      "author": {
        "name": "Andrew Vasquez",
        "email": "andrew.vasquez@qlogic.com",
        "time": "Wed Aug 23 14:54:54 2006 -0700"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.il.steeleye.com",
        "time": "Sat Aug 26 09:26:27 2006 -0500"
      },
      "message": "[SCSI] qla2xxx: Correct PLOGI retry logic.\n\nOriginal code attempts to retry PLOGIs to fcports that are\nFCP_TARGETs only.  If the driver never performed a successful\nPLOGI/PRLI, the port-type would never be assigned, and the\nrelogin logic would silently drop the request (and thus the port\nwould not be recognized and registered).\n\nThe fix is relatively straightforward, drop the FCP_TARGET-only\ncheck.\n\nSigned-off-by: Andrew Vasquez \u003candrew.vasquez@qlogic.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "b2155d0417df9f2b4c0d396b6530b864d9f08623",
      "tree": "3e7683501f150b6eff19226da139cbd5f69d3b78",
      "parents": [
        "48e2691f9c3bd6719e773f0b883449f4cef39585"
      ],
      "author": {
        "name": "Douglas Gilbert",
        "email": "dougg@torque.net",
        "time": "Sat Aug 19 00:11:34 2006 -0400"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.il.steeleye.com",
        "time": "Sat Aug 26 09:25:06 2006 -0500"
      },
      "message": "[SCSI] sg: fix incorrect page problem\n\nThere\u0027s a problem where sg is executing a -\u003enopage operation on a\ncompound page, it actually calls get_page() on the first page in the\ncompound rather than the page which is being mapped.  The fix is to\nselect the correct page by indexing into the compound.\n\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "428a7e3e46a465a6cfe7ccbe15d7ea03a043a95a",
      "tree": "5a2d93ea5e027c5d6431a9af3b20eb51fbb6fb53",
      "parents": [
        "7bf13484d256e21b4bceb07026ac68dbae9dcce5",
        "8e79a441a4d8a34d64efe93add49b3eefca5cd1c"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Thu Aug 24 10:54:22 2006 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Thu Aug 24 10:54:22 2006 -0700"
      },
      "message": "Merge branch \u0027for-linus\u0027 of git://git390.osdl.marist.edu/pub/scm/linux-2.6\n"
    },
    {
      "commit": "8e79a441a4d8a34d64efe93add49b3eefca5cd1c",
      "tree": "85f163962161f8c26881533a5376602f8f800e9d",
      "parents": [
        "ef7d1b244fa6c94fb76d5f787b8629df64ea4046"
      ],
      "author": {
        "name": "Horst Hummel",
        "email": "horst.hummel@de.ibm.com",
        "time": "Thu Aug 24 13:22:36 2006 +0200"
      },
      "committer": {
        "name": "Martin Schwidefsky",
        "email": "schwidefsky@de.ibm.com",
        "time": "Thu Aug 24 13:22:36 2006 +0200"
      },
      "message": "[S390] dasd PAV enabling.\n\nThe subsystem check in the PAV code is incorrect, it enables PAV\nper device instead of per subsystem.\n\nSigned-off-by: Horst Hummel \u003chorst.hummel@de.ibm.com\u003e\nSigned-off-by: Martin Schwidefsky \u003cschwidefsky@de.ibm.com\u003e\n"
    },
    {
      "commit": "7bf13484d256e21b4bceb07026ac68dbae9dcce5",
      "tree": "37e76952178ff06eb9d2dc0314be4250ba1cd85b",
      "parents": [
        "20253de9d566f02b82aa1e0c103f73e80619106a",
        "ac2164d5e425fa4755bdbab9641d8dab7239b6f5"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Thu Aug 24 01:28:14 2006 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Thu Aug 24 01:28:14 2006 -0700"
      },
      "message": "Merge branch \u0027upstream-greg\u0027 of gregkh@master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev\n"
    },
    {
      "commit": "ac2164d5e425fa4755bdbab9641d8dab7239b6f5",
      "tree": "4576ca4b573e7c7bcb197f934ef3da35c2457d0c",
      "parents": [
        "9dd9c16465c82d1385f97d2a245641464fcb7894"
      ],
      "author": {
        "name": "Tejun Heo",
        "email": "htejun@gmail.com",
        "time": "Wed Aug 23 01:00:27 2006 +0900"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Thu Aug 24 02:51:24 2006 -0400"
      },
      "message": "[PATCH] sata_via: use old SCR access pattern on vt6420\n\nvt6420 has super-fragile SCR registers which can hang the whole\nmachine if accessed with the wrong timings.  This patch makes sata_via\nuse SCR registers only during probing and with the same timings as\nbefore (pre new EH), which is proven to work.\n\nSigned-off-by: Tejun Heo \u003chtejun@gmail.com\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "9dd9c16465c82d1385f97d2a245641464fcb7894",
      "tree": "0f729bb81af48ff79bda7eea0d366c87aed80a10",
      "parents": [
        "f3745a3f9fa39fa3c62f7d5b8549ee787d2c6848"
      ],
      "author": {
        "name": "Tejun Heo",
        "email": "htejun@gmail.com",
        "time": "Tue Aug 22 21:15:58 2006 +0900"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Thu Aug 24 02:51:24 2006 -0400"
      },
      "message": "[PATCH] ata_piix: implement force_pcs module parameter\n\nThis patch implements force_pcs module parameter for ata_piix.  If 1,\nPCS is ignored, 2 honored.  As there seem to be quite a few ICHs w/\nimpaired PCS, this option will be useful for cases where the default\nsetting doesn\u0027t work.\n\nSigned-off-by: Tejun Heo \u003chtejun@gmail.com\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "f3745a3f9fa39fa3c62f7d5b8549ee787d2c6848",
      "tree": "03bf0b2abfd9389dbadb69f024aa2761c28b9a5f",
      "parents": [
        "f1a58ecae527fc67c87ce4dcb9e73894f64aadfe"
      ],
      "author": {
        "name": "Tejun Heo",
        "email": "htejun@gmail.com",
        "time": "Tue Aug 22 21:06:46 2006 +0900"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Thu Aug 24 02:51:24 2006 -0400"
      },
      "message": "[PATCH] ata_piix: ignore PCS on ICH5\n\nThere have been a number of reports regarding some ICH5s failing to\ndetect devices since the PCS handling update.  Analysis shows that\nthese problems are caused by bogus PCS values from those controllers.\n\nBefore the PCS update, the driver didn\u0027t honor PCS regs exactly and\nprobed them in many cases PCS reports no device.  Now that PCS is\nhonored exactly, these hardware problems are visible.\n\nThis patch makes ICH5 ignore PCS.\n\nSigned-off-by: Tejun Heo \u003chtejun@gmail.com\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "20253de9d566f02b82aa1e0c103f73e80619106a",
      "tree": "a91db957a3dd40469531f35a920b8302c03fb7ee",
      "parents": [
        "b7277155f8fa89cd5696140b4a93cfb53d0091ff",
        "357eb4cf75fdb9dbe46b64d50f3670de6a45dc91"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Aug 23 21:58:48 2006 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Aug 23 21:58:48 2006 -0700"
      },
      "message": "Merge branch \u0027upstream-greg\u0027 of gregkh@master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6\n"
    },
    {
      "commit": "357eb4cf75fdb9dbe46b64d50f3670de6a45dc91",
      "tree": "0ba358be2a3a9a62f722838adea7fff8a1f946ff",
      "parents": [
        "c5ab964debe92d0ec7af330f350a3433c1b5b61e",
        "9b5cce07648d059a013444116bd0140b047b25a1"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Thu Aug 24 00:41:25 2006 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Thu Aug 24 00:41:25 2006 -0400"
      },
      "message": "Merge branch \u0027upstream-fixes\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6 into upstream-fixes\n"
    },
    {
      "commit": "c5ab964debe92d0ec7af330f350a3433c1b5b61e",
      "tree": "a9d3c4b97efe1e0b1854ba4c7130905d786f95c8",
      "parents": [
        "8d91626636ed9ce8b742edb52ae48f2faefd5864"
      ],
      "author": {
        "name": "Richard Purdie",
        "email": "rpurdie@rpsys.net",
        "time": "Tue Aug 22 18:55:44 2006 +0100"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Thu Aug 24 00:40:51 2006 -0400"
      },
      "message": "[PATCH] spectrum_cs: Fix firmware uploading errors\n\nspectrum_cs: Fix the logic so we error when the device is *not* present!\n\nThis fixes firmware upload failures which prevent the driver from\nworking (the bug is also present in 2.6.17).\n\nSigned-off-by: Richard Purdie \u003crpurdie@rpsys.net\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "8d91626636ed9ce8b742edb52ae48f2faefd5864",
      "tree": "d6270c4b398f356081b4f078cf32e21bafd23f7e",
      "parents": [
        "9a469abe9c6bab3ce237ee433541931bbd827faf"
      ],
      "author": {
        "name": "Don Fry",
        "email": "brazilnut@us.ibm.com",
        "time": "Tue Aug 22 10:22:37 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Thu Aug 24 00:40:03 2006 -0400"
      },
      "message": "[PATCH] pcnet32: break in 2.6.18-rc1 identified\n\nA change I made for 2.6.17 and another for 2.6.18 do not work on older\npcnet32 chips which I do not have access to.  If the chip is a 79C970 or\n79C965, do not try and suspend or check the link status.\nI have tested with a 79C970A, 79C971, 79C972, 79C973, 79C975, 79C976,\nand 79C978.\n\nSigned-off-by:  Don Fry \u003cbrazilnut@us.ibm.com\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "9a469abe9c6bab3ce237ee433541931bbd827faf",
      "tree": "b1f3634a602b612fbbf62254f80c7c2c72a4540f",
      "parents": [
        "cb958186ed543d1a4f074ceb1c783fe8b0908437"
      ],
      "author": {
        "name": "Joerg Ahrens",
        "email": "joerg@hydrops.han.de",
        "time": "Sun Aug 20 21:51:57 2006 +0100"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Thu Aug 24 00:38:32 2006 -0400"
      },
      "message": "[PATCH] xirc2ps_cs: Cannot reset card in atomic context\n\nI am using a Xircom CEM33 pcmcia NIC which has occasional hardware problems.\nIf the netdev watchdog detects a transmit timeout, do_reset is called which\nmsleeps - this is illegal in atomic context.\n\nThis patch schedules the timeout handling as a workqueue item.\n\nSigned-off-by: Daniel Drake \u003cdsd@gentoo.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "cb958186ed543d1a4f074ceb1c783fe8b0908437",
      "tree": "852a5b70ff626b7b9dbf1c1e6da5a65b55cb40c7",
      "parents": [
        "a76b044af147135b5fb7570aba35d4908f143cc9"
      ],
      "author": {
        "name": "Eric Sesterhenn",
        "email": "snakebyte@gmx.de",
        "time": "Sat Aug 19 19:37:57 2006 +0200"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Thu Aug 24 00:37:04 2006 -0400"
      },
      "message": "[PATCH] Signedness issue in drivers/net/3c515.c\n\nwhile playing with gcc 4.1 -Wextra warnings, I came across this one:\n\ndrivers/net/3c515.c:1027: warning: comparison of unsigned expression \u003e\u003d 0 is always true\n\nSince i is unsigned the \u003e\u003d 0 check in the for loop is always true,\nso we might spin there forever unless the if condition triggers.\nSince i is only used in this loop, this patch changes it to\nan integer.\n\nSigned-off-by: Eric Sesterhenn \u003csnakebyte@gmx.de\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "b7277155f8fa89cd5696140b4a93cfb53d0091ff",
      "tree": "c75cb996b2942d15e3a5d4327e9c582336880292",
      "parents": [
        "ccc712fe6b2acbafe9fc31f765a193e3249ca4a1",
        "c712a9de94a5df5bc0087c14ad0b1aac2c147991"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Aug 23 21:11:56 2006 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Aug 23 21:11:56 2006 -0700"
      },
      "message": "Merge branch \u0027for-linus\u0027 of gregkh@master.kernel.org:/pub/scm/linux/kernel/git/dtor/input\n"
    },
    {
      "commit": "9c637646dafd82370c284ce7fcc8b4ba2546dfb1",
      "tree": "a9070311c7b1963013fe25b4b458f48b21501685",
      "parents": [
        "b8b99e857d0e258b0da17e55466e5142465d35fd",
        "834ac73d4bc804db8ccb3f2a517e36db5f6bc4bd"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Aug 23 18:08:44 2006 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Aug 23 18:08:44 2006 -0700"
      },
      "message": "Merge branch \u0027for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband\n"
    },
    {
      "commit": "b8b99e857d0e258b0da17e55466e5142465d35fd",
      "tree": "7cae85965f21792664506e9f85f2a983ee0ee53d",
      "parents": [
        "0f4184f73d5233214d3225a94fcf1bd4d6678d74"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Wed Aug 23 15:53:39 2006 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Wed Aug 23 15:53:39 2006 -0700"
      },
      "message": "[SERIAL] sunzilog: Mirror the sunsab serial setup bug fix.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "0f4184f73d5233214d3225a94fcf1bd4d6678d74",
      "tree": "0aca57fc40523377916f0836506646205a0677eb",
      "parents": [
        "25848c4e502ec2bb94ee1f3c82709311059d0857"
      ],
      "author": {
        "name": "Marc Zyngier",
        "email": "maz@misterjones.org",
        "time": "Wed Aug 23 15:50:57 2006 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Wed Aug 23 15:50:57 2006 -0700"
      },
      "message": "[SERIAL] sunsab: Fix E250 console with RSC.\n\nThis fixes yet another sunsab problem, when console is set to anything\nbut the first port. The console framework calls sunsab_console_setup\nfor each port, and we end up setting up a console on a not yet\ndiscovered port, which leads to an Oops. Instead, defer console setup\nuntil the requested port is properly initialized. Tested on an E250\nthrough an RSC console.\n\nReported by Daniel Smolik \u003cmarvin@mydatex.cz\u003e\n\nSigned-off-by: Marc Zyngier \u003cmaz@misterjones.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "25848c4e502ec2bb94ee1f3c82709311059d0857",
      "tree": "68d7f2033ea0a868cbd994b06228f418da76fc95",
      "parents": [
        "1bad998a2778055c095b4f2081c68e6bc82f06e2"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Wed Aug 23 15:33:07 2006 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Wed Aug 23 15:33:07 2006 -0700"
      },
      "message": "[SCSI] esp: Fix build on SUN4.\n\nNoted by Alexey Dobriyan.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "834ac73d4bc804db8ccb3f2a517e36db5f6bc4bd",
      "tree": "64af4566e720bf878fb8d74944ff4b12dd9a309b",
      "parents": [
        "5beba53230351b2d77c317c22e66c415f2ebaf02"
      ],
      "author": {
        "name": "Michael S. Tsirkin",
        "email": "mst@mellanox.co.il",
        "time": "Tue Aug 22 22:45:06 2006 +0300"
      },
      "committer": {
        "name": "Roland Dreier",
        "email": "rolandd@cisco.com",
        "time": "Wed Aug 23 13:29:08 2006 -0700"
      },
      "message": "IB/mthca: Update HCA firmware revisions\n\nUpdate the driver\u0027s list of HCA firmware revisions to make sure people\nrunning Sinai firmware older than 1.1.0 get a message suggesting a\nfirmware upgrade.  Update the Arbel versions as well while we are at it.\n\nSigned-off-by: Michael S. Tsirkin \u003cmst@mellanox.co.il\u003e\nSigned-off-by: Roland Dreier \u003crolandd@cisco.com\u003e\n\n"
    },
    {
      "commit": "9b5cce07648d059a013444116bd0140b047b25a1",
      "tree": "7c8abb693dc50f81b442b5f459350b2e0f996f86",
      "parents": [
        "794ccda61c7dc2aa6c66e8ef18a44d865d3c3a7d"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Tue Aug 15 21:41:39 2006 -0400"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Aug 23 14:20:37 2006 -0400"
      },
      "message": "[PATCH] hostap: Restore antenna selection settings after port reset\n\nIntersil firmware 1.7.4 (and possibly others) loses the antenna\nselection settings when the port is reset.\n\nSigned-off-by: David Acker \u003cdacker@roinet.com\u003e\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "794ccda61c7dc2aa6c66e8ef18a44d865d3c3a7d",
      "tree": "0df81c4afd909be8545a3e5106c2383867481203",
      "parents": [
        "ef7d1b244fa6c94fb76d5f787b8629df64ea4046"
      ],
      "author": {
        "name": "Pavel Roskin",
        "email": "proski@gnu.org",
        "time": "Tue Aug 15 20:42:20 2006 -0400"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Aug 23 14:20:37 2006 -0400"
      },
      "message": "[PATCH] spectrum_cs: Fix incorrect use of pcmcia_dev_present()\n\nThis bug was introduced during the PCMCIA API conversion and broke\nspectrum_cs completely.\n\nTracked down by Fredrik Tolf \u003cfredrik@dolda2000.com\u003e\n\nSigned-off-by: Pavel Roskin \u003cproski@gnu.org\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "90414be9523208f0b667fd58c22e26b8db0594de",
      "tree": "276db076c7c440fa2bd3706317e370ec3a7e2b23",
      "parents": [
        "72a623be00fa3d77724c1b0cac07c1bac60e70a5"
      ],
      "author": {
        "name": "Pozsar Balazs",
        "email": "pozsy@uhulinux.hu",
        "time": "Wed Aug 23 00:48:03 2006 -0400"
      },
      "committer": {
        "name": "Dmitry Torokhov",
        "email": "dtor@insightbb.com",
        "time": "Wed Aug 23 00:48:03 2006 -0400"
      },
      "message": "Input: psmouse - fix Intellimouse 4.0 initialization\n\nRevert the superfluous initilization causing some mice become jumpy.\n\nSigned-off-by: Pozsar Balazs \u003cpozsy@uhulinux.hu\u003e\nSigned-off-by: Dmitry Torokhov \u003cdtor@mail.ru\u003e\n"
    },
    {
      "commit": "72a623be00fa3d77724c1b0cac07c1bac60e70a5",
      "tree": "cd9504c0ca36e1426706094ad691554eee39f677",
      "parents": [
        "8ea371fb6df5a6e8056265e0089fd578e87797fc"
      ],
      "author": {
        "name": "Dmitry Torokhov",
        "email": "dtor@insightbb.com",
        "time": "Wed Aug 23 00:47:39 2006 -0400"
      },
      "committer": {
        "name": "Dmitry Torokhov",
        "email": "dtor@insightbb.com",
        "time": "Wed Aug 23 00:47:39 2006 -0400"
      },
      "message": "Input: wistron - fix crash due to referencing __initdata\n\nRemove __initdata markings from keymaps as they are used during\nnormal driver operations.\n\nSigned-off-by: Dmitry Torokhov \u003cdtor@mail.ru\u003e\n"
    },
    {
      "commit": "8ea371fb6df5a6e8056265e0089fd578e87797fc",
      "tree": "4c3686a5c6ef6e386ad25998c98873ddc73ff709",
      "parents": [
        "2ffc1ccad85e8c2e81a6a4beb390fb4ce143256b"
      ],
      "author": {
        "name": "Florin Malita",
        "email": "fmalita@gmail.com",
        "time": "Wed Aug 23 00:45:33 2006 -0400"
      },
      "committer": {
        "name": "Dmitry Torokhov",
        "email": "dtor@insightbb.com",
        "time": "Wed Aug 23 00:45:33 2006 -0400"
      },
      "message": "Input: atkbd - fix overrun in atkbd_set_repeat_rate()\n\nThis was introduced in commit 3d0f0fa0cb554541e10cb8cb84104e4b10828468:\nbounds checking is performed against period[32] while indexing delay[4].\n\nSpotted by Coverity, CID 1376.\n\nSigned-off-by: Florin Malita \u003cfmalita@gmail.com\u003e\nSigned-off-by: Dmitry Torokhov \u003cdtor@mail.ru\u003e\n"
    },
    {
      "commit": "f1a58ecae527fc67c87ce4dcb9e73894f64aadfe",
      "tree": "e89e6440350a6990023b77fd5a0d7e9f5f9c4b28",
      "parents": [
        "d14b50cc60ca465290fcdb3b88e7d5fb684361ed"
      ],
      "author": {
        "name": "Tejun Heo",
        "email": "htejun@gmail.com",
        "time": "Sun Aug 20 17:56:38 2006 +0900"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Tue Aug 22 06:07:48 2006 -0400"
      },
      "message": "[PATCH] ata_piix: fix ghost device probing by honoring PCS present bits\n\nMove out PCS handling from piix_sata_prereset() into\npiix_sata_present_mask() and use it from newly implemented\npiix_sata_softreset().  Class codes for devices which are indicated to\nbe absent by PCS are cleared to ATA_DEV_NONE.  This fixes ghost device\nproblem reported on ICH6 and 7.\n\nThis patch moves PCS handling from prereset to softreset, which makes\ntwo behavior changes.\n\n* perform softreset even when PCS indicates no device\n* PCS handling is repeated before retrying softresets due to reset\n  failures.\n\nBoth behavior changes are intended and more consistent with how other\ndrivers behave.\n\nSigned-off-by: Tejun Heo \u003chtejun@gmail.com\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "da547d775fa9ba8d9dcaee7bc4e960540e2be576",
      "tree": "e01cb3b682bc0157742d093afc18a89dfc01d1f1",
      "parents": [
        "ef7d1b244fa6c94fb76d5f787b8629df64ea4046",
        "5b9c9bf6c92274a6eb74fc8f86586ab592a7a1ec",
        "df6fd31995cb2e38b2a7e94bc8f1559b8f55404e",
        "4e6e6504a4572dee3afcb0925ce92ad559e1e0db",
        "5672bde6355f2d12c49df1eec083d25afe489063",
        "16a74744231e57e354253567490ab9e4ccd2d605"
      ],
      "author": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sun Aug 20 21:49:29 2006 -0400"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sun Aug 20 21:49:29 2006 -0400"
      },
      "message": "Merge trivial low-risk suspend hotkey bugzilla-5918 into release\n"
    },
    {
      "commit": "a76b044af147135b5fb7570aba35d4908f143cc9",
      "tree": "600000a46abd1ce07ea8e2d73fe0bed1df7178fc",
      "parents": [
        "2ca2d5e84c19ddbc0126087af6288533a05f1799"
      ],
      "author": {
        "name": "Krzysztof Halasa",
        "email": "khc@pm.waw.pl",
        "time": "Wed Aug 16 01:52:23 2006 +0200"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:51:25 2006 -0400"
      },
      "message": "[PATCH] WAN: fix C101 card carrier handling\n\nHi,\n\nOne of my recent changes broke C101 carrier handling, this patch\nfixes it. Also fixes an old TX underrun checking bug.\n\n2.6.18 material. Please apply.\nThanks.\n\nSigned-off-by: Krzysztof Halasa \u003ckhc@pm.waw.pl\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "5b4b8454344a0391bb0f69fda0f4ec8e1f0d2fed",
      "tree": "a5e662cdc03d319e56a277281dcde754150276f4",
      "parents": [
        "11b0bacd717c285c94dbb56505a28434b34f0639"
      ],
      "author": {
        "name": "Vitaly Bordug",
        "email": "vbordug@ru.mvista.com",
        "time": "Mon Aug 14 23:00:30 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:44:31 2006 -0400"
      },
      "message": "[PATCH] FS_ENET: use PAL for mii management\n\nThis patch should update the fs_enet infrastructure to utilize Phy Abstraction\nLayer subsystem.  Along with the above, there are apparent bugfixes, overhaul\nand improvements.\n\nSigned-off-by: Vitaly Bordug \u003cvbordug@ru.mvista.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "11b0bacd717c285c94dbb56505a28434b34f0639",
      "tree": "d98e1576210a258d3b412809dfe0177f028575be",
      "parents": [
        "ec42cdb624059bb9d9d1accca5ed4345bf8f5fda"
      ],
      "author": {
        "name": "Vitaly Bordug",
        "email": "vbordug@ru.mvista.com",
        "time": "Mon Aug 14 23:00:29 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:44:31 2006 -0400"
      },
      "message": "[PATCH] PAL: Support of the fixed PHY\n\nThis makes it possible for HW PHY-less boards to utilize PAL goodies.  Generic\nroutines to connect to fixed PHY are provided, as well as ability to specify\nsoftware callback that fills up link, speed, etc.  information into PHY\ndescriptor (the latter feature not tested so far).\n\nSigned-off-by: Vitaly Bordug \u003cvbordug@ru.mvista.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "ec42cdb624059bb9d9d1accca5ed4345bf8f5fda",
      "tree": "5b39ebb8cd878baf0cb3f1a1b1f94994ab00fac5",
      "parents": [
        "3d8f3f3c3697a7603a802427c9226f5dfe6d67ad"
      ],
      "author": {
        "name": "Alexey Dobriyan",
        "email": "adobriyan@gmail.com",
        "time": "Mon Aug 14 23:00:28 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:44:30 2006 -0400"
      },
      "message": "[PATCH] xircom_cb: wire up errors from pci_register_driver()\n\nSigned-off-by: Alexey Dobriyan \u003cadobriyan@gmail.com\u003e\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nCc: Dominik Brodowski \u003clinux@dominikbrodowski.net\u003e\nCc: Valerie Henson \u003cval_henson@linux.intel.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "3d8f3f3c3697a7603a802427c9226f5dfe6d67ad",
      "tree": "c6deeab098c67b4a303630ac9430cbec0d45d5c6",
      "parents": [
        "239e44e1f05e2163ee066c07a753f9fb445979b2"
      ],
      "author": {
        "name": "Heiko Carstens",
        "email": "heiko.carstens@de.ibm.com",
        "time": "Mon Aug 14 23:00:27 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:44:30 2006 -0400"
      },
      "message": "[PATCH] s390: fix arp_tbl lock usage in qeth\n\nqeth: bhs must be disabled when accessing neighbour tables.\n\n\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\n[ INFO: inconsistent lock state ]\n\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "239e44e1f05e2163ee066c07a753f9fb445979b2",
      "tree": "a27bbfc4d0fc2e31387f00096c8c3bc717df797c",
      "parents": [
        "b68a60e598c0d1e738c807c47cb181e8cc52a0d8"
      ],
      "author": {
        "name": "Edgar E. Iglesias",
        "email": "edgar.iglesias@axis.com",
        "time": "Mon Aug 14 23:00:24 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:44:30 2006 -0400"
      },
      "message": "[PATCH] skge: remember to run netif_poll_disable()\n\nSigned-off-by: Edgar E. Iglesias \u003cedgar.iglesias@axis.com\u003e\nCc: Stephen Hemminger \u003cshemminger@osdl.org\u003e\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "b68a60e598c0d1e738c807c47cb181e8cc52a0d8",
      "tree": "cc06e0cd5a74c4ebdc5e5fecd2ab7a47d28f8130",
      "parents": [
        "7e29f8bf39de372e3903a0b12f34285d30a8a244"
      ],
      "author": {
        "name": "Jim Lewis",
        "email": "jim@jklewis.com",
        "time": "Mon Aug 14 23:00:23 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:44:30 2006 -0400"
      },
      "message": "[PATCH] Add ethtool -g support to Spidernet network driver\n\nAdd ethtool -g (show ring sizes) support to the Spidernet network driver.\n\nSigned-off-by: James K Lewis \u003cjklewis@us.ibm.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "7e29f8bf39de372e3903a0b12f34285d30a8a244",
      "tree": "c0c1fee1da797d3147a0359e7c6f054aaa745ce1",
      "parents": [
        "b933b4d93888b584eda826bffa68a3a1283f8411"
      ],
      "author": {
        "name": "David Brownell",
        "email": "david-b@pacbell.net",
        "time": "Mon Aug 14 23:00:22 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:44:30 2006 -0400"
      },
      "message": "[PATCH] build fixes: smc91x\n\nUnclear how these bugs arrived, presumably from incorrect cleanup of\nthe 16-bit-only paths, but smc91x wouldn\u0027t build for OMAP.\n\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nCc: Nicolas Pitre \u003cnico@cam.org\u003e\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "b933b4d93888b584eda826bffa68a3a1283f8411",
      "tree": "3d1ac29f142f1248ec5e5aa9994545818ab0f301",
      "parents": [
        "76cb4fe7c0926c2c59f4a36ab169aa2d547c93d1"
      ],
      "author": {
        "name": "Roger Luethi",
        "email": "rl@hellgate.ch",
        "time": "Mon Aug 14 23:00:21 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:44:30 2006 -0400"
      },
      "message": "[PATCH] via-rhine: add option avoid_D3 (work around broken BIOSes)\n\nIt looks like broken BIOSes controlling Rhine chips will remain in use in\nsignificant numbers; such systems fail to come up via PXE after they have\nbeen put into D3 (power-saving) mode.\n\nThis patch adds a module option for disabling the call that puts the chip\nto sleep.\n\nSigned-off-by: Roger Luethi \u003crl@hellgate.ch\u003e\nCc: Jeff Garzik \u003cjgarzik@pobox.com\u003e\nCc: Joerg Bashir \u003cbrak@archive.org\u003e\nCc: Tim Phipps \u003ctim@phipps-hutton.freeserve.co.uk\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "76cb4fe7c0926c2c59f4a36ab169aa2d547c93d1",
      "tree": "2fa424665a54379e3d3ee07e7b9d6beb6101a462",
      "parents": [
        "ab1976682f31661a898b92593bccfeae14d0a0ae"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk+lkml@arm.linux.org.uk",
        "time": "Mon Aug 14 23:00:20 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:44:29 2006 -0400"
      },
      "message": "[PATCH] lockdep: fix smc91x\n\nWhen booting using root-nfs, I\u0027m seeing (independently) two lockdep dumps\nin the smc91x driver.  The patch below fixes both.  Both dumps look like\nreal locking issues.\n\nNico - please review and ack if you think the patch is correct.\n\nDump 1:\n\nSending DHCP requests .\n\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\u003d\n[ INFO: inconsistent lock state ]\n\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "ab1976682f31661a898b92593bccfeae14d0a0ae",
      "tree": "3f24400e997275daa7ef117498037b54f8a4ce63",
      "parents": [
        "633949a145df19d6d338b0f227f033a0a1c5562a"
      ],
      "author": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Mon Aug 14 23:00:18 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:44:29 2006 -0400"
      },
      "message": "[PATCH] via-rhine: NAPI poll enable\n\nThe poll_enable should be in init_registers before enabling interrupts, not\nin tx_timeout.  Thanks for spotting it Roger.\n\nSigned-off-by: Stephen Hemminger \u003cshemminger@osdl.org\u003e\nCc: Roger Luethi \u003crl@hellgate.ch\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "633949a145df19d6d338b0f227f033a0a1c5562a",
      "tree": "d000e88532f0420eeb42c2525ae3a8d44818a29f",
      "parents": [
        "a4d09272480e57cd4aa1156cac7aba9b08885bf9"
      ],
      "author": {
        "name": "Roger Luethi",
        "email": "rl@hellgate.ch",
        "time": "Mon Aug 14 23:00:17 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:44:29 2006 -0400"
      },
      "message": "[PATCH] via-rhine: NAPI support\n\nAdd NAPI support to the via-rhine driver so that it can handle higher\nspeeds and doesn\u0027t get overloaded by interrupts as easily.\n\nSigned-off-by: Stephen Hemminger \u003cshemminger@osdl.org\u003e\nSigned-off-by: Roger Luethi \u003crl@hellgate.ch\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "a4d09272480e57cd4aa1156cac7aba9b08885bf9",
      "tree": "5c073158dfc31a6842a75fbf22f80bb304dff934",
      "parents": [
        "2fd0e33f4f967022ef2f3249b6c512b309734384"
      ],
      "author": {
        "name": "Peter Korsgaard",
        "email": "jacmet@sunsite.dk",
        "time": "Mon Aug 14 23:00:17 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:44:29 2006 -0400"
      },
      "message": "[PATCH] smc911x: Re-release spinlock on spurious interrupt\n\nThe smc911x driver forgets to release the spinlock on spurious interrupts.\nThis little patch fixes it.\n\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nSigned-off-by: Peter Korsgaard \u003cjacmet@sunsite.dk\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "2fd0e33f4f967022ef2f3249b6c512b309734384",
      "tree": "bffe84f8bc99cae4e3d9d5dcdb637534574aa8c5",
      "parents": [
        "330ce0de93fd7cc0f72fa57a7ec892befe7035d2"
      ],
      "author": {
        "name": "Kevin Hao",
        "email": "haokexin@gmail.com",
        "time": "Mon Aug 14 23:00:15 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:44:29 2006 -0400"
      },
      "message": "[PATCH] net: Add netconsole support to dm9000 driver\n\nAdd netconsole support to dm9000 driver.\n\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nCc: Sascha Hauer \u003cs.hauer@pengutronix.de\u003e\nCc: Ben Dooks \u003cben-linux@fluff.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "330ce0de93fd7cc0f72fa57a7ec892befe7035d2",
      "tree": "a5c73ae34d2e17ed21f479b74ee76cc27f132e3c",
      "parents": [
        "6fd7587bc284af61f92e547287aa5cd616a9c7ba"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Aug 14 23:00:14 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:44:29 2006 -0400"
      },
      "message": "[PATCH] s2io build fix\n\nsparc32:\n\ndrivers/net/s2io.c:2636: warning: implicit declaration of function \u0027disable_irq\u0027\ndrivers/net/s2io.c:2656: warning: implicit declaration of function \u0027enable_irq\u0027\n\nCc: Ananda Raju \u003cAnanda.Raju@neterion.com\u003e\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "6fd7587bc284af61f92e547287aa5cd616a9c7ba",
      "tree": "432fc5550fc21d2f6748e97cf3f15d845d3be3e3",
      "parents": [
        "ce973b141dfac4a0f160c7435d65e3ea47753ce8"
      ],
      "author": {
        "name": "Deepak Saxena",
        "email": "dsaxena@plexity.net",
        "time": "Mon Aug 14 23:00:13 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:44:29 2006 -0400"
      },
      "message": "[PATCH] Update smc91x driver with ARM Versatile board info\n\nWe need to specify a Versatile-specific SMC_IRQ_FLAGS value or the new\ngeneric IRQ layer will complain thusly:\n\nNo IRQF_TRIGGER set_type function for IRQ 25 (\u003cNULL\u003e)\n\nSigned-off-by: Deepak Saxena \u003cdsaxena@plexity.net\u003e\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nCc: Russell King \u003crmk@arm.linux.org.uk\u003e\nCc: Nicolas Pitre \u003cnico@cam.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "ce973b141dfac4a0f160c7435d65e3ea47753ce8",
      "tree": "2dfda8aa29023fca37e1f5127d2e5e6fae1c6180",
      "parents": [
        "e4c780b1ffc7d7bc27b7dc57fcf17ebb8d3006bc"
      ],
      "author": {
        "name": "Li Yang",
        "email": "leoli@freescale.com",
        "time": "Mon Aug 14 23:00:11 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:44:29 2006 -0400"
      },
      "message": "[PATCH] Freescale QE UCC gigabit ethernet driver\n\nQE(QUICC Engine) is a new generation communication coprocessor, which can\nbe found on some of the latest Freescale PowerQUICC CPUs(e.g.  MPC8360).\nThe UCC(Unified Communications Controller) module of QE can work as gigabit\nEthernet device.  This patch provides driver for the device.\n\nSigned-off-by: Shlomi Gridish \u003cgridish@freescale.com\u003e\nSigned-off-by: Li Yang \u003cleoli@freescale.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "e4c780b1ffc7d7bc27b7dc57fcf17ebb8d3006bc",
      "tree": "5d7858b0067f56d3584c1ff572211edd106f74c0",
      "parents": [
        "3418e469ebaebec16f7df83074087eb901fb76b9"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Mon Aug 14 23:00:10 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:44:28 2006 -0400"
      },
      "message": "[PATCH] drivers/net/e1000/: possible cleanups\n\n- make needlessly global functions static\n- #if 0 the following unused global functions:\n  - e1000_hw.c: e1000_mc_addr_list_update()\n  - e1000_hw.c: e1000_read_reg_io()\n  - e1000_hw.c: e1000_enable_pciex_master()\n  - e1000_hw.c: e1000_ife_disable_dynamic_power_down()\n  - e1000_hw.c: e1000_ife_enable_dynamic_power_down()\n  - e1000_hw.c: e1000_write_ich8_word()\n  - e1000_hw.c: e1000_duplex_reversal()\n  - e1000_main.c: e1000_io_read()\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nCc: John Ronciak \u003cjohn.ronciak@intel.com\u003e\nCc: Jesse Brandeburg \u003cjesse.brandeburg@intel.com\u003e\nCc: Jeff Kirsher \u003cjeffrey.t.kirsher@intel.com\u003e\nCc: Auke Kok \u003cauke-jan.h.kok@intel.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "3418e469ebaebec16f7df83074087eb901fb76b9",
      "tree": "afeabd4c0dec7a9e6433711739d8639736adb55b",
      "parents": [
        "90d5aed2d9c7d2f3915b75342988114fd7b6c13d"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Aug 14 23:00:10 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:44:28 2006 -0400"
      },
      "message": "[PATCH] sundance section fix\n\ndrivers/net/sundance.c:110: error: version causes a section type conflict\n\nI don\u0027t understand this error.  It\u0027s referred to from both __init and\n__devinit code.  With CONFIG_HOTPLUG\u003dn, version[] is placed in .init.data and\nis referred to from .init.text.\n\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "90d5aed2d9c7d2f3915b75342988114fd7b6c13d",
      "tree": "c6f31166423c921264746d55606e852ae54bd6bf",
      "parents": [
        "c9d26c9785d900d8547b268f0c0507f252879c48"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Aug 14 23:00:09 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:44:28 2006 -0400"
      },
      "message": "[PATCH] fealnx section fix\n\nWith CONFIG_HOTPLUG\u003dn it won\u0027t compile:\n\ndistcc[25607] ERROR: compile drivers/net/fealnx.c on g5/64 failed\n\nversion[] is referred to from both __init code and from __devinit code, so\nmove it out of __init altogether.\n\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "c9d26c9785d900d8547b268f0c0507f252879c48",
      "tree": "c5a7b9271bdb12eb59c0eae0e5280d2b4c6d25eb",
      "parents": [
        "c971ef46cb94b8bb4a12555fa757e5f67934fcd9"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Aug 14 23:00:08 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:44:28 2006 -0400"
      },
      "message": "[PATCH] winbond-840 section fix\n\nWith CONFIG_HOTPLUG\u003dn it won\u0027t compile:\n\ndrivers/net/tulip/winbond-840.c:141: error: version causes a section type conflict\n\n(For some reason it gets the same error if marked __initdata.  Give up.)\n\nCc: Valerie Henson \u003cval_henson@linux.intel.com\u003e\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "c971ef46cb94b8bb4a12555fa757e5f67934fcd9",
      "tree": "550066c59719ab851cc29c2b1cb38bf79d0168f6",
      "parents": [
        "1e13b0d82d24ac3c8b2f16a09dd9ce537cad134c"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Aug 14 23:00:08 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:40:17 2006 -0400"
      },
      "message": "[PATCH] seeq8005 section fix\n\nWARNING: drivers/net/seeq8005.o - Section mismatch: reference to .init.text:seeq8005_probe from .text between \u0027init_module\u0027 (at offset 0x106) and \u0027seeq8005_open\u0027\n\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "1e13b0d82d24ac3c8b2f16a09dd9ce537cad134c",
      "tree": "635d9f406619002c29cdb09c59d9ad0537fa66f9",
      "parents": [
        "5e5fa01d55e9949660a89b23f4a43884eaf49097"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Aug 14 23:00:07 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:40:17 2006 -0400"
      },
      "message": "[PATCH] ni65 section fix\n\nWARNING: drivers/net/ni65.o - Section mismatch: reference to .init.text:ni65_probe from .text between \u0027init_module\u0027 (at offset 0x54a) and \u0027ni65_stop_start\u0027\n\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "5e5fa01d55e9949660a89b23f4a43884eaf49097",
      "tree": "14be2d40add932e7313099740c0990c8814c3851",
      "parents": [
        "daca7cd7612639848c39744e02dab537755b31a1"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Aug 14 23:00:06 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:40:17 2006 -0400"
      },
      "message": "[PATCH] wd section fix\n\nWARNING: drivers/net/wd.o - Section mismatch: reference to .init.text: from .text between \u0027init_module\u0027 (at offset 0xfd) and \u0027wd_open\u0027\nWARNING: drivers/net/wd.o - Section mismatch: reference to .init.text: from .text between \u0027init_module\u0027 (at offset 0x14b) and \u0027wd_open\u0027\nWARNING: drivers/net/wd.o - Section mismatch: reference to .init.data:wd_portlist from .text between \u0027init_module\u0027 (at offset 0x17f) and \u0027wd_open\u0027\n\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "daca7cd7612639848c39744e02dab537755b31a1",
      "tree": "2b7a6be6773fca149d6f36da84b82dedc8957351",
      "parents": [
        "6d2cdb4fd1cc1b15ad070a57c9b2bc40bb1565e7"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Aug 14 23:00:06 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:40:16 2006 -0400"
      },
      "message": "[PATCH] smctr section fix\n\nWARNING: drivers/net/tokenring/smctr.o - Section mismatch: reference to .init.text: from .text between \u0027init_module\u0027 (at offset 0x2ba0) and \u0027smctr_reset_adapter\u0027\nWARNING: drivers/net/tokenring/smctr.o - Section mismatch: reference to .init.text:smctr_probe from .text between \u0027init_module\u0027 (at offset 0x2bf4) and \u0027smctr_reset_adapter\u0027\n\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "6d2cdb4fd1cc1b15ad070a57c9b2bc40bb1565e7",
      "tree": "3b5165c848cdc720dc19ee8f0446e38dfe2cacaa",
      "parents": [
        "19a8664d8a05f75cab3cd4eb8022d22d3f0c53c3"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Aug 14 23:00:05 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:40:16 2006 -0400"
      },
      "message": "[PATCH] ibmtr section fix\n\nWARNING: drivers/net/tokenring/ibmtr.o - Section mismatch: reference to .init.data:ibmtr_mem_base from .text between \u0027ibmtr_probe1\u0027 (at offset 0x6e6) and \u0027ibmtr_probe_card\u0027\nWARNING: drivers/net/tokenring/ibmtr.o - Section mismatch: reference to .init.data:ibmtr_mem_base from .text between \u0027ibmtr_probe1\u0027 (at offset 0x74a) and \u0027ibmtr_probe_card\u0027\nWARNING: drivers/net/tokenring/ibmtr.o - Section mismatch: reference to .init.data:ibmtr_mem_base from .text between \u0027ibmtr_probe1\u0027 (at offset 0x7fd) and \u0027ibmtr_probe_card\u0027\n\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "19a8664d8a05f75cab3cd4eb8022d22d3f0c53c3",
      "tree": "8838993ab88afcf6e37c475051676cd5b469d277",
      "parents": [
        "dab3d02ec05d16aab680de471cb5d20c5d4852e8"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Aug 14 23:00:05 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:40:16 2006 -0400"
      },
      "message": "[PATCH] ni52 section fix\n\nWARNING: drivers/net/ni52.o - Section mismatch: reference to .init.text:ni52_probe from .text between \u0027init_module\u0027 (at offset 0x997) and \u0027ni52_close\u0027\nWARNING: drivers/net/ni65.o - Section mismatch: reference to .init.text:ni65_probe from .text between \u0027init_module\u0027 (at offset 0x54a) and \u0027ni65_stop_start\u0027\n\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "dab3d02ec05d16aab680de471cb5d20c5d4852e8",
      "tree": "f70ca2ccbb33ecde64575170ac6079ac680c0802",
      "parents": [
        "3805f0e28ca313893b87e881201561d5c1857dd8"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Aug 14 23:00:04 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:40:16 2006 -0400"
      },
      "message": "[PATCH] lne390 section fix\n\nWARNING: drivers/net/lne390.o - Section mismatch: reference to .init.text: from .text between \u0027init_module\u0027 (at offset 0x100) and \u0027lne390_close\u0027\n\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "3805f0e28ca313893b87e881201561d5c1857dd8",
      "tree": "0c12ca79dc2cf4b20c1669903586811c8f6c8cf1",
      "parents": [
        "58f149fc65ebced1148789cfb37457a8c7aaca75"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Aug 14 23:00:03 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:40:16 2006 -0400"
      },
      "message": "[PATCH] lance section fix\n\nWARNING: drivers/net/lance.o - Section mismatch: reference to .init.data:lance_portlist from .text between \u0027init_module\u0027 (at offset 0x8d3) and \u0027lance_purge_ring\u0027\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "58f149fc65ebced1148789cfb37457a8c7aaca75",
      "tree": "1ef93d92b6e75e1bfdbfe3ae66c373902d80a9f0",
      "parents": [
        "5757f5c6d7d9cbe4bf6a464f1842a767f505d440"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Aug 14 23:00:03 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:40:16 2006 -0400"
      },
      "message": "[PATCH] eth16i section fix\n\nWARNING: drivers/net/eth16i.o - Section mismatch: reference to .init.data:cardname from .text between \u0027init_module\u0027 (at offset 0x6d2) and \u0027eth16i_multicast\u0027\nWARNING: drivers/net/eth16i.o - Section mismatch: reference to .init.text: from .text between \u0027init_module\u0027 (at offset 0x6ef) and \u0027eth16i_multicast\u0027\nWARNING: drivers/net/eth16i.o - Section mismatch: reference to .init.text: from .text between \u0027init_module\u0027 (at offset 0x702) and \u0027eth16i_multicast\u0027\nWARNING: drivers/net/eth16i.o - Section mismatch: reference to .init.data:cardname from .text between \u0027init_module\u0027 (at offset 0x70e) and \u0027eth16i_multicast\u0027\nWARNING: drivers/net/eth16i.o - Section mismatch: reference to .init.text: from .text between \u0027init_module\u0027 (at offset 0x71d) and \u0027eth16i_multicast\u0027\nWARNING: drivers/net/eth16i.o - Section mismatch: reference to .init.data:cardname from .text between \u0027init_module\u0027 (at offset 0x729) and \u0027eth16i_multicast\u0027\n\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "5757f5c6d7d9cbe4bf6a464f1842a767f505d440",
      "tree": "2328e0ea7e58284e255a0efcbfaa5fca71cc42e9",
      "parents": [
        "b1176b95b4b851b05a2f541ef54e7ce3ed358d19"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Aug 14 23:00:02 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:40:16 2006 -0400"
      },
      "message": "[PATCH] es3210 section fix\n\nWARNING: drivers/net/es3210.o - Section mismatch: reference to .init.text: from .text between \u0027init_module\u0027 (at offset 0xdf) and \u0027es_close\u0027\nWARNING: drivers/net/es3210.o - Section mismatch: reference to .init.text: from .text between \u0027init_module\u0027 (at offset 0x100) and \u0027es_close\u0027\n\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "b1176b95b4b851b05a2f541ef54e7ce3ed358d19",
      "tree": "b89c89277d6b8aa74aca7f05fe11b558a3a522f1",
      "parents": [
        "02a3245fcf0911ff92100aa54823dc1c5950fba9"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Aug 14 23:00:01 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:40:15 2006 -0400"
      },
      "message": "[PATCH] eexpress section fix\n\nWARNING: drivers/net/eexpress.o - Section mismatch: reference to .init.text: from .text between \u0027init_module\u0027 (at offset 0x6c3) and \u0027eexp_hw_lasttxstat\u0027\nWARNING: drivers/net/eexpress.o - Section mismatch: reference to .init.text: from .text between \u0027init_module\u0027 (at offset 0x74f) and \u0027eexp_hw_lasttxstat\u0027\n\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "02a3245fcf0911ff92100aa54823dc1c5950fba9",
      "tree": "64d5f935e051e3377e608183888988ab4e97d9c5",
      "parents": [
        "d543cbb6d192313d9027ed09c7a1e085b1234082"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Aug 14 23:00:01 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:40:15 2006 -0400"
      },
      "message": "[PATCH] eepro section fix\n\nWARNING: drivers/net/eepro.o - Section mismatch: reference to .init.text: from .text between \u0027init_module\u0027 (at offset 0x284) and \u0027eepro_ethtool_get_drvinfo\u0027\nWARNING: drivers/net/eepro.o - Section mismatch: reference to .init.text: from .text between \u0027init_module\u0027 (at offset 0x2a7) and \u0027eepro_ethtool_get_drvinfo\u0027\nWARNING: drivers/net/eepro.o - Section mismatch: reference to .init.data:eepro_portlist from .text between \u0027init_module\u0027 (at offset 0x2b3) and \u0027eepro_ethtool_get_drvinfo\u0027\n\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "d543cbb6d192313d9027ed09c7a1e085b1234082",
      "tree": "32be5033c73d5ea47ec05b7147dcaf33116dc4cb",
      "parents": [
        "5d930108c914c04fbb0bfbb059d23a5fcaf0d1e7"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Aug 14 23:00:00 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:40:15 2006 -0400"
      },
      "message": "[PATCH] e2100 section fix\n\nWARNING: drivers/net/e2100.o - Section mismatch: reference to .init.text: from .text between \u0027init_module\u0027 (at offset 0xd9) and \u0027e21_reset_8390\u0027\n\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "5d930108c914c04fbb0bfbb059d23a5fcaf0d1e7",
      "tree": "fd23d6c39c9860e49e8a6faac0c2dec6ad21751e",
      "parents": [
        "e26c129a49a7a4990f362a9cdb3084198b4d9d7b"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Aug 14 22:59:59 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:40:15 2006 -0400"
      },
      "message": "[PATCH] at1700 section fix\n\nWARNING: drivers/net/at1700.o - Section mismatch: reference to .init.text:at1700_probe from .text between \u0027init_module\u0027 (at offset 0x75) and \u0027net_get_stats\u0027\n\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "e26c129a49a7a4990f362a9cdb3084198b4d9d7b",
      "tree": "c75a8653a660579065ac5c1767622265c90bf250",
      "parents": [
        "5f3bc456ce190a963a8816be5a318df9998f3bc5"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Aug 14 22:59:59 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:40:15 2006 -0400"
      },
      "message": "[PATCH] cs89x0 section fix\n\nWARNING: drivers/net/cs89x0.o - Section mismatch: reference to .init.data:version from .text between \u0027init_module\u0027 (at offset 0x13d8) and \u0027net_get_stats\u0027\nWARNING: drivers/net/cs89x0.o - Section mismatch: reference to .init.text: from .text between \u0027init_module\u0027 (at offset 0x1634) and \u0027net_get_stats\u0027\nWARNING: drivers/net/cs89x0.o - Section mismatch: reference to .init.text: from .text between \u0027init_module\u0027 (at offset 0x1a1f) and \u0027net_get_stats\u0027\n\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "5f3bc456ce190a963a8816be5a318df9998f3bc5",
      "tree": "562371db20835786b44a2588d7d7a8f00b6c15ad",
      "parents": [
        "62a87b8051ded3d1fcb89773c9febd1bb34d3cbd"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Aug 14 22:59:58 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:40:15 2006 -0400"
      },
      "message": "[PATCH] cops section fix\n\nWARNING: drivers/net/appletalk/cops.o - Section mismatch: reference to .init.text:cops_probe from .text between \u0027init_module\u0027 (at offset 0xae) and \u0027cops_rx\u0027\n\nCc: \"David S. Miller\" \u003cdavem@davemloft.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "62a87b8051ded3d1fcb89773c9febd1bb34d3cbd",
      "tree": "0216e4fec6dc6af488a58b6e0da427d7336565db",
      "parents": [
        "864fe05dfa4ff3e230acf3b4ccf878b6f22603c4"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Aug 14 22:59:57 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:40:15 2006 -0400"
      },
      "message": "[PATCH] ac3200 section fixes\n\nWARNING: drivers/net/ac3200.o - Section mismatch: reference to .init.text: from .text between \u0027init_module\u0027 (at offset 0xf9) and \u0027ac_close_card\u0027\n\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "864fe05dfa4ff3e230acf3b4ccf878b6f22603c4",
      "tree": "be3eb18d68f4a60a4f5341e5163981c4638bdaf8",
      "parents": [
        "41ace1861a93f12f70ff10026fb1539fea38fcf8"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Aug 14 22:59:57 2006 -0700"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:40:15 2006 -0400"
      },
      "message": "[PATCH] 82596 section fixes\n\nWARNING: drivers/net/82596.o - Section mismatch: reference to .init.text:i82596_probe from .text between \u0027init_module\u0027 (at offset 0x141) and \u0027i596_add_cmd\u0027\n\nAlso nail a couple of crazy inlines.\n\nCc: Jeff Garzik \u003cjeff@garzik.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjeff@garzik.org\u003e\n"
    },
    {
      "commit": "d14b50cc60ca465290fcdb3b88e7d5fb684361ed",
      "tree": "c4a712123b94cd4c0ab4d8d9d87a7619e9bcb6ba",
      "parents": [
        "a34b6fc04d58ad72fe0cc74cd448f4551bd2ebaf",
        "ef7d1b244fa6c94fb76d5f787b8629df64ea4046"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:27:12 2006 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:27:12 2006 -0400"
      },
      "message": "Merge branch \u0027master\u0027 into upstream-fixes\n"
    },
    {
      "commit": "41ace1861a93f12f70ff10026fb1539fea38fcf8",
      "tree": "c6d841ae9b73d6b7d6a887c21ce378cebc9c97f7",
      "parents": [
        "09e590e5d5a93f2eaa748a89c623258e6bad1648",
        "ef7d1b244fa6c94fb76d5f787b8629df64ea4046"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:25:34 2006 -0400"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jeff@garzik.org",
        "time": "Sat Aug 19 17:25:34 2006 -0400"
      },
      "message": "Merge branch \u0027master\u0027 into upstream-fixes\n"
    },
    {
      "commit": "48e2691f9c3bd6719e773f0b883449f4cef39585",
      "tree": "881824d59283e1dca8865d4e84a9e40baf5e5891",
      "parents": [
        "a90f56847e8df9034c1c05d1157e1b0cd96987fb"
      ],
      "author": {
        "name": "James Smart",
        "email": "James.Smart@Emulex.Com",
        "time": "Thu Aug 17 11:58:11 2006 -0400"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.il.steeleye.com",
        "time": "Sat Aug 19 13:46:47 2006 -0700"
      },
      "message": "[SCSI] lpfc 8.1.9 : Change version number to 8.1.9\n\nChange version number to 8.1.9\n\nSigned-off-by: James Smart \u003cJames.Smart@emulex.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "a90f56847e8df9034c1c05d1157e1b0cd96987fb",
      "tree": "d0ec40b563855c7100675e800c2a95c711cd376d",
      "parents": [
        "33ccf8d1080bdccb4751a92f6da361a6e01b7cc0"
      ],
      "author": {
        "name": "James Smart",
        "email": "James.Smart@Emulex.Com",
        "time": "Thu Aug 17 11:58:04 2006 -0400"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.il.steeleye.com",
        "time": "Sat Aug 19 13:46:30 2006 -0700"
      },
      "message": "[SCSI] lpfc 8.1.9 : Stall eh handlers if resetting while rport blocked\n\nStall error handler if attempting resets/aborts while an rport is blocked.\nThis avoids device offline scenarios due to errors in the error handler.\n\nBackground:\n  Although the transport is using the scsi_timed_out functionality to\n  restart the timeout if the rport is blocked, if the timeout has already\n  fired before the block occurs, the eh handler still runs and can take\n  the device offline. Ultimately, this window cannot be resolved without\n  significant work in the error handler thread. Christoph noted the first\n  level of these issues when he noted the poor error response handling\n  by the error thread.\n\n  We found, under heavy load and error testing, that time window from when\n  the scsi_times_out() adds the io to the queue to when the scsi_error_handler\n  gets around to servicing it, can be in the several seconds range. In most\n  cases, these test conditions are highly unusual, but possible.\n  As a result, we\u0027re stalling the error handler in this race window so that\n  we can avoid the device_offline transitions.\n\nSigned-off-by: James Smart \u003cJames.Smart@emulex.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "33ccf8d1080bdccb4751a92f6da361a6e01b7cc0",
      "tree": "48128e331e0e46af0258864325eb1550287cca61",
      "parents": [
        "3a0c56d801df6785b30e36c19e89d7e971c151da"
      ],
      "author": {
        "name": "James Smart",
        "email": "James.Smart@Emulex.Com",
        "time": "Thu Aug 17 11:57:58 2006 -0400"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.il.steeleye.com",
        "time": "Sat Aug 19 13:46:05 2006 -0700"
      },
      "message": "[SCSI] lpfc 8.1.9 : Misc Bug Fixes\n\nMisc Bug Fixes:\n- Cap MBX_DOWN_LINK command timeout to 60 seconds\n- Fix double free of ndlp object\n- Don\u0027t free mbox structures on error. The completion handlers expect to do so.\n- Clear host attention work items when going offline\n- Fixed discovery issues in multi-initiator environments.\n\nSigned-off-by: James Smart \u003cJames.Smart@emulex.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "5beba53230351b2d77c317c22e66c415f2ebaf02",
      "tree": "0f70ebff5d478d36d8440aebac5e311b0cfe5e74",
      "parents": [
        "acaea9ee460d0ba5a14f0066ba26cfa43dd5fdf3"
      ],
      "author": {
        "name": "Roland Dreier",
        "email": "rolandd@cisco.com",
        "time": "Fri Aug 18 10:41:46 2006 -0700"
      },
      "committer": {
        "name": "Roland Dreier",
        "email": "rolandd@cisco.com",
        "time": "Fri Aug 18 10:41:46 2006 -0700"
      },
      "message": "IB/mthca: No userspace SRQs if HCA doesn\u0027t have SRQ support\n\nLeave all SRQ methods out of the device\u0027s uverbs_cmd_mask if the\ndevice doesn\u0027t have SRQ support (because of ancient firmware) so that\nwe don\u0027t allow userspace to call the driver\u0027s create_srq method.  This\nfixes a userspace-triggerable oops caused by ib_uverbs_create_srq()\nfollowing the device\u0027s -\u003ecreate_srq function pointer, which will be\nNULL if the device doesn\u0027t support SRQs.\n\nSigned-off-by: Roland Dreier \u003crolandd@cisco.com\u003e\n"
    },
    {
      "commit": "d4274b51a5c8147b5341e15927368e75b632d297",
      "tree": "fbf4f8b5929bc89acada9b3cbfc588cf1f159e92",
      "parents": [
        "c0956bd25161bff45304d482cda51ca4b3b572f1"
      ],
      "author": {
        "name": "Panagiotis Issaris",
        "email": "takis@issaris.org",
        "time": "Tue Aug 15 16:01:07 2006 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Thu Aug 17 16:29:55 2006 -0700"
      },
      "message": "[PPP]: handle kmalloc failures and convert to using kzalloc\n\nThe PPP code contains two kmalloc()s followed by memset()s without\nhandling a possible memory allocation failure.  (Suggested by Joe\nPerches).\n\nAnd furthermore, conversions from kmalloc+memset to kzalloc.\n\n[akpm@osdl.org: fix error-path leak]\n[akpm@osdl.org: cleanups]\n[paulus@samba.org: don\u0027t add useless printk and cardmap_destroy calls]\n\nSigned-off-by: Panagiotis Issaris \u003ctakis@issaris.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "932f3772cf76cc1b1fd1538ceee3edba9bf2164f",
      "tree": "f9ad57d1369359d30fbab271cb736519c0606e20",
      "parents": [
        "2f8af120a159a843948749ea88bcacda9779b132"
      ],
      "author": {
        "name": "Michael Chan",
        "email": "mchan@broadcom.com",
        "time": "Tue Aug 15 01:39:36 2006 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Thu Aug 17 16:29:52 2006 -0700"
      },
      "message": "[BNX2]: Convert to netdev_alloc_skb()\n\nConvert dev_alloc_skb() to netdev_alloc_skb() and increase default\nrx ring size to 255. The old ring size of 100 was too small.\n\nUpdate version to 1.4.44.\n\nSigned-off-by: Michael Chan \u003cmchan@broadcom.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "2f8af120a159a843948749ea88bcacda9779b132",
      "tree": "e633037a72db856b8078e814e3451dd8f44c14de",
      "parents": [
        "fb33f82568d32016b3b3c00819574f9526e52be3"
      ],
      "author": {
        "name": "Michael Chan",
        "email": "mchan@broadcom.com",
        "time": "Tue Aug 15 01:39:10 2006 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Thu Aug 17 16:29:51 2006 -0700"
      },
      "message": "[BNX2]: Fix tx race condition.\n\nFix a subtle race condition between bnx2_start_xmit() and bnx2_tx_int()\nsimilar to the one in tg3 discovered by Herbert Xu:\n\nCPU0\t\t\t\t\tCPU1\nbnx2_start_xmit()\n\tif (tx_ring_full) {\n\t\ttx_lock\n\t\t\t\t\tbnx2_tx()\n\t\t\t\t\t\tif (!netif_queue_stopped)\n\t\tnetif_stop_queue()\n\t\tif (!tx_ring_full)\n\t\t\t\t\t\tupdate_tx_ring\n\t\t\tnetif_wake_queue()\n\t\ttx_unlock\n\t}\n\nEven though tx_ring is updated before the if statement in bnx2_tx_int() in\nprogram order, it can be re-ordered by the CPU as shown above.  This\nscenario can cause the tx queue to be stopped forever if bnx2_tx_int() has\njust freed up the entire tx_ring.  The possibility of this happening\nshould be very rare though.\n\nThe following changes are made, very much identical to the tg3 fix:\n\n1. Add memory barrier to fix the above race condition.\n\n2. Eliminate the private tx_lock altogether and rely solely on\nnetif_tx_lock.  This eliminates one spinlock in bnx2_start_xmit()\nwhen the ring is full.\n\n3. Because of 2, use netif_tx_lock in bnx2_tx_int() before calling\nnetif_wake_queue().\n\n4. Add memory barrier to bnx2_tx_avail().\n\n5. Add bp-\u003etx_wake_thresh which is set to half the tx ring size.\n\n6. Check for the full wake queue condition before getting\nnetif_tx_lock in tg3_tx().  This reduces the number of unnecessary\nspinlocks when the tx ring is full in a steady-state condition.\n\nSigned-off-by: Michael Chan \u003cmchan@broadcom.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "d68909f4c3eee09c13d4e5c86512c6c075553dbd",
      "tree": "4153c598662ea952903329c6eced0acbbfcfb7b6",
      "parents": [
        "b5240b32b9b2b75917c478d768191862a2b190cc"
      ],
      "author": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Wed Aug 16 19:16:58 2006 -0400"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Wed Aug 16 19:23:00 2006 -0400"
      },
      "message": "ACPI: avoid irqrouter_resume might_sleep oops on resume from S4\n\n__might_sleep+0x8e/0x93\nacpi_os_wait_semaphore+0x50/0xa3\nacpi_ut_acquire_mutex+0x28/0x6a\nacpi_ns_get_node+0x46/0x88\nacpi_ns_evaluate+0x2d/0xfc\nacpi_rs_set_srs_method_data+0xc5/0xe1\nacpi_set_current_resources+0x31/0x3f\nacpi_pci_link_set+0xfc/0x1a5\nirqrouter_resume+0x48/0x5f\n\nand\n\n__might_sleep+0x8e/0x93\nkmem_cache_alloc+0x2a/0x8f\nacpi_evaluate_integer+0x32/0x96\nacpi_bus_get_status+0x30/0x84\nacpi_pci_link_set+0x12a/0x1a5\nirqrouter_resume+0x48/0x5f\n\nhttp://bugzilla.kernel.org/show_bug.cgi?id\u003d6810\n\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    },
    {
      "commit": "5672bde6355f2d12c49df1eec083d25afe489063",
      "tree": "9e4713a72b26b0b92d2a381a65dbdc83abd0e621",
      "parents": [
        "9f737633e6ee54fc174282d49b2559bd2208391d"
      ],
      "author": {
        "name": "Handle X",
        "email": "xhandle@gmail.com",
        "time": "Mon Aug 14 22:37:27 2006 -0700"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Wed Aug 16 18:08:06 2006 -0400"
      },
      "message": "ACPI: hotkey.c fixes, fix for potential crash of hotkey.c\n\nWhile going through the code, I found out some memory leaks and potential\ncrashes in drivers/acpi/hotkey.c Please find the patch to fix them.\n\nThis patch does the following,\n\n1. Fixes memory leaks in error paths of hotkey_write_config\n\n2. Fixes freeing unallocated pointers in the error paths of hotkey_write_config\n\n3. Uses a loop instead of linear searching for parsing the userspace\n   input in get_params\n\n4. Uses array of char * instead of passing 4 pointer parameters\n   explicitly into the init_{poll_}hotkey_* static functions\n\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nAcked-by: Luming Yu \u003cluming.yu@intel.com\u003e\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    },
    {
      "commit": "acaea9ee460d0ba5a14f0066ba26cfa43dd5fdf3",
      "tree": "9dcc7fdf6038d47097924f8173d94a170d6377f3",
      "parents": [
        "a19aa5c5fdda8b556ab238177ee27c5ef7873c94"
      ],
      "author": {
        "name": "Jack Morgenstein",
        "email": "jackm@mellanox.co.il",
        "time": "Tue Aug 15 17:20:50 2006 +0300"
      },
      "committer": {
        "name": "Roland Dreier",
        "email": "rolandd@cisco.com",
        "time": "Wed Aug 16 09:54:47 2006 -0700"
      },
      "message": "IB/core: Fix SM LID/LID change with client reregister set\n\nAfter commit 12bbb2b7be7f5564952ebe0196623e97464b8ac5, when SM LID\nchange or LID change MAD also has a client reregistration bit set,\nonly CLIENT_REREGISTER event is generated.\n\nAs a result, the sa_query module and the cache module don\u0027t update the\nport information, and ULPs (e.g. IPoIB) stop working.  This is the\nregression we observe as compared to 2.6.17.\n\nRather than generate multiple events (which would have negative\nperformance impact), let us simply let cache and SA query respond to\nreregister event in the same way as to LID and SM change events.\n\nSigned-off-by: Jack Morgenstein \u003cjackm@mellanox.co.il\u003e\nSigned-off-by: Michael S. Tsirkin \u003cmst@mellanox.co.il\u003e\nSigned-off-by: Roland Dreier \u003crolandd@cisco.com\u003e\n"
    },
    {
      "commit": "223ddcea898940b0b02bd6e624dbba3507c97365",
      "tree": "3c88d52453521b143848fed844142ac5ea46fe51",
      "parents": [
        "ca412cc992c3226239dd3bf896681bbf30e1b444",
        "3e03a2fcb2c031062f9bf698ce999b77cd80aec4"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Aug 16 08:51:04 2006 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Aug 16 08:51:04 2006 -0700"
      },
      "message": "Merge branch \u0027for-linus\u0027 of git://git390.osdl.marist.edu/pub/scm/linux-2.6\n"
    },
    {
      "commit": "b18a60e7c2a7f2a17dbd57885621a42d546e2f7d",
      "tree": "ca41788f01ae5d6c268a1b7992682ea9de0ea563",
      "parents": [
        "2f6c55fc3109bcfa1bb1a112c825e07212c20f37"
      ],
      "author": {
        "name": "Peter Oberparleiter",
        "email": "peter.oberparleiter@de.ibm.com",
        "time": "Wed Aug 16 13:49:33 2006 +0200"
      },
      "committer": {
        "name": "Martin Schwidefsky",
        "email": "schwidefsky@de.ibm.com",
        "time": "Wed Aug 16 13:49:33 2006 +0200"
      },
      "message": "[S390] inaccessible PAV alias devices on LPAR.\n\nIn some situations PAV alias devices on LPAR are not accessible.\nThe initialization procedure required to enable access to PAV alias\ndevices has to be performed per storage server subsystem and not\nonly once per storage server.\n\nSigned-off-by: Peter Oberparleiter \u003cpeter.oberparleiter@de.ibm.com\u003e\nSigned-off-by: Martin Schwidefsky \u003cschwidefsky@de.ibm.com\u003e\n"
    },
    {
      "commit": "2f6c55fc3109bcfa1bb1a112c825e07212c20f37",
      "tree": "9ad93064df1939b5167b1240384da368c7eae410",
      "parents": [
        "d0710c7c9eea2145a0614f39dbe9dc8cb4ae14da"
      ],
      "author": {
        "name": "Heiko Carstens",
        "email": "heiko.carstens@de.ibm.com",
        "time": "Wed Aug 16 13:49:27 2006 +0200"
      },
      "committer": {
        "name": "Martin Schwidefsky",
        "email": "schwidefsky@de.ibm.com",
        "time": "Wed Aug 16 13:49:27 2006 +0200"
      },
      "message": "[S390] dasd slab cache alignment.\n\nThe dasd_page_cache should return page addresses and therefore the\ncache must be created with an alignment of PAGE_SIZE.\n\nSigned-off-by: Heiko Carstens \u003cheiko.carstens@de.ibm.com\u003e\nSigned-off-by: Martin Schwidefsky \u003cschwidefsky@de.ibm.com\u003e\n"
    },
    {
      "commit": "ca412cc992c3226239dd3bf896681bbf30e1b444",
      "tree": "5b5fd9becdfeda652173ada495b7738988211c7b",
      "parents": [
        "e0e92632715f08dddeddb72b76e04c20126e1f67",
        "2621e2a155140b01c6ff57b3863cda2922c2c8bd"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Aug 16 01:38:39 2006 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Aug 16 01:38:39 2006 -0700"
      },
      "message": "Merge gregkh@master.kernel.org:/pub/scm/linux/kernel/git/wim/linux-2.6-watchdog\n"
    },
    {
      "commit": "b5240b32b9b2b75917c478d768191862a2b190cc",
      "tree": "19b45bf221d7bb6ef19eca93d801906936b87952",
      "parents": [
        "07dd4855e7fffeb50565826e5e736509ee8f6129"
      ],
      "author": {
        "name": "Kristen Carlson Accardi",
        "email": "kristen.c.accardi@intel.com",
        "time": "Wed Jul 26 13:32:00 2006 -0400"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Wed Aug 16 01:00:07 2006 -0400"
      },
      "message": "ACPIPHP: allow acpiphp to build without ACPI_DOCK\n\nChange the build options for acpiphp so that it may build without being\ndependent on the ACPI_DOCK option, but yet does not allow the option of\nacpiphp being built-in when dock is built as a module.\nThis does not change the previous patch for ACPI_IBM_DOCK Kconfig.\n\nFor the following matrix of config options, I built an i386 kernel.\n\nDock\t\tacpiphp\t\tshould it build?\tconfirmed\ny\t\ty\t\ty\t\t\ty\ny\t\tn\t\ty\t\t\ty\ny\t\tm\t\ty\t\t\ty\nm\t\ty\t\tno - acpiphp should\tacpiphp was \n\t\t\t\t     convert to m\tconverted to m\nm\t\tn\t\ty\t\t\ty\nm\t\tm\t\ty\t\t\ty\nn\t\ty\t\ty\t\t\ty\nn\t\tn\t\ty\t\t\ty\nn\t\tm\t\ty\t\t\ty\n\n\nSigned-off-by: Anil S Keshavamurthy \u003canil.s.keshavamurthy@intel.com\u003e\nSigned-off-by: Kristen Carlson Accardi \u003ckristen.c.accardi@intel.com\u003e\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    }
  ],
  "next": "07dd4855e7fffeb50565826e5e736509ee8f6129"
}
