)]}'
{
  "log": [
    {
      "commit": "9fe6fcd8ccb2c8c661dfd1e07e3122aef31a67d4",
      "tree": "23a952fa918799fa7847fbd78d2fbf2d9691206b",
      "parents": [
        "2425e9fe67cb5e66c173c4f604ddd8a5970d89e9"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Tue Nov 29 14:01:55 2005 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:51:40 2006 -0800"
      },
      "message": "[PATCH] USB: drivers/usb/misc/sisusbvga/sisusb.c: remove dead code\n\nThe Coverity checker found this dead code.\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "2425e9fe67cb5e66c173c4f604ddd8a5970d89e9",
      "tree": "80d5846f634adcf9d71894a692259dad27ab3112",
      "parents": [
        "3cf0a22e8b1b3f44288db773d315e72e89d51c4c"
      ],
      "author": {
        "name": "Alan Stern",
        "email": "stern@rowland.harvard.edu",
        "time": "Tue Nov 29 12:13:31 2005 -0500"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:51:40 2006 -0800"
      },
      "message": "[PATCH] USB: Don\u0027t assume root-hub resume succeeds\n\nThis patch (as614) makes a small change to the part of the hub driver\nresponsible for remote wakeup of root hubs.  When these wakeups occur\nthe driver is suspended, and in case the resume fails the driver should\nremain suspended -- it shouldn\u0027t try to proceed with its normal\nprocessing.\n\nThis will hardly ever matter in normal use, but it did crop up while I\nwas debugging a different problem.\n\nSigned-off-by: Alan Stern \u003cstern@rowland.harvard.edu\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "3cf0a22e8b1b3f44288db773d315e72e89d51c4c",
      "tree": "b2b9e6d717b317a6439d9e5c1cf2333148759af0",
      "parents": [
        "a21d4fed4b00eaf7e7c3b2e2b25de24f540bfa66"
      ],
      "author": {
        "name": "Alan Stern",
        "email": "stern@rowland.harvard.edu",
        "time": "Tue Nov 29 12:08:15 2005 -0500"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:51:40 2006 -0800"
      },
      "message": "[PATCH] USB Gadget: dummy_hcd: updates to hcd-\u003estate\n\nThis patch (as613) moves the updates to hcd-\u003estate in the dummy_hcd\ndriver to where they now belong.  It also uses the new\nHC_FLAG_HW_ACCESSIBLE flag in a way that simulates a real PCI\ncontroller, and it adds checks for attempts to resume the bus while the\ncontroller is suspended or to suspend the controller while the bus is\nactive.\n\nSigned-off-by: Alan Stern \u003cstern@rowland.harvard.edu\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "a21d4fed4b00eaf7e7c3b2e2b25de24f540bfa66",
      "tree": "b903c111c0319e44ba5a724d6d87f7754c5a4fcc",
      "parents": [
        "bd39b7f195e5a780a3c6710eb1c1450f158a1f31"
      ],
      "author": {
        "name": "Alan Stern",
        "email": "stern@rowland.harvard.edu",
        "time": "Tue Nov 29 12:04:24 2005 -0500"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:51:40 2006 -0800"
      },
      "message": "[PATCH] USB Gadget: file_storage: remove \"volatile\" declarations\n\nThis patch (as612) removes the \"volatile\" declarations from the\nfile-storage gadget.  It turns out that they aren\u0027t needed for anything\nmuch; adding a few memory barriers does a sufficient job.\n\nThe patch also removes a wait_queue.  Not much point having a queue when\nonly one task is ever going to be on it!\n\nSigned-off-by: Alan Stern \u003cstern@rowland.harvard.edu\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "bd39b7f195e5a780a3c6710eb1c1450f158a1f31",
      "tree": "34c57ff00c5779a571c9ab5f5a592093594f3aee",
      "parents": [
        "5d3202949c9ac6e135d98bde15a8f05ad3fa5849"
      ],
      "author": {
        "name": "Chris Humbert",
        "email": "mahadri-kernel@drigon.com",
        "time": "Mon Nov 28 09:29:23 2005 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:51:39 2006 -0800"
      },
      "message": "[PATCH] USB: don\u0027t allocate dma pools for PIO HCDs\n\nUSB: don\u0027t allocate dma pools for PIO HCDs\n\nhcd_buffer_alloc() and hcd_buffer_free() have a similar dma_mask\ncheck and revert to kmalloc()/kfree(), but hcd_buffer_create()\ndoesn\u0027t check dma_mask and allocates unused dma pools.\n\nSigned-off-by: Chris Humbert \u003cmahadri-kernel@drigon.com\u003e\nAcked-by: David Brownell \u003cdavid-b@pacbell.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "5d3202949c9ac6e135d98bde15a8f05ad3fa5849",
      "tree": "2807209840c56f37a003ebb9aa3a4e4171c3cfe9",
      "parents": [
        "8a4613f01f5bb850cab34e3db572d97251d997b3"
      ],
      "author": {
        "name": "Daniel Ritz",
        "email": "daniel.ritz-ml@swissonline.ch",
        "time": "Sun Nov 27 22:23:38 2005 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:51:39 2006 -0800"
      },
      "message": "[PATCH] USB: input/touchkitusb: handle multiple packets\n\nSome versions of the controller seem to put multiple report packet into a\nsingle urb. also it can happen that a packet is split across multiple urbs.\nunpatched you get a jumpy cursor on some screens.\nthe patch does:\n- handle multiple packets per urb\n- handle packets split across multiple urb\n- check packet type\n- cleanups\n\nSigned-off-by: Daniel Ritz \u003cdaniel.ritz@gmx.ch\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "8a4613f01f5bb850cab34e3db572d97251d997b3",
      "tree": "3ce08f8c75cf8696f7902dd33298a95016ed4e14",
      "parents": [
        "487f9c6710e7dff338e59820f6cfaeaaa87cb532"
      ],
      "author": {
        "name": "Luiz Fernando Capitulino",
        "email": "lcapitulino@mandriva.com.br",
        "time": "Mon Nov 28 19:16:07 2005 -0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:35 2006 -0800"
      },
      "message": "[PATCH] USB: usbserial: race-condition fix.\n\nThere is a race-condition in usb-serial driver that can be triggered if\na processes does \u0027port-\u003etty-\u003edriver_data \u003d NULL\u0027 in serial_close() while\nother processes is in kernel-space about to call serial_ioctl() on the\nsame port.\n\nThis happens because a process can open the device while there is\nanother one closing it.\n\nThe patch below fixes that by adding a semaphore to ensure that no\nprocess will open the device while another process is closing it.\n\nNote that we can\u0027t use spinlocks here, since serial_open() and\nserial_close() can sleep.\n\nSigned-off-by: Luiz Capitulino \u003clcapitulino@mandriva.com.br\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "487f9c6710e7dff338e59820f6cfaeaaa87cb532",
      "tree": "cf8b5706aa97d8a9143a40658440772863320bd7",
      "parents": [
        "717f736d937d0e98e964375dac770bfa20f73b72"
      ],
      "author": {
        "name": "Luiz Fernando Capitulino",
        "email": "lcapitulino@mandriva.com.br",
        "time": "Mon Nov 28 19:16:05 2005 -0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:35 2006 -0800"
      },
      "message": "[PATCH] USB: usbserial: Adds missing checks and bug fix.\n\nChecks if \u0027port\u0027 is NULL before using it in all tty operations, this\ncan avoid NULL pointer dereferences.\n\nSigned-off-by: Luiz Capitulino \u003clcapitulino@mandriva.com.br\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "717f736d937d0e98e964375dac770bfa20f73b72",
      "tree": "2aacf4fc87d275c266769022fd179c8339339cfc",
      "parents": [
        "3aea4a76a3ec4e6484f6316a97efff8b144b2b11"
      ],
      "author": {
        "name": "Olav Kongas",
        "email": "ok@artecdesign.ee",
        "time": "Sat Nov 26 01:58:36 2005 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:35 2006 -0800"
      },
      "message": "[PATCH] USB: isp116x-hcd: minor cleanup\n\nWhen going to suspend, there\u0027s no point in setting HC state in\nhost controller driver as USB core takes care of this.\n\nSigned-off-by: Olav Kongas \u003cok@artecdesign.ee\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "3aea4a76a3ec4e6484f6316a97efff8b144b2b11",
      "tree": "b2832719b2427485f7e727262649defa2cc013d8",
      "parents": [
        "12c3da346eb81b6a281031f62eda3bca993dff5a"
      ],
      "author": {
        "name": "Pavel Machek",
        "email": "pavel@ucw.cz",
        "time": "Sun Nov 27 09:47:28 2005 -0500"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:35 2006 -0800"
      },
      "message": "[PATCH] USB: Cleanups for usb gadget mass-storage\n\nRemove useless initalizers.\n\nSigned-off-by: Pavel Machek \u003cpavel@suse.cz\u003e\nSigned-off-by: Alan Stern \u003cstern@rowland.harvard.edu\u003e\n"
    },
    {
      "commit": "12c3da346eb81b6a281031f62eda3bca993dff5a",
      "tree": "428ac85a5ebf1564aa4254dcf625174ef36452d9",
      "parents": [
        "55c527187c9d78f840b284d596a0b298bc1493af"
      ],
      "author": {
        "name": "Alan Stern",
        "email": "stern@rowland.harvard.edu",
        "time": "Wed Nov 23 12:09:52 2005 -0500"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:35 2006 -0800"
      },
      "message": "[PATCH] USB: Store port number in usb_device\n\nThis patch (as610) adds a field to struct usb_device to store the device\u0027s\nport number.  This allows us to remove several loops in the hub driver\n(searching for a particular device among all the entries in the parent\u0027s\narray of children).\n\nSigned-off-by: Alan Stern \u003cstern@rowland.harvard.edu\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "55c527187c9d78f840b284d596a0b298bc1493af",
      "tree": "17f42fb911ecc70301f5a22d4c0e85ba7348a67a",
      "parents": [
        "949bf6431189c62eeebd3b52201406ba9978f525"
      ],
      "author": {
        "name": "Alan Stern",
        "email": "stern@rowland.harvard.edu",
        "time": "Wed Nov 23 12:03:12 2005 -0500"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:34 2006 -0800"
      },
      "message": "[PATCH] USB: Consider power budget when choosing configuration\n\nThis patch (as609) changes the way we keep track of power budgeting for\nUSB hubs and devices, and it updates the choose_configuration routine to\ntake this information into account.  (This is something we should have\nbeen doing all along.)  A new field in struct usb_device holds the amount\nof bus current available from the upstream port, and the usb_hub structure\nkeeps track of the current available for each downstream port.\n\nTwo new rules for configuration selection are added:\n\n\tDon\u0027t select a self-powered configuration when only bus power\n\tis available.\n\n\tDon\u0027t select a configuration requiring more bus power than is\n\tavailable.\n\nHowever the first rule is #if-ed out, because I found that the internal\nhub in my HP USB keyboard claims that its only configuration is\nself-powered.  The rule would prevent the configuration from being chosen,\nleaving the hub \u0026 keyboard unconfigured.  Since similar descriptor errors\nmay turn out to be fairly common, it seemed wise not to include a rule\nthat would break automatic configuration unnecessarily for such devices.\n\nThe second rule may also trigger unnecessarily, although this should be\nless common.  More likely it will annoy people by sometimes failing to\naccept configurations that should never have been chosen in the first\nplace.\n\nThe patch also changes usbcore\u0027s reaction when no configuration is\nsuitable.  Instead of raising an error and rejecting the device, now\nthe core will simply leave the device unconfigured.  People can always\nwork around such problems by installing configurations manually through\nsysfs.\n\nSigned-off-by: Alan Stern \u003cstern@rowland.harvard.edu\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "949bf6431189c62eeebd3b52201406ba9978f525",
      "tree": "50f4798f574d1c88828726e6b1f929361f10a6d5",
      "parents": [
        "3d48586cfa2e197515605ccf74527983d35638e3"
      ],
      "author": {
        "name": "Fengwei Yin",
        "email": "xaityyy@gmail.com",
        "time": "Fri Nov 18 10:35:36 2005 +0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:34 2006 -0800"
      },
      "message": "[PATCH] USB: One potential problem in gadget/serial.c\n\nIt looks like that the gs_serial module maybe sleep with spinlock in gs_close.\nSometimes, system hang when I remove the gs_serial module.\n\nFrom: Fengwei Yin \u003cxaityyy@gmail.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "3d48586cfa2e197515605ccf74527983d35638e3",
      "tree": "d2988275f8acd36738409f5765c15fd2d72a716f",
      "parents": [
        "4bf0ba861442d289eebfad8ea9ce365ab04fd582"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Sun Nov 20 23:56:11 2005 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:34 2006 -0800"
      },
      "message": "[PATCH] USB: small cleanups\n\nThis patch contains the following cleanups:\n- make needlessly global functions static\n- every file should #include the headers containing the prototypes for\n  it\u0027s global functions\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "4bf0ba861442d289eebfad8ea9ce365ab04fd582",
      "tree": "0301e45a155712ec03e0226a1e85e74198778f7e",
      "parents": [
        "7d069b7d80933004282c48edbe62526e4cb0aecc"
      ],
      "author": {
        "name": "Alan Stern",
        "email": "stern@rowland.harvard.edu",
        "time": "Mon Nov 21 11:58:07 2005 -0500"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:34 2006 -0800"
      },
      "message": "[PATCH] USB: Fix locking for USB suspend/resume\n\nThe earlier USB locking updates didn\u0027t touch the suspend/resume\nroutines.  They need updating as well, since now the caller holds the\ndevice semaphore.  This patch (as608) makes the necessary changes.  It\nalso adds a line to store the correct power state when a device is\nresumed, something which was unaccountably missing.\n\nSigned-off-by: Alan Stern \u003cstern@rowland.harvard.edu\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "7d069b7d80933004282c48edbe62526e4cb0aecc",
      "tree": "c18d1e04366bee64b62b28d4953fed3c83e85fcc",
      "parents": [
        "9ad3d6ccf5eee285e233dbaf186369b8d477a666"
      ],
      "author": {
        "name": "Alan Stern",
        "email": "stern@rowland.harvard.edu",
        "time": "Fri Nov 18 12:06:34 2005 -0500"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:34 2006 -0800"
      },
      "message": "[PATCH] USB: Disconnect children during hub unbind\n\nThis patch (as606b) is an updated version of my earlier patch to\ndisconnect children from a hub device when the hub driver is unbound.\nThanks to the changes in the driver core locking, we now know that the\nentire hub device (and not just the interface) is locked whenever the\nhub driver\u0027s disconnect method runs.  Hence it is safe to disconnect the\nchild device structures immediately instead of deferring the job.\n\nThe earlier version of the patch neglected to disable the hub\u0027s ports.\nWe don\u0027t want to forget that; otherwise we\u0027d end up with live devices\nusing addresses that have been recycled.  This update adds the necessary\ncode.\n\nSigned-off-by: Alan Stern \u003cstern@rowland.harvard.edu\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "9ad3d6ccf5eee285e233dbaf186369b8d477a666",
      "tree": "4ad43518e01f1b2c6513e79b318d974979041b99",
      "parents": [
        "75318d2d7cab77b14c5d3dbd5e69f2680a769e16"
      ],
      "author": {
        "name": "Alan Stern",
        "email": "stern@rowland.harvard.edu",
        "time": "Thu Nov 17 17:10:32 2005 -0500"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:34 2006 -0800"
      },
      "message": "[PATCH] USB: Remove USB private semaphore\n\nThis patch (as605) removes the private udev-\u003eserialize semaphore,\nrelying instead on the locking provided by the embedded struct device\u0027s\nsemaphore.  The changes are confined to the core, except that the\nusb_trylock_device routine now uses the return convention of\ndown_trylock rather than down_read_trylock (they return opposite values\nfor no good reason).\n\nA couple of other associated changes are included as well:\n\n\tNow that we aren\u0027t concerned about HCDs that avoid using the\n\thcd glue layer, usb_disconnect no longer needs to acquire the\n\tusb_bus_lock -- that can be done by usb_remove_hcd where it\n\tbelongs.\n\n\tDevices aren\u0027t locked over the same scope of code in\n\tusb_new_device and hub_port_connect_change as they used to be.\n\tThis shouldn\u0027t cause any trouble.\n\nAlong with the preceding driver core patch, this needs a lot of testing.\n\nSigned-off-by: Alan Stern \u003cstern@rowland.harvard.edu\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "75318d2d7cab77b14c5d3dbd5e69f2680a769e16",
      "tree": "13098167bd41d7dd0b0d3f678534a6daa29b4005",
      "parents": [
        "2143acc6dc79bdbff812f02a7dc5ab9d4fc81fc8"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Mon Nov 21 14:53:03 2005 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:34 2006 -0800"
      },
      "message": "[PATCH] USB: remove .owner field from struct usb_driver\n\nIt is no longer needed, so let\u0027s remove it, saving a bit of memory.\n\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "2143acc6dc79bdbff812f02a7dc5ab9d4fc81fc8",
      "tree": "523c2d57e412766bfc37b9ff6c22ff01108c92a5",
      "parents": [
        "ba9dc657af86d05d2971633e57d1f6f94ed60472"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Mon Nov 21 14:53:03 2005 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:32 2006 -0800"
      },
      "message": "[PATCH] USB: make registering a usb driver automatically set the module owner\n\nThis fixes the driver that forgot to set the module owner up.  Now we\ncan remove the unneeded pointer from the usb driver structure.  The idea\nfor how to do this was from Al Viro, who did this for the PCI drivers.\n\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "ba9dc657af86d05d2971633e57d1f6f94ed60472",
      "tree": "2b57fe680536b5a02e9dd3b8f4d1df33d6f65017",
      "parents": [
        "733260ff9c45bd4db60f45d17e8560a4a68dff4d"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Nov 16 13:41:28 2005 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:32 2006 -0800"
      },
      "message": "[PATCH] USB: allow usb drivers to disable dynamic ids\n\nThis lets drivers, like the usb-serial ones, disable the ability to add\nids from sysfs.\n\nThe usb-serial drivers are \"odd\" in that they are really usb-serial bus\ndrivers, not usb bus drivers, so the dynamic id logic will have to go\ninto the usb-serial bus core for those drivers to get that ability.\n\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "733260ff9c45bd4db60f45d17e8560a4a68dff4d",
      "tree": "e7f09a9a9e2d7a9f22288c9777f7b03906a89e20",
      "parents": [
        "ddae41be6145f5f9cb4e6df35661a09121b90672"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Nov 16 13:41:28 2005 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:32 2006 -0800"
      },
      "message": "[PATCH] USB: add dynamic id functionality to USB core\n\nEcho the usb vendor and product id to the \"new_id\" file in the driver\u0027s\nsysfs directory, and then that driver will be able to bind to a device\nwith those ids if it is present.\n\nExample:\n\techo 0557 2008 \u003e /sys/bus/usb/drivers/foo_driver/new_id\nadds the hex values 0557 and 2008 to the device id table for the foo_driver.\n\nNote, usb-serial drivers do not currently work with this capability yet.\nusb-storage also might have some oddities.\n\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "ddae41be6145f5f9cb4e6df35661a09121b90672",
      "tree": "b802e866016b66fd193c3a9945be9582f9066580",
      "parents": [
        "5ba35bd8f9a4fa6b92ef707826c47a1466ece460"
      ],
      "author": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Nov 16 13:41:28 2005 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:31 2006 -0800"
      },
      "message": "[PATCH] USB: reorg some functions out of the main usb.c file\n\nThis will make the dynamic-id stuff easier to do, as it will be\nself-contained.\n\nNo logic was changed at all.\n\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "5ba35bd8f9a4fa6b92ef707826c47a1466ece460",
      "tree": "2c180db14baa56d05dca8ff66d78bb97348a60cb",
      "parents": [
        "a00828e9ac62caed7b830d631914d7748817ccd1"
      ],
      "author": {
        "name": "Pete Zaitcev",
        "email": "zaitcev@redhat.com",
        "time": "Fri Dec 16 00:39:36 2005 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:31 2006 -0800"
      },
      "message": "[PATCH] USB: make bias writeable in libusual\n\nMake the bias parameter writeable. Writing the parameter does not trigger\na rebind of currently attached storage devices.\n\nSigned-off-by: Pete Zaitcev \u003czaitcev@redhat.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "a00828e9ac62caed7b830d631914d7748817ccd1",
      "tree": "2fed4c66762fa4f54945413b4027ff5837ad0633",
      "parents": [
        "1c50c317e2e7f15427149cbc216a63366468710e"
      ],
      "author": {
        "name": "Pete Zaitcev",
        "email": "zaitcev@redhat.com",
        "time": "Sat Oct 22 20:15:09 2005 -0700"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:31 2006 -0800"
      },
      "message": "[PATCH] USB: drivers/usb/storage/libusual\n\nThis patch adds a shim driver libusual, which routes devices between\nusb-storage and ub according to the common table, based on unusual_devs.h.\nThe help and example syntax is in Kconfig.\n\nSigned-off-by: Pete Zaitcev \u003czaitcev@redhat.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "1c50c317e2e7f15427149cbc216a63366468710e",
      "tree": "d48dc0b03090e89c644f73f9997b4f70b6ec9b41",
      "parents": [
        "8364d6b0be2dbbf162c6aea79615b5025a0d67c2"
      ],
      "author": {
        "name": "Alan Stern",
        "email": "stern@rowland.harvard.edu",
        "time": "Mon Nov 14 11:45:38 2005 -0500"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:31 2006 -0800"
      },
      "message": "[PATCH] USB: central handling for host controllers that were reset during suspend/resume\n\nThis patch (as515b) adds a routine to usbcore to simplify handling of\nhost controllers that lost power or were reset during suspend/resume.\nThe new core routine marks all the child devices of the root hub as\nNOTATTACHED and tells khubd to disconnect the device structures as soon\nas possible.\n\nSigned-off-by: Alan Stern \u003cstern@rowland.harvard.edu\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "8364d6b0be2dbbf162c6aea79615b5025a0d67c2",
      "tree": "f7511fe4a6b7ee39d4e8126712a7112dd1e2659a",
      "parents": [
        "a4f81a61ebba5953cba1e76f66423a7eca4a5ee4"
      ],
      "author": {
        "name": "Alan Stern",
        "email": "stern@rowland.harvard.edu",
        "time": "Mon Nov 14 12:16:30 2005 -0500"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:31 2006 -0800"
      },
      "message": "[PATCH] USB: dummy_hcd: rename variables\n\nThe recent platform_device update has reintroduced into dummy_hcd.c the\ndreaded dev-\u003edev syndrome.  This harkens back to when an earlier version\nof that driver included the unforgettable line:\n\n\tdev-\u003edev.dev.driver_data \u003d dev;\n\nThis patch (as602) renames the platform_device variables to \"pdev\", in\nthe hope of reducing confusion.\n\nSigned-off-by: Alan Stern \u003cstern@rowland.harvard.edu\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "a4f81a61ebba5953cba1e76f66423a7eca4a5ee4",
      "tree": "e8a1a3a43df27f26d1516c9df8d9a6aaf1e0a745",
      "parents": [
        "4a1728a28a193aa388900714bbb1f375e08a6d8e"
      ],
      "author": {
        "name": "A.YOSHIYAMA",
        "email": "yosshy@debian.or.jp",
        "time": "Tue Nov 15 09:55:18 2005 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:31 2006 -0800"
      },
      "message": "[PATCH] USB: usb-net: new device ID passed through module parameter\n\nadds new module parameter \"devid\" that points to a string with format\n\"device_name:vendor_id:device_id:flags\".  if provided at module load\ntime, this string is being parsed and a new entry is created in\nusb_dev_id[] and pegasus_ids[] so the new device can later be recognized\nby the probe routine.  this might be helpful for someone who don\u0027t\nknow/wish to build new module/kernel, but want to use his new usb-to-eth\ndevice that is not yet listed in pegasus.h\n\nSigned-off-by:\tPetko Manolov \u003cpetkan@nucleusys.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "4a1728a28a193aa388900714bbb1f375e08a6d8e",
      "tree": "52b5728b5377ef4be8aacabd1ae64a66770603e0",
      "parents": [
        "87c4252a35310fdbb2aabb880a39b83f83cadf62"
      ],
      "author": {
        "name": "Petko Manolov",
        "email": "petkan@nucleusys.com",
        "time": "Tue Nov 15 09:48:23 2005 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:30 2006 -0800"
      },
      "message": "[PATCH] USB: usb-net: removes redundant return\n\nremoves all redundant collecting of the return value from\nget/set_registers() and suchlike.  can\u0027t remember who put all of those\nsome time ago, but they doesn\u0027t make any sense to me.  where needed only\na few references remained;\n\nSigned-off-by: Petko Manolov \u003cpetkan@nucleusys.com\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "87c4252a35310fdbb2aabb880a39b83f83cadf62",
      "tree": "e1e5588651b6652696b9f4e81bb1776b1e4a4778",
      "parents": [
        "c9a50cc9318772e62d56f2a9172bdfda72bdacbe"
      ],
      "author": {
        "name": "Alan Stern",
        "email": "stern@rowland.harvard.edu",
        "time": "Wed Nov 09 16:59:56 2005 -0500"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:30 2006 -0800"
      },
      "message": "[PATCH] USB: file-storage gadget: Add reference count for children\n\nThis patch (as601) adds a proper reference count to the file-storage\ngadget\u0027s main data structure, to keep track of references held by child\ndevices (LUNs in this case).  Before this, the driver would wait for\neach child to be released before unbinding.\n\nWhile there\u0027s nothing really wrong with that (you can\u0027t create a hang by\ndoing \"rmmod g_file_storage \u003c/sys/.../lun0/ro\" since the open file will\nprevent rmmod from running), the code might as well follow the standard\nprocedures.  Besides, this shrinks the size of the structure by a few\nwords...  :-)\n\nSigned-off-by: Alan Stern \u003cstern@rowland.harvard.edu\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "c9a50cc9318772e62d56f2a9172bdfda72bdacbe",
      "tree": "768fcbcc35e1054843a04e1dd048425560c6fb3a",
      "parents": [
        "704aa0b7a9744d5f2b5c1fa68b826fcca73a2104"
      ],
      "author": {
        "name": "David Brownell",
        "email": "david-b@pacbell.net",
        "time": "Mon Nov 07 20:45:20 2005 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:30 2006 -0800"
      },
      "message": "[PATCH] USB: hcd uses EXTRA_CFLAGS for -DDEBUG\n\nThis modifies the HCD builds to automatically \"-DDEBUG\" if\nCONFIG_USB_DEBUG is selected.  It\u0027s just a minor source code cleanup,\nguaranteeing consistency.\n\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "704aa0b7a9744d5f2b5c1fa68b826fcca73a2104",
      "tree": "6a6bce0781c506bf44457514550006102b0f182d",
      "parents": [
        "baefbc39d8e23942cc10db92f5bc42e3476f6bc1"
      ],
      "author": {
        "name": "David Brownell",
        "email": "david-b@pacbell.net",
        "time": "Mon Nov 07 15:38:24 2005 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:30 2006 -0800"
      },
      "message": "[PATCH] USB: wakeup flag updates (3/3) isp116x-hcd\n\nThis makes the ISP116x HCD use the driver model wakeup flags for its\ncontroller, not the flags in the HCD glue (which will be removed).\n\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "baefbc39d8e23942cc10db92f5bc42e3476f6bc1",
      "tree": "58e3dcb5a768fb1e5d45dddecd676d25562e64e2",
      "parents": [
        "0c8624f91d91df7cdeb9b2dace3269b8788c845f"
      ],
      "author": {
        "name": "David Brownell",
        "email": "david-b@pacbell.net",
        "time": "Mon Nov 07 15:34:41 2005 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:30 2006 -0800"
      },
      "message": "[PATCH] USB: wakeup flag updates (2/3) uhci-hcd\n\nThis makes UHCI stop using the HCD glue wakeup flags to report whether\nthe controller can wake the system.  The existing code was wrong anyway;\nhaving a PCI PM capability doesn\u0027t imply it reports PME# is supported.\n\nI skimmed Intel\u0027s ICH7 datasheet and that basically says the wakeup\nsignaling gets routed only through ACPI registers.  (On the other hand,\nmany VIA chips provide the PCI PM capabilities...)  I think that doing\nthis correctly with UHCI is going to require the ACPI folk to associate\nthe /proc/acpi/wakeup identifiers (and wakeup enable/disable flags)\nwith the relevant /sys/devices/pci*/...  devices.\n\nFrom: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "0c8624f91d91df7cdeb9b2dace3269b8788c845f",
      "tree": "e836d3ac3e1eb623093d47c678ed8e684a79b7ce",
      "parents": [
        "d97cc2f2e938547a47daef29bc10ab38600a3310"
      ],
      "author": {
        "name": "David Brownell",
        "email": "david-b@pacbell.net",
        "time": "Mon Nov 07 15:31:25 2005 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:30 2006 -0800"
      },
      "message": "[PATCH] USB: wakeup flag updates (1/3) sl811-hcd\n\nThis makes the SL811 HCD use the driver model wakeup flags for its\ncontroller, not the flags in the HCD glue (which will be removed).\n\nFrom: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n drivers/usb/host/sl811-hcd.c |    6 ++++--\n 1 file changed, 4 insertions(+), 2 deletions(-)\n"
    },
    {
      "commit": "d97cc2f2e938547a47daef29bc10ab38600a3310",
      "tree": "587a5b6abd9391975077de52cc7b5e75b47ad3a2",
      "parents": [
        "2c1c3c4cd5f796b1912c65aaf3bf48c0ddf11f5e"
      ],
      "author": {
        "name": "David Brownell",
        "email": "david-b@pacbell.net",
        "time": "Thu Dec 22 17:05:18 2005 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:30 2006 -0800"
      },
      "message": "[PATCH] USB: ehci fix driver model wakeup flags\n\nOn some systems, EHCI seems to be getting IRQs too early during driver\nsetup ... before the root hub is allocated, in particular, making trouble\nfor any code chasing down root hub pointers!  In this case, it seems to\nbe safe to just ignore the root hub setting.  Thanks to Rafael J. Wysocki\nfor getting this properly tested.\n\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "2c1c3c4cd5f796b1912c65aaf3bf48c0ddf11f5e",
      "tree": "d0adc25607629f4fbb9f45cc498f5c155d520291",
      "parents": [
        "8d7802ed3c617120863f84346638d1cf1c96137b"
      ],
      "author": {
        "name": "David Brownell",
        "email": "david-b@pacbell.net",
        "time": "Mon Nov 07 15:24:46 2005 -0800"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:30 2006 -0800"
      },
      "message": "[PATCH] USB: EHCI updates (4/4) driver model wakeup flags\n\nThis teaches the EHCI driver to use the new driver model wakeup flags,\nreplacing the similar ones in the HCD glue.  It also adds a workaround\nfor the current glitch whereby PCI init doesn\u0027t init the wakeup flags\nfrom the PCI PM capabilities.  (EHCI controllers don\u0027t worry about\nlegacy mode; the PCI PM capability would always do the job.)\n\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "8d7802ed3c617120863f84346638d1cf1c96137b",
      "tree": "008b4724dd19719a3541651a8e68a250a5ecf587",
      "parents": [
        "b72458a80c75cab832248f536412f386e20a93a0"
      ],
      "author": {
        "name": "matthieu castet",
        "email": "castet.matthieu@free.fr",
        "time": "Tue Nov 08 00:02:30 2005 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:29 2006 -0800"
      },
      "message": "[PATCH] USB: Eagle and ADI 930 usb adsl modem driver fix\n\nMore care on loading firmware, take into account fw-\u003esize can\u0027t be zero.\n\nSigned-off-by: Matthieu CASTET \u003ccastet.matthieu@free.fr\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "b72458a80c75cab832248f536412f386e20a93a0",
      "tree": "aae8bd4f4ca209cd5ddb22ab51c8f02012ed6593",
      "parents": [
        "6912354a895fcd234155273fe8838a0d83259a9b"
      ],
      "author": {
        "name": "matthieu castet",
        "email": "castet.matthieu@free.fr",
        "time": "Mon Nov 07 23:27:13 2005 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:29 2006 -0800"
      },
      "message": "[PATCH] USB: Eagle and ADI 930 usb adsl modem driver\n\nA driver for USB ADSL modems based on the ADI eagle chipset using the\nusb_atm infrastructure.\n\nThe managing part was taken from bsd ueagle driver, other parts were\nwritten from scratch.\n\nThe driver uses the in-kernel firmware loader :\n- to load  a first usb firmware when the modem is in pre-firmware state\n- to load the dsp firmware that are swapped in host memory.\n- to load CMV (configuration and management variables) when the modem\nboot. (We can\u0027t use options or sysfs for this as there many possible\nvalues. See\nhttps://mail.gna.org/public/eagleusb-dev/2005-04/msg00031.html for a\ndescription of some)\n- to load fpga code for 930 chipset.\n\nThe device had 4 endpoints :\n* 2 for data (use by usbatm). The incoming\nendpoint could be iso or bulk. The modem seems buggy and produce lot\u0027s\nof atm errors when using it in bulk mode for speed \u003e 3Mbps, so iso\nendpoint is need for speed \u003e 3Mbps. At the moment iso endpoint need a\npatched usbatm library and for this reason is not included in this patch.\n\n* One bulk endpoint for uploading dsp firmware\n\n* One irq endpoint that notices the driver\n    - if we need to upload a page of the dsp firmware\n    - an ack for read or write CMV and the value (for the read case).\n\nIf order to make the driver cleaner, we design synchronous\n(read|write)_cmv :\n-send a synchronous control message to the modem\n-wait for an ack or a timeout\n-return the value if needed.\n\nIn order to run these synchronous usb messages we need a kernel thread.\n\nThe driver has been tested  with sagem fast 800 modems with different\neagle chipset revision and with ADI 930 since April 2005.\n\nSigned-off-by: Matthieu CASTET \u003ccastet.matthieu@free.fr\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "6912354a895fcd234155273fe8838a0d83259a9b",
      "tree": "6dca4969dda3fb177c62f18b12bfb6d2be4bb567",
      "parents": [
        "959eea2191e8d74b16ef019b0f4bf875c14f4547"
      ],
      "author": {
        "name": "Alan Stern",
        "email": "stern@rowland.harvard.edu",
        "time": "Thu Nov 03 11:44:49 2005 -0500"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:29 2006 -0800"
      },
      "message": "[PATCH] USB: EHCI: fix conflation of buf \u003d\u003d 0 with len \u003d\u003d 0\n\nWhen the ehci-hcd driver prepares a control URB, it tests for a\nzero-length data stage by looking at the transfer_dma value instead of\nthe transfer_buffer_length.  (In fact it does this even for non-control\nURBs, which is an additional aspect of the same bug.)\n\nHowever, under certain circumstances it\u0027s possible for transfer_dma to\nbe 0 while transfer_buffer_length is non-zero.  This can happen when a\nfreshly allocated page (mapped to address 0 and marked Copy-On-Write,\nbut never written to) is used as the source buffer for an OUT transfer.\nThis patch (as598) fixes the problem.\n\nSigned-off-by: Alan Stern \u003cstern@rowland.harvard.edu\u003e\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "959eea2191e8d74b16ef019b0f4bf875c14f4547",
      "tree": "c535857225eec2a52ce18c162ed94c5f18427dee",
      "parents": [
        "535488fcf1e4b2331e1c4a1eb67ca09468c13507"
      ],
      "author": {
        "name": "Olav Kongas",
        "email": "ok@artecdesign.ee",
        "time": "Thu Nov 03 17:38:14 2005 +0200"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:29 2006 -0800"
      },
      "message": "[PATCH] USB: isp116x-hcd: cleanup\n\nThe attached patch makes a cleanup of isp116x-hcd. Most of the volume of\nthe patch comes from 2 sources: moving the code around to get rid of a\nfew function prototypes and reworking register dumping functions/macros.\nAmong other things, switched over from using procfs to debugfs.\n\nCleanup. The following changes were made:\n\n- Rework register dumping code so it can be used for dumping\n  to both syslog and debugfs.\n- Switch from procfs to debugfs..\n- Die gracefully on Unrecoverable Error interrupt.\n- Fix memory leak in isp116x_urb_enqueue(), if HC happens to\n  die in a narrow time window.\n- Fix a \u0027sparce\u0027 warning (unnecessary cast).\n- Report Devices Removable for root hub ports by default\n  (was Devices Permanently Attached).\n- Move bus suspend/resume functions down in code to get rid of\n  a few function prototypes.\n- A number of one-line cleanups.\n- Add an entry to MAINTAINERS.\n\nSigned-off-by: Olav Kongas \u003cok@artecdesign.ee\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n MAINTAINERS                    |    6\n drivers/usb/host/isp116x-hcd.c |  429 ++++++++++++++++-------------------------\n drivers/usb/host/isp116x.h     |   83 +++++--\n 3 files changed, 230 insertions(+), 288 deletions(-)\n"
    },
    {
      "commit": "535488fcf1e4b2331e1c4a1eb67ca09468c13507",
      "tree": "285a6e02054bb5a661605649d3527a73bbdba466",
      "parents": [
        "61a87adf2e7b410da8e41799c61c21a7b8c8b001"
      ],
      "author": {
        "name": "Olav Kongas",
        "email": "ok@artecdesign.ee",
        "time": "Fri Oct 28 15:04:45 2005 +0300"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:29 2006 -0800"
      },
      "message": "[PATCH] USB: isp116x-hcd: support reiniting HC on resume\n\nUntil now the isp116x-hcd had no support to reinitialize the HC on\nresume, if the controller lost its state during suspend. This patch,\ngenerated against your Oct 26 git tree, adds that support. The patch is\nbasically the same as the one tested by Ivan Kalatchev, who reported the\nproblem, on 2.6.13.\n\nPlease apply,\n\nSupport reinitializing the isp116x host controller from scratch on\nresume, if the controller has lost its state.\n\nSigned-off-by: Olav Kongas \u003cok@artecdesign.ee\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "61a87adf2e7b410da8e41799c61c21a7b8c8b001",
      "tree": "b4d09ce45dadd78cd2b92848a96c508f44d12f88",
      "parents": [
        "2e1dcc1600c1d83b26479edd076866595bbd3523"
      ],
      "author": {
        "name": "David Kubicek",
        "email": "dave@awk.cz",
        "time": "Tue Nov 01 18:51:34 2005 +0100"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:29 2006 -0800"
      },
      "message": "[PATCH] USB: Converting cdc acm to a ring queue\n\nthis patch by David converts the sending queue of the CDC ACM driver\nto a queue of URBs. This is needed for quicker devices. Please apply.\n\nSigned-Off-By: Oliver Neukum \u003coliver@neukum.name\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n\n drivers/usb/class/cdc-acm.c |  229 ++++++++++++++++++++++++++++++--------------\n drivers/usb/class/cdc-acm.h |   33 +++++-\n 2 files changed, 185 insertions(+), 77 deletions(-)\n"
    },
    {
      "commit": "2e1dcc1600c1d83b26479edd076866595bbd3523",
      "tree": "8cdee2c9a12ec62b380b6c9f8ec13171d6b5a60f",
      "parents": [
        "81f280e22f14d6d976620acaa1b346a90f4e1adc"
      ],
      "author": {
        "name": "Richard Purdie",
        "email": "rpurdie@rpsys.net",
        "time": "Sat Nov 12 14:22:14 2005 +0000"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:29 2006 -0800"
      },
      "message": "[PATCH] USB: Add pxa27x OHCI PM functions\n\nAdd power management functions for the pxa27x USB OHCI host controller.\nThis is a totally rewritten version of the patch by Nicolas Pitre and\nTodd Poynor which accounts for recent USB changes.\n\nSigned-off-by: Richard Purdie \u003crpurdie@rpsys.net\u003e\nSigned-off-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "81f280e22f14d6d976620acaa1b346a90f4e1adc",
      "tree": "298db1ef614489451fecdd35439c630c8086a368",
      "parents": [
        "88026842b0a760145aa71d69e74fbc9ec118ca44"
      ],
      "author": {
        "name": "Richard Purdie",
        "email": "rpurdie@rpsys.net",
        "time": "Sat Nov 12 14:22:11 2005 +0000"
      },
      "committer": {
        "name": "Greg Kroah-Hartman",
        "email": "gregkh@suse.de",
        "time": "Wed Jan 04 13:48:28 2006 -0800"
      },
      "message": "[PATCH] USB: pxa27x OHCI - Separate platform code from main driver\n\nTo allow multiple platforms to use the PXA27x OHCI driver, the platform\ncode needs to be moved into the board specific files in\narch/arm/mach-pxa. This patch does this for mainstone and adds\npreliminary hooks to allow other boards to use the driver.\n\nThis has been compile tested for mainstone and successfully run on Spitz\n(Sharp Zaurus SL-C3000) with the addition of an appropriate board\nsupport file.\n\nSigned-off-by: Richard Purdie \u003crpurdie@rpsys.net\u003e\nSigned-off-by: Nicolas Pitre \u003cnico@cam.org\u003e\nAcked-by: David Brownell \u003cdbrownell@users.sourceforge.net\u003e\nSigned-off-by: Greg Kroah-Hartman \u003cgregkh@suse.de\u003e\n"
    },
    {
      "commit": "88026842b0a760145aa71d69e74fbc9ec118ca44",
      "tree": "96a0b5842e24d6736c698cdbd820a3ad9d8d9f10",
      "parents": [
        "8f493d797bc1fe470377adc9d8775845427e240e"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 02 19:21:10 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 02 19:21:10 2006 -0800"
      },
      "message": "Linux v2.6.15\n\nHey, it\u0027s fifteen years today since I bought the machine that got Linux\nstarted.  January 2nd is a good date.\n"
    },
    {
      "commit": "8f493d797bc1fe470377adc9d8775845427e240e",
      "tree": "08f4555a0064185152a51ed707e9571dbeedddc7",
      "parents": [
        "abe842eb98c45e2b77c5868ef106616ca828a3e4"
      ],
      "author": {
        "name": "Andi Kleen",
        "email": "ak@suse.de",
        "time": "Tue Jan 03 00:07:28 2006 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 02 17:01:42 2006 -0800"
      },
      "message": "[PATCH] Make sure interleave masks have at least one node set\n\nOtherwise a bad mem policy system call can confuse the interleaving\ncode into referencing undefined nodes.\n\nOriginally reported by Doug Chapman\n\nI was told it\u0027s CVE-2005-3358\n(one has to love these security people - they make everything sound important)\n\nSigned-off-by: Andi Kleen \u003cak@suse.de\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "abe842eb98c45e2b77c5868ef106616ca828a3e4",
      "tree": "f0d89e7d946a7ed9b57bb29e93bae4ce25d2cbc2",
      "parents": [
        "f12f4d90308a22396ac87f6c3a7b2620589614c3"
      ],
      "author": {
        "name": "Dag-Erling Smørgrav",
        "email": "des@linpro.no",
        "time": "Mon Jan 02 15:57:06 2006 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 02 08:38:38 2006 -0800"
      },
      "message": "[PATCH] Avoid namespace pollution in \u003casm/param.h\u003e\n\nIn commit 3D59121003721a8fad11ee72e646fd9d3076b5679c, the x86 and x86-64\n\u003casm/param.h\u003e was changed to include \u003clinux/config.h\u003e for the\nconfigurable timer frequency.\n\nHowever, asm/param.h is sometimes used in userland (it is included\nindirectly from \u003csys/param.h\u003e), so your commit pollutes the userland\nnamespace with tons of CONFIG_FOO macros.  This greatly confuses\nsoftware packages (such as BusyBox) which use CONFIG_FOO macros\nthemselves to control the inclusion of optional features.\n\nAfter a short exchange, Christoph approved this patch\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "f12f4d90308a22396ac87f6c3a7b2620589614c3",
      "tree": "bd086b38c2a3d3de8d765f52d0bbaae7035bab08",
      "parents": [
        "557962a926c62a9c4bd79d6b36df873d4f8c51ef"
      ],
      "author": {
        "name": "Benjamin Herrenschmidt",
        "email": "benh@kernel.crashing.org",
        "time": "Mon Jan 02 13:04:44 2006 +1100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 02 08:38:37 2006 -0800"
      },
      "message": "[PATCH] powerpc: more g5 overtemp problem fix\n\nSome G5s still occasionally experience shutdowns due to overtemp\nconditions despite the recent fix. After analyzing logs from such\nmachines, it appears that the overtemp code is a bit too quick at\nshutting the machine down when reaching the critical temperature (tmax +\n8) and doesn\u0027t leave the fan enough time to actually cool it down. This\nhappens if the temperature of a CPU suddenly rises too high in a very\nshort period of time, or occasionally on boot (that is the CPUs are\nalready overtemp by the time the driver loads).\n\nThis patches makes the code a bit more relaxed, leaving a few seconds to\nthe fans to do their job before kicking the machine shutown.\n\nSigned-off-by: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "557962a926c62a9c4bd79d6b36df873d4f8c51ef",
      "tree": "f0056d09f2a2fc3bb2ea427aa189351b07400a52",
      "parents": [
        "de9e007d9105bf8fa613a89810feff32a43add03"
      ],
      "author": {
        "name": "Stas Sergeev",
        "email": "stsp@aknet.ru",
        "time": "Sun Jan 01 04:18:52 2006 +0300"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 31 18:01:57 2005 -0800"
      },
      "message": "[PATCH] x86: teach dump_task_regs() about the -8 offset.\n\nThis should fix multi-threaded core-files\n\nSigned-off-by: stsp@aknet.ru\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "de9e007d9105bf8fa613a89810feff32a43add03",
      "tree": "ef7805d1e03e8648fbaca3713d1a749c27770339",
      "parents": [
        "35f349ee082de0be45eb23926d9fc7569f5011f0"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 31 17:00:29 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 31 17:00:29 2005 -0800"
      },
      "message": "sysctl: make sure to terminate strings with a NUL\n\nThis is a slightly more complete fix for the previous minimal sysctl\nstring fix.  It always terminates the returned string with a NUL, even\nif the full result wouldn\u0027t fit in the user-supplied buffer.\n\nThe returned length is the full untruncated length, so that you can\ntell when truncation has occurred.\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "35f349ee082de0be45eb23926d9fc7569f5011f0",
      "tree": "043db3b15bc9a76af3c519e7e715ef06e7f48c1b",
      "parents": [
        "82c9df820112c6286a8e8fbe482e94b65b49062c",
        "f02aa3f9a3dea4375759ae1d87bebf2467719b72"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 31 13:49:26 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 31 13:49:26 2005 -0800"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-serial\n"
    },
    {
      "commit": "82c9df820112c6286a8e8fbe482e94b65b49062c",
      "tree": "6f52b0ae3db256de9a3ac46083229d96f2d130e9",
      "parents": [
        "8febdd85adaa41fa1fc1cb31286210fc2cd3ed0c"
      ],
      "author": {
        "name": "Yi Yang",
        "email": "yang.y.yi@gmail.com",
        "time": "Fri Dec 30 16:37:10 2005 +0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Dec 30 17:22:08 2005 -0800"
      },
      "message": "[PATCH] Fix false old value return of sysctl\n\nFor the sysctl syscall, if the user wants to get the old value of a\nsysctl entry and set a new value for it in the same syscall, the old\nvalue is always overwritten by the new value if the sysctl entry is of\nstring type and if the user sets its strategy to sysctl_string.  This\nissue lies in the strategy being run twice if the strategy is set to\nsysctl_string, the general strategy sysctl_string always returns 0 if\nsuccess.\n\nSuch strategy routines as sysctl_jiffies and sysctl_jiffies_ms return 1\nbecause they do read and write for the sysctl entry.\n\nThe strategy routine sysctl_string return 0 although it actually read\nand write the sysctl entry.\n\nAccording to my analysis, if a strategy routine do read and write, it\nshould return 1, if it just does some necessary check but not read and\nwrite, it should return 0, for example sysctl_intvec.\n\nSigned-off-by: Yi Yang \u003cyang.y.yi@gmail.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "8febdd85adaa41fa1fc1cb31286210fc2cd3ed0c",
      "tree": "2e1aaa5e4e68057a4e96a606e2ad0bcccedcd6df",
      "parents": [
        "8b90db0df7187a01fb7177f1f812123138f562cf"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Dec 30 17:18:53 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Dec 30 17:18:53 2005 -0800"
      },
      "message": "sysctl: don\u0027t overflow the user-supplied buffer with \u0027\\0\u0027\n\nIf the string was too long to fit in the user-supplied buffer,\nthe sysctl layer would zero-terminate it by writing past the\nend of the buffer. Don\u0027t do that.\n\nNoticed by Yi Yang \u003cyang.y.yi@gmail.com\u003e\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "8b90db0df7187a01fb7177f1f812123138f562cf",
      "tree": "8d7029403cc50d822bc22085202bfdbf6110203b",
      "parents": [
        "40c37213a081990b1d3778f57630f97df75a7ec1"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Dec 30 08:39:10 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Dec 30 08:39:10 2005 -0800"
      },
      "message": "Insanity avoidance in /proc\n\nThe old /proc interfaces were never updated to use loff_t, and are just\ngenerally broken.  Now, we should be using the seq_file interface for\nall of the proc files, but converting the legacy functions is more work\nthan most people care for and has little upside..\n\nBut at least we can make the non-LFS rules explicit, rather than just\ninsanely wrapping the offset or something.\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "40c37213a081990b1d3778f57630f97df75a7ec1",
      "tree": "6a2a534cbc678f11dfcc9b21a34df44da161f5c7",
      "parents": [
        "ae5536d6f7f9b51f7a0451421eade1988cfd7126"
      ],
      "author": {
        "name": "Denny Priebe",
        "email": "spamtrap@siglost.org",
        "time": "Thu Dec 29 22:19:09 2005 -0500"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Dec 30 08:20:26 2005 -0800"
      },
      "message": "[PATCH] Input: wacom - fix X axis setup\n\nThis patch fixes a typo introduced by conversion to dynamic input_dev\nallocation.\n\nSigned-off-by: Dmitry Torokhov \u003cdtor@mail.ru\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "ae5536d6f7f9b51f7a0451421eade1988cfd7126",
      "tree": "bd84138298e7a027c4fa2b8941b33a0d9c547531",
      "parents": [
        "1994754412536d4ab902a81530b49bcaf496a59c"
      ],
      "author": {
        "name": "Dmitry Torokhov",
        "email": "dtor_core@ameritech.net",
        "time": "Thu Dec 29 22:19:08 2005 -0500"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Dec 30 08:20:26 2005 -0800"
      },
      "message": "[PATCH] Input: warrior - fix HAT0Y axis setup\n\nThis patch fixes a typo introduced by conversion to dynamic input_dev\nallocation.\n\nSigned-off-by: Dmitry Torokhov \u003cdtor@mail.ru\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "1994754412536d4ab902a81530b49bcaf496a59c",
      "tree": "a088bd648eb9091eee434bfd0b4339a723e793a9",
      "parents": [
        "9e625ff8a37aefcc177b19614ffcffb5bc6eeea1"
      ],
      "author": {
        "name": "Dmitry Torokhov",
        "email": "dtor_core@ameritech.net",
        "time": "Thu Dec 29 22:19:07 2005 -0500"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Dec 30 08:20:25 2005 -0800"
      },
      "message": "[PATCH] Input: kbtab - fix Y axis setup\n\nThis patch fixes a typo introduced by conversion to dynamic input_dev\nallocation.\n\nSigned-off-by: Dmitry Torokhov \u003cdtor@mail.ru\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "f02aa3f9a3dea4375759ae1d87bebf2467719b72",
      "tree": "8300a735ff96bc107e05df334a8fd05a951c94fe",
      "parents": [
        "9e625ff8a37aefcc177b19614ffcffb5bc6eeea1"
      ],
      "author": {
        "name": "Erik Hovland",
        "email": "erik@hovland.org",
        "time": "Fri Dec 30 15:57:35 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Fri Dec 30 15:57:35 2005 +0000"
      },
      "message": "[ARM] 3216/1: indent and typo in drivers/serial/pxa.c\n\nPatch from Erik Hovland\n\nThis patch provides two changes. An indent is supplied for an if/else clause so that it is more readable. An acronym is incorrectly typed as UER when it should be IER.\n\nSigned-off-by: Erik Hovland \u003cerik@hovland.org\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "9e625ff8a37aefcc177b19614ffcffb5bc6eeea1",
      "tree": "c3017de4134ddf75c50b319c738e2d155c7a3735",
      "parents": [
        "392c14beaca2ee85a98d0c6b453501be67423a20"
      ],
      "author": {
        "name": "Jean Delvare",
        "email": "khali@linux-fr.org",
        "time": "Thu Dec 29 22:07:30 2005 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 29 13:21:16 2005 -0800"
      },
      "message": "[PATCH] Simplify the VIDEO_SAA7134_OSS Kconfig dependency line\n\nThanks to Roman Zippel for the suggestion.\n\nSigned-off-by: Jean Delvare \u003ckhali@linux-fr.org\u003e\n[ Short explanation: Kconfig uses ternary math: n/m/y, and !m is m ]\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "392c14beaca2ee85a98d0c6b453501be67423a20",
      "tree": "0cde7d5f7022c7ca05e3adf82749bbb9f593e998",
      "parents": [
        "bc781aa93e6dfa85aa251c8898f831031db55c49"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 29 13:01:54 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 29 13:01:54 2005 -0800"
      },
      "message": "Revert radeon AGP aperture offset changes\n\nThis reverts the series of commits\n\n\t67dbb4ea33731415fe09c62149a34f472719ac1d\n\t281ab031a8c9e5b593142eb4ec59a87faae8676a\n\t47807ce381acc34a7ffee2b42e35e96c0f322e52\n\nthat changed the GART VM start offset.  It fixed some machines, but\nseems to continually interact badly with some X versions.\n\nQuoth Ben Herrenschmidt:\n\n  \"So I think at this point, the best is that we keep the old bogus code\n   that at least is consistent with the bug in the server. I\u0027m working on a\n   big patch to X that reworks the memory map stuff completely and fixes\n   those issues on the server side, I\u0027ll do a DRM patch matching this X fix\n   as well so that the memory map is only ever set in one place and with\n   what I hope is a correct algorithm...\"\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "bc781aa93e6dfa85aa251c8898f831031db55c49",
      "tree": "a5e258c39e3013b24b1a6bb4d399159c11bfe020",
      "parents": [
        "77f234f9d995c9b576b311a56f66db6837e598df",
        "d2b18394259ef621fd2a6322aa9934198fd87a6a"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 29 10:27:28 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 29 10:27:28 2005 -0800"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-mmc\n"
    },
    {
      "commit": "77f234f9d995c9b576b311a56f66db6837e598df",
      "tree": "6dce48a0710fd05597173fe6b49a8ef482ec51f2",
      "parents": [
        "80c72579f74fcfcd63e27c5e317091cb35bb1f12",
        "a710ce08585e920740ffc84c7f3c82f4081169cf"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 29 10:27:07 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 29 10:27:07 2005 -0800"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-serial\n"
    },
    {
      "commit": "80c72579f74fcfcd63e27c5e317091cb35bb1f12",
      "tree": "38ea9f27b602a61139999d1bd1af27d45f2ac3a7",
      "parents": [
        "e597cb32e95a6c38e9ead981b169ef2974ccfec0"
      ],
      "author": {
        "name": "Jean Delvare",
        "email": "khali@linux-fr.org",
        "time": "Wed Dec 28 21:02:57 2005 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 29 10:26:36 2005 -0800"
      },
      "message": "[PATCH] Fix recursive config dependency for SAA7134\n\nFix the cyclic dependency issue between CONFIG_SAA7134_ALSA and\nCONFIG_SAA7134_OSS (credits to Mauro Carvalho Chehab.)\n\nSigned-off-by: Jean Delvare \u003ckhali@linux-fr.org\u003e\nAcked-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "e597cb32e95a6c38e9ead981b169ef2974ccfec0",
      "tree": "c893e4c0e2550620873e56ae7b8da4e1199ac675",
      "parents": [
        "576fc0978b6b3673fce6d4b405f36449e508826c"
      ],
      "author": {
        "name": "Anton Blanchard",
        "email": "anton@samba.org",
        "time": "Thu Dec 29 10:46:29 2005 +1100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 29 10:26:36 2005 -0800"
      },
      "message": "[PATCH] ppc64: htab_initialize_secondary cannot be marked __init\n\nSonny has noticed hotplug CPU on ppc64 is broken in 2.6.15-*. One of the\nproblems is that htab_initialize_secondary is called when a cpu is being\nbrought up, but it is marked __init.\n\nSigned-off-by: Anton Blanchard \u003canton@samba.org\u003e\nAcked-by: Paul Mackerras \u003cpaulus@samba.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "576fc0978b6b3673fce6d4b405f36449e508826c",
      "tree": "bc1069396afc93e4f10eb82ea1bf325eb479d05b",
      "parents": [
        "f873e3e88d52774633968826c5b7fa7bf9697999"
      ],
      "author": {
        "name": "Ravikiran G Thirumalai",
        "email": "kiran@scalex86.org",
        "time": "Thu Dec 29 13:06:11 2005 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 29 10:20:19 2005 -0800"
      },
      "message": "[PATCH] x86_64: Fix incorrect node_present_pages on NUMA\n\nCurrently, we do not pass the correct start_pfn to e820_hole_size, to\ncalculate holes.  Following patch fixes that.\n\nThe bug results in incorrect number of node_present_pages for each pgdat\nand causes ugly output in /sys and probably VM inbalances.\n\nSigned-off-by: Alok N Kataria \u003calokk@calsoftinc.com\u003e\nSigned-off-by: Ravikiran Thirumalai \u003ckiran@scalex86.org\u003e\nSigned-off-by: Andi Kleen \u003cak@suse.de\u003e\nSighed-off-by: Shair Fultheim \u003cshai@scalex86.org\u003e\nSighed-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "f873e3e88d52774633968826c5b7fa7bf9697999",
      "tree": "f05481ea1f64d551b071c0b0fd71e09293c64611",
      "parents": [
        "ee025949586f80effa634ff273c2444795472780"
      ],
      "author": {
        "name": "Riccardo Magliocchetti",
        "email": "riccardo@datahost.it",
        "time": "Wed Dec 28 20:44:48 2005 -0500"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 29 10:19:21 2005 -0800"
      },
      "message": "[PATCH] Input: aiptek - fix Y axis setup\n\nThis patch fixes a typo introduced by conversion to dynamic input_dev\nallocation.\n\nSigned-off-by: Dmitry Torokhov \u003cdtor@mail.ru\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "ee025949586f80effa634ff273c2444795472780",
      "tree": "60c4216cbd0cf05ab30c8c11c6132506a1cff457",
      "parents": [
        "63b44442416a243f05881b0dd094b621a46ab4b3"
      ],
      "author": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Wed Dec 28 20:01:04 2005 -0500"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 29 10:19:21 2005 -0800"
      },
      "message": "[PATCH] fix ia64 compile failure with gcc4.1\n\n__get_unaligned creates a typeof the var its passed, and writes to it,\nwhich on gcc4.1, spits out the following error:\n\ndrivers/char/vc_screen.c: In function \u0027vcs_write\u0027:\ndrivers/char/vc_screen.c:422: error: assignment of read-only variable \u0027val\u0027\n\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n[ The \"right\" fix would be to try to fix \u003casm-generic/unaligned.h\u003e\n  but that\u0027s hard to do with the tools gcc gives us. So this\n  simpler patch is preferable -- Linus ]\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "63b44442416a243f05881b0dd094b621a46ab4b3",
      "tree": "81e009cce86af20a866cb0853320e99615d6fee4",
      "parents": [
        "74433c0fe105f47e78c1f2267312693870c9ebc3"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Thu Dec 29 17:40:02 2005 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 29 09:48:15 2005 -0800"
      },
      "message": "[PATCH] uml: fix compilation with CONFIG_MODE_TT disabled\n\nFix UML compilation when SKAS mode is disabled. Indeed, we were compiling\nSKAS-only object files, which failed due to some SKAS-only headers being\nexcluded from the search path.\n\nThanks to the bug report from Pekka J Enberg.\n\nAcked-by: Pekka J Enberg \u003cpenberg (at) cs ! helsinki ! fi\u003e\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "74433c0fe105f47e78c1f2267312693870c9ebc3",
      "tree": "7b5f23e5ae0fc252feadb34f5dc7c2448261326f",
      "parents": [
        "30f04a4efa73dc80bf3f59f3f19ad5a24ac5ac0a"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Thu Dec 29 17:39:59 2005 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 29 09:48:15 2005 -0800"
      },
      "message": "[PATCH] Hostfs: update for new glibc - add missing symbol exports\n\nToday, when compiling UML, I got warnings for two used unexported symbols:\nreaddir64 and truncate64. Indeed, my glibc headers are aliasing readdir to\nreaddir64 and truncate to truncate64 (and so on).\n\nI\u0027m then adding additional exports. Since I\u0027ve no idea if the symbols where\nalways provided in the supported glibc\u0027s, I\u0027ve added weak definitions too.\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "30f04a4efa73dc80bf3f59f3f19ad5a24ac5ac0a",
      "tree": "0f7f165bcf73bf26f782a2b56d05020ea6d4d5b0",
      "parents": [
        "3d0a07e3310c947c048bd01d8d0efa0e4fae5ba9"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Thu Dec 29 17:39:57 2005 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 29 09:48:15 2005 -0800"
      },
      "message": "[PATCH] uml: hostfs - fix possible PAGE_CACHE_SHIFT overflows\n\nPrevent page-\u003eindex \u003c\u003c PAGE_CACHE_SHIFT from overflowing.\n\nThere is a casting there, but was added without care, so it\u0027s at the wrong\nplace. Note the extra parens around the shift - \"+\" is higher precedence than\n\"\u003c\u003c\", leading to a GCC warning which saved all us.\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3d0a07e3310c947c048bd01d8d0efa0e4fae5ba9",
      "tree": "7a12044022ecb0c3fcfd88a4d85a5afe91b5412a",
      "parents": [
        "516949480d3700cbde4272228a102c84721d6007"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Thu Dec 29 17:39:54 2005 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 29 09:48:15 2005 -0800"
      },
      "message": "[PATCH] Hostfs: remove unused var\n\nTrivial removal of unused variable from this file - doesn\u0027t even change the\ngenerated assembly code, in fact (gcc should trigger a warning for unused value\nhere).\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "516949480d3700cbde4272228a102c84721d6007",
      "tree": "b7fef00010e2ad97a9fdab4f683c1516948749cb",
      "parents": [
        "3603bc8dc5ab33941e6378fe52ea03b7f5561109"
      ],
      "author": {
        "name": "Paolo \u0027Blaisorblade\u0027 Giarrusso",
        "email": "blaisorblade@yahoo.it",
        "time": "Thu Dec 29 17:39:51 2005 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 29 09:48:15 2005 -0800"
      },
      "message": "[PATCH] uml: fix random segfaults at bootup\n\nDon\u0027t use printk() where \"current_thread_info()\" is crap.\n\nUntil when we switch to running on init_stack, current_thread_info() evaluates\nto crap. Printk uses \"current\" at times (in detail, \u0026current is evaluated with\nCONFIG_DEBUG_SPINLOCK to check the spinlock owner task).\n\nAnd this leads to random segmentation faults.\n\nExactly, what happens is that \u0026current \u003d *(current_thread_info()), i.e. round\ndown $esp and dereference the value. I.e. access the stack below $esp, which\ncauses SIGSEGV on a VM_GROWSDOWN vma (see arch/i386/mm/fault.c).\n\nSigned-off-by: Paolo \u0027Blaisorblade\u0027 Giarrusso \u003cblaisorblade@yahoo.it\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3603bc8dc5ab33941e6378fe52ea03b7f5561109",
      "tree": "f24249bb172b593b0087efa31112967ee3c44325",
      "parents": [
        "68ca243dd1dc90bd42bae3945e804c1042584920",
        "a8b554e75b0c14d5e12a11eaea604e536f49da29"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Dec 28 13:45:19 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Wed Dec 28 13:45:19 2005 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/tg3-2.6\n"
    },
    {
      "commit": "68ca243dd1dc90bd42bae3945e804c1042584920",
      "tree": "df6cb278ddce22daf8b524c82f2b43f012e025a0",
      "parents": [
        "d5784b57d2e08a632b971baae23266121004ef3b"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Wed Dec 28 13:27:04 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Wed Dec 28 13:27:04 2005 -0800"
      },
      "message": "[SERMOUSE]: Sun mice speak 5-byte protocol too.\n\nNoticed by Christophe Zimmerman, this explains the slow mouse movement\nwith 2.6.x kernels.\n\nAnd checking the 2.4.x drivers/sbus/char/sunmouse.c driver shows we\nalways used a 5-byte protocol with Sun mice in the past.  I have no\nidea how the 3-byte thing got into the 2.6.x driver, but it\u0027s surely\nwrong.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "d5784b57d2e08a632b971baae23266121004ef3b",
      "tree": "a00fb221e07d68eefa4c093efa98ef84a03342af",
      "parents": [
        "67dbb4ea33731415fe09c62149a34f472719ac1d"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Wed Dec 28 13:22:54 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Wed Dec 28 13:22:54 2005 -0800"
      },
      "message": "[SPARC]: Use STABS_DEBUG and DWARF_DEBUG macros in vmlinux.lds.S\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "a8b554e75b0c14d5e12a11eaea604e536f49da29",
      "tree": "53392403940c6d28c1be4b75e7b79e8c50938faa",
      "parents": [
        "091465d7514893a55dcf63e420698b21159c39a7"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Wed Dec 28 13:05:41 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Wed Dec 28 13:05:41 2005 -0800"
      },
      "message": "[TG3]: Update driver version and reldate.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "091465d7514893a55dcf63e420698b21159c39a7",
      "tree": "cbfaedb45164d21d0d2f4af5efad2fc78dd37f92",
      "parents": [
        "67dbb4ea33731415fe09c62149a34f472719ac1d"
      ],
      "author": {
        "name": "Chris Elmquist",
        "email": "chrise@sgi.com",
        "time": "Tue Dec 20 13:25:19 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Wed Dec 28 13:04:52 2005 -0800"
      },
      "message": "[TG3]: ethtool -d hangs PCIe systems\n\nResubmitting after recommendation to use GET_REG32_1() instead of\nGET_REG32_LOOP(..., 1).  Retested.  Problem remains fixed.\n\nPrevent tg3_get_regs() from reading reserved and undocumented registers\nat RX_CPU_BASE and TX_CPU_BASE offsets which caused hostile behavior\non PCIe platforms.\n\nAcked-by: Michael Chan \u003cmchan@broadcom.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "67dbb4ea33731415fe09c62149a34f472719ac1d",
      "tree": "5d417d821fb181ce683c60dabcfa33d8c6f65fb8",
      "parents": [
        "5ab4a6c81eb3dbe32361791d1535f9153f79b0ed"
      ],
      "author": {
        "name": "Benjamin Herrenschmidt",
        "email": "benh@kernel.crashing.org",
        "time": "Tue Dec 27 12:49:33 2005 +1100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Dec 27 19:57:52 2005 -0800"
      },
      "message": "[PATCH] Fix more radeon GART start calculation cases\n\nAs reported by Jules Villard \u003cjvillard@ens-lyon.fr\u003e and some others, the\nrecent GART aperture start reconfiguration causes problems on some\nsetups.\n\nWhat I _think_ might be happening is that the X server is also trying to\nmuck around with the card memory map and is forcing it back into a wrong\nsetting that also happens to no longer match what the DRM wants to do\nand blows up.  There are bugs all over the place in that code (and still\nsome bugs in the DRM as well anyway).\n\nThis patch attempts to avoid that by using the largest of the 2 values,\nwhich I think will cause it to behave as it used to for you and will\nstill fix the problem with machines that have an aperture size smaller\nthan the video memory.\n\nAcked-by: Jules Villard \u003cjvillard@ens-lyon.fr\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "5ab4a6c81eb3dbe32361791d1535f9153f79b0ed",
      "tree": "c89504389bf1a3452a499db9ea19acea76941616",
      "parents": [
        "1b93ae64cabe5e28dd5a1f35f96f938ca4f6ae20"
      ],
      "author": {
        "name": "David L Stevens",
        "email": "dlstevens@us.ibm.com",
        "time": "Tue Dec 27 14:03:00 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Dec 27 14:03:00 2005 -0800"
      },
      "message": "[IPV6] mcast: Fix multiple issues in MLDv2 reports.\n\nThe below \"jumbo\" patch fixes the following problems in MLDv2.\n\n1) Add necessary \"ntohs\" to recent \"pskb_may_pull\" check [breaks\n        all nonzero source queries on little-endian (!)]\n\n2) Add locking to source filter list [resend of prior patch]\n\n3) fix \"mld_marksources()\" to\n        a) send nothing when all queried sources are excluded\n        b) send full exclude report when source queried sources are\n                not excluded\n        c) don\u0027t schedule a timer when there\u0027s nothing to report\n\nNOTE: RFC 3810 specifies the source list should be saved and each\n  source reported individually as an IS_IN. This is an obvious DOS\n  path, requiring the host to store and then multicast as many sources\n  as are queried (e.g., millions...). This alternative sends a full, \n  relevant report that\u0027s limited to number of sources present on the\n  machine.\n\n4) fix \"add_grec()\" to send empty-source records when it should\n        The original check doesn\u0027t account for a non-empty source\n        list with all sources inactive; the new code keeps that\n        short-circuit case, and also generates the group header\n        with an empty list if needed.\n\n5) fix mca_crcount decrement to be after add_grec(), which needs\n        its original value\n\nThese issues (other than item #1 ;-) ) were all found by Yan Zheng,\nmuch thanks!\n\nSigned-off-by: David L Stevens \u003cdlstevens@us.ibm.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "1b93ae64cabe5e28dd5a1f35f96f938ca4f6ae20",
      "tree": "a8c5c7d08e6c658853245ad0b0cf47f0af1ff83d",
      "parents": [
        "6732badee0dad467fcc9dd0168af8677b2b1bc2f"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Tue Dec 27 13:57:59 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Tue Dec 27 13:57:59 2005 -0800"
      },
      "message": "[NET]: Validate socket filters against BPF_MAXINSNS in one spot.\n\nCurrently the checks are scattered all over and this leads\nto inconsistencies and even cases where the check is not made.\n\nBased upon a patch from Kris Katterjohn.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "6732badee0dad467fcc9dd0168af8677b2b1bc2f",
      "tree": "43fd9fbb5759de0e4a182d473621699b1ff453bc",
      "parents": [
        "79cac2a221ce18642550a13bed0f0203514923ea"
      ],
      "author": {
        "name": "YOSHIFUJI Hideaki",
        "email": "yoshfuji@linux-ipv6.org",
        "time": "Tue Dec 27 13:35:15 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Dec 27 13:35:15 2005 -0800"
      },
      "message": "[IPV6]: Fix addrconf dead lock.\n\nWe need to release idev-\u003elcok before we call addrconf_dad_stop().\nIt calls ipv6_addr_del(), which will hold idev-\u003elock.\n\nBug spotted by Yasuyuki KOZAKAI \u003cyasuyuki.kozakai@toshiba.co.jp\u003e.\n\nSigned-off-by: YOSHIFUJI Hideaki \u003cyoshfuji@linux-ipv6.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "a710ce08585e920740ffc84c7f3c82f4081169cf",
      "tree": "28032138cf7bd4cc903ce51083800df6a46e5dc8",
      "parents": [
        "04333393b930370db0cc29fdf0dbbd08ecd43337"
      ],
      "author": {
        "name": "Russell King",
        "email": "rmk@dyn-67.arm.linux.org.uk",
        "time": "Tue Dec 27 11:10:34 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Tue Dec 27 11:10:34 2005 +0000"
      },
      "message": "[SERIAL] Fix AMBA PL011 sysrq character handling\n\nWe only want the received character without the status bits for\nsysrq handling.\n\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "79cac2a221ce18642550a13bed0f0203514923ea",
      "tree": "ecc66198fee701916e247c44e6bad0db387535ce",
      "parents": [
        "6f4353d891b5e477528cd0b996e0263fecdf5d5f"
      ],
      "author": {
        "name": "David Kimdon",
        "email": "david.kimdon@devicescape.com",
        "time": "Mon Dec 26 17:27:10 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Dec 26 17:27:10 2005 -0800"
      },
      "message": "[BR_NETFILTER]: Fix leak if skb traverses \u003e 1 bridge\n\nCall nf_bridge_put() before allocating a new nf_bridge structure and\npotentially overwriting the pointer to a previously allocated one.\nThis fixes a memory leak which can occur when the bridge topology\nallows for an skb to traverse more than one bridge.\n\nSigned-off-by: David Kimdon \u003cdavid.kimdon@devicescape.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "6f4353d891b5e477528cd0b996e0263fecdf5d5f",
      "tree": "9f8f9f066fa82cf6b45a0b5002549f4b08c5fbbb",
      "parents": [
        "04333393b930370db0cc29fdf0dbbd08ecd43337"
      ],
      "author": {
        "name": "David L Stevens",
        "email": "dlstevens@us.ibm.com",
        "time": "Mon Dec 26 17:03:46 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Dec 26 17:03:46 2005 -0800"
      },
      "message": "[IPV6]: Increase default MLD_MAX_MSF to 64.\n\nThe existing default of 10 is just way too low.\n\nSigned-off-by: David L Stevens \u003cdlstevens@us.ibm.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "04333393b930370db0cc29fdf0dbbd08ecd43337",
      "tree": "f50d8ab5315919c34ef2c97d99f92e3920b4c4d4",
      "parents": [
        "f89f5948fc10bb973cd452d2e334da207828e228"
      ],
      "author": {
        "name": "James Bottomley",
        "email": "James.Bottomley@SteelEye.com",
        "time": "Mon Dec 26 09:58:49 2005 -0600"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 26 10:17:43 2005 -0800"
      },
      "message": "[PATCH] Fix Fibre Channel boot oops\n\nThe oops is characteristic of the underlying device being removed from\nvisibility before the class device, and sure enough we do device_del()\nbefore transport_unregister() in the scsi_target_reap() routines.  I\u0027ve\nno idea why this is suddenly showing up, since the code has been in\nthere since that function was first invented.  However, I\u0027ve confirmed\nthis fixes Andrew Vasquez\u0027s boot oops.\n\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "f89f5948fc10bb973cd452d2e334da207828e228",
      "tree": "ecd63a07c47aafad9e2c06d9ddca45c58966749d",
      "parents": [
        "01e33b5a2a153eec74dd87522e264948030b88c1"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 24 15:47:48 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 24 15:47:48 2005 -0800"
      },
      "message": "Linux v2.6.15-rc7\n\nHo ho ho.\n"
    },
    {
      "commit": "01e33b5a2a153eec74dd87522e264948030b88c1",
      "tree": "ce6bb4a84cbec87a62834adadc3cb571bbafec82",
      "parents": [
        "cdcdb28623fb74d9564b102cd1cbe3854071e855"
      ],
      "author": {
        "name": "Kurt Huwig",
        "email": "k.huwig@iku-ag.de",
        "time": "Sun Dec 25 00:13:08 2005 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 24 15:37:00 2005 -0800"
      },
      "message": "[PATCH] n_r3964: fixed usage of HZ; removed bad include\n\nFix n_r3964 timeouts (hardcoded for 100Hz)\n\nAlso the include of \u003casm/termios.h\u003e in \u0027n_r3964.h\u0027 is unnecessary and\nprevents using the header file in any application that has to include\n\u003ctermios.h\u003e due to duplicate definition of \u0027struct termio\u0027.\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "cdcdb28623fb74d9564b102cd1cbe3854071e855",
      "tree": "df9ce9bd9641236dd7a1ebf4c87854ccb62b7907",
      "parents": [
        "10bb10dcb685cbe078e611f2dca3bd3e42fba0a8",
        "fd71da468dd8897fe3f565dfd3743a87d8678e3a"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 24 12:40:43 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 24 12:40:43 2005 -0800"
      },
      "message": "Merge branch \u0027upstream-fixes\u0027 of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev\n"
    },
    {
      "commit": "10bb10dcb685cbe078e611f2dca3bd3e42fba0a8",
      "tree": "79303391de7ed61a5c55b3599e386ee062e758ea",
      "parents": [
        "3bf395994da5c238c37e281b50a5dd5f2532dc0c",
        "e445ee65cbefaa19131c972ae7fe221c95cf4cc4"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 24 12:32:55 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 24 12:32:55 2005 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6\n"
    },
    {
      "commit": "3bf395994da5c238c37e281b50a5dd5f2532dc0c",
      "tree": "3af2bdf4772553906020a7323dce9282deeb4d07",
      "parents": [
        "e5c34a57c8b3a94b8d2b329936f8b1cbcc765307",
        "291d809ba5c8d4d6d8812e3f185bdf57d539f594"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 24 12:30:42 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 24 12:30:42 2005 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6\n"
    },
    {
      "commit": "e5c34a57c8b3a94b8d2b329936f8b1cbcc765307",
      "tree": "b7cb357ac102c0af39e00055cac069329fcfde3f",
      "parents": [
        "c660439ba90aaaa056f68a5b0fc79f6b9e0506f5"
      ],
      "author": {
        "name": "Ben Collins",
        "email": "ben.collins@ubuntu.com",
        "time": "Fri Dec 23 09:10:03 2005 -0500"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 24 12:30:22 2005 -0800"
      },
      "message": "[PATCH] Fix typo in x86_64 __build_write_lock_const assembly\n\nBased on __build_read_lock_const, this looked like a bug.\n\n[ Indeed. Maybe nobody uses this version? Worth fixing up anyway ]\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "c660439ba90aaaa056f68a5b0fc79f6b9e0506f5",
      "tree": "0139f623060027645a49f72729c4b1e6e7350248",
      "parents": [
        "1224b375ed7982128602a3fa1da53eeeac1750b4"
      ],
      "author": {
        "name": "Ravikiran G Thirumalai",
        "email": "kiran@scalex86.org",
        "time": "Thu Dec 22 14:21:34 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 24 12:30:22 2005 -0800"
      },
      "message": "[PATCH] x86_64/ia64 : Fix compilation error for node_to_first_cpu\n\nFixes a compiler error in node_to_first_cpu, __ffs expects unsigned long as\na parameter; instead cpumask_t was being passed.  The macro\nnode_to_first_cpu was not yet used in x86_64 and ia64 arches, and so we never\nhit this.  This patch replaces __ffs with first_cpu macro, similar to other\narches.\n\nSigned-off-by: Alok N Kataria \u003calokk@calsoftinc.com\u003e\nSigned-off-by: Ravikiran G Thirumalai \u003ckiran@scalex86.org\u003e\nSigned-off-by: Shai Fultheim \u003cshai@scalex86.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "1224b375ed7982128602a3fa1da53eeeac1750b4",
      "tree": "239fd9150042d313361cb66dd6db72f6e6af89de",
      "parents": [
        "8e31108b9f41069d55cb9b019ac8262c55fd2616"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 24 12:19:38 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 24 12:19:38 2005 -0800"
      },
      "message": "Fix silly typo (\"smb\" vs \"smp\")\n\nIntroduced by commit 6003a93e7bf6c02f33c02976ff364785d4273295\n"
    },
    {
      "commit": "8e31108b9f41069d55cb9b019ac8262c55fd2616",
      "tree": "4d3b74956402b978417ee1026fa18409773cd72e",
      "parents": [
        "6003a93e7bf6c02f33c02976ff364785d4273295"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Fri Dec 23 19:54:46 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 24 12:13:27 2005 -0800"
      },
      "message": "[PATCH] Fix memory ordering problem in wake_futex()\n\nFix a memory ordering problem that occurs on IA64. The \"store\" to q-\u003elock_ptr\nin wake_futex() can become visible before wake_up_all() clears the lock in the\nfutex_q.\n\nSigned-off-by: Jack Steiner \u003csteiner@sgi.com\u003e\nAcked-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "6003a93e7bf6c02f33c02976ff364785d4273295",
      "tree": "c81c159d6b04f9bffcf9984d5259eb0448683f7d",
      "parents": [
        "a7c2491a13cc72fc09c062e635b9a77ff6bb4a73"
      ],
      "author": {
        "name": "Manfred Spraul",
        "email": "manfred@colorfullife.com",
        "time": "Fri Dec 23 23:57:41 2005 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 24 12:13:27 2005 -0800"
      },
      "message": "[PATCH] add missing memory barriers to ipc/sem.c\n\nTwo smp_wmb() statements are missing in the sysv sem code: This could\ncause stack corruptions.\n\nThe attached patch adds them.\n\nSigned-Off-By: Manfred Spraul \u003cmanfred@colorfullife.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "e445ee65cbefaa19131c972ae7fe221c95cf4cc4",
      "tree": "2f7e4639069e3a1c5a5457d6fc879f02f0e9977c",
      "parents": [
        "597d1f0622d21ffe54aceef8da9682e776f51cc2"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Sat Dec 24 12:06:10 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@sunset.davemloft.net",
        "time": "Sat Dec 24 12:06:10 2005 -0800"
      },
      "message": "[VIDEO] sbuslib: Disallow private mmaps.\n\nThe COW semantics just do not make any sense especially\nwith the physically discontiguous I/O mappings possible\nhere.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "a7c2491a13cc72fc09c062e635b9a77ff6bb4a73",
      "tree": "f8f4ed7bbc05369aadfd32668b892fe2740a0f3b",
      "parents": [
        "1836098f97d22c81652aeeec64d1819dc2177bdb",
        "3df3cc6d18b6dcd38c33c198fb8adf1f1fa5f4a7"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 24 11:55:16 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 24 11:55:16 2005 -0800"
      },
      "message": "Merge branch \u0027upstream-fixes\u0027 of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6\n"
    },
    {
      "commit": "1836098f97d22c81652aeeec64d1819dc2177bdb",
      "tree": "1bd940fb161aea432af117543e936ca9b677c985",
      "parents": [
        "8f43d8e1147406901b7d972d1b528d94def23b0e"
      ],
      "author": {
        "name": "Manfred Spraul",
        "email": "manfred@colorfullife.com",
        "time": "Sat Dec 24 14:19:24 2005 +0100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 24 11:53:32 2005 -0800"
      },
      "message": "[PATCH] forcedeth: fix random memory scribbling bug\n\nTwo critical bugs were found in forcedeth 0.47:\n - TSO doesn\u0027t work.\n - pci_map_single() for the rx buffers is called with size\u003d\u003d0.  This bug\n   is critical, it causes random memory corruptions on systems with an\n   iommu.\n\nBelow is a minimal fix for both bugs, for 2.6.15.\n\nTSO will be fixed properly in the next version.  Tested on x86-64.\n\nSigned-Off-By: Manfred Spraul \u003cmanfred@colorfullife.com\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3df3cc6d18b6dcd38c33c198fb8adf1f1fa5f4a7",
      "tree": "267cba64c96d534644e5d333f5d1b56845ab911a",
      "parents": [
        "4965e97fd36041d19483843c66286b9800a57c15"
      ],
      "author": {
        "name": "Frank Pavlic",
        "email": "fpavlic@de.ibm.com",
        "time": "Tue Dec 13 08:23:26 2005 +0100"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sat Dec 24 10:05:52 2005 -0500"
      },
      "message": "[PATCH] s390: remove redundant and useless code in qeth\n\n[patch 3/3] s390: remove redundant and useless code in qeth\n\nFrom: Frank Pavlic \u003cpavlic@de.ibm.com\u003e\n\t- remove redundant and useless code in qeth for\n\t  procfs operations.\n\t- update Revision numbers\nSigned-off-by: Frank Pavlic \u003cpavlic@de.ibm.com\u003e\n\ndiffstat:\n qeth_main.c |    6 -\n qeth_mpc.c  |    2\n qeth_mpc.h  |    2\n qeth_proc.c |  250 ++++++------------------------------------------------------\n qeth_sys.c  |    4\n qeth_tso.h  |    4\n 6 files changed, 38 insertions(+), 230 deletions(-)\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "4965e97fd36041d19483843c66286b9800a57c15",
      "tree": "dc9161dea86858ab7a07a7e82bffe5ee4214125c",
      "parents": [
        "6c6b3e7c4f93d330b920e6531b579b1f6bae5ac1"
      ],
      "author": {
        "name": "Frank Pavlic",
        "email": "fpavlic@de.ibm.com",
        "time": "Tue Dec 13 08:22:30 2005 +0100"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sat Dec 24 10:05:51 2005 -0500"
      },
      "message": "[PATCH] s390: minor qeth network driver fixes\n\n[patch 2/3] s390: minor qeth network driver fixes\n\nFrom: Frank Pavlic \u003cpavlic@de.ibm.com\u003e\n\t- use netif_carrier_on/off calls to tell network stack\n\t  link carrier state\n\t- fix possible kfree on NULL\n\t- PDU_LEN2 is at offset 0x29 otherwise OSN chpid won\u0027t initialize\n\nSigned-off-by: Frank Pavlic \u003cpavlic@de.ibm.com\u003e\n\ndiffstat:\n qeth_eddp.c |    3 ++-\n qeth_main.c |   17 +++++++----------\n qeth_mpc.h  |    2 +-\n 3 files changed, 10 insertions(+), 12 deletions(-)\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "6c6b3e7c4f93d330b920e6531b579b1f6bae5ac1",
      "tree": "2a9b6c55774b80934d3bb760434c6b54cdd7c172",
      "parents": [
        "afcceaa3c7b7fbf7e2b95c5f0dd43547b03292d2"
      ],
      "author": {
        "name": "Frank Pavlic",
        "email": "fpavlic@de.ibm.com",
        "time": "Tue Dec 13 08:21:47 2005 +0100"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sat Dec 24 10:05:51 2005 -0500"
      },
      "message": "[PATCH] s390: some minor qeth driver fixes\n\n[patch 1/3] s390: some minor qeth driver fixes\n\nFrom: Frank Pavlic \u003cpavlic@de.ibm.com\u003e\n\t- let\u0027s have just one function for both ,input and output queue\n\t  to check qdio errors\n\t- add /proc/s390dbf/qeth_qerr entries for outbound processing\n\t- check removed for layer2 device in qeth_add_multicast_ipv6\n\t- NULL pointer dereference with bonding and VLAN device fixed\n\t- minimum length check for portname fixed\n\nSigned-off-by: Frank Pavlic \u003cpavlic@de.ibm.com\u003e\n\ndiffstat:\nqeth_main.c |   42 +++++++++++++++++++++---------------------\nqeth_sys.c  |    6 +++---\n2 files changed, 24 insertions(+), 24 deletions(-)\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    }
  ],
  "next": "afcceaa3c7b7fbf7e2b95c5f0dd43547b03292d2"
}
