)]}'
{
  "log": [
    {
      "commit": "ed7e8ef7f12f5c3c8bbb85eeb0a1ded91c7c5dbf",
      "tree": "2093784bbbc3ff9ebb3c68b43efda7b13228c99a",
      "parents": [
        "3492b328834319c9503c0a34c50fb3f009556443"
      ],
      "author": {
        "name": "Ju, Seokmann",
        "email": "Seokmann.Ju@engenio.com",
        "time": "Thu Nov 17 13:17:25 2005 -0500"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Dec 13 18:10:56 2005 -0700"
      },
      "message": "[SCSI] megaraid_{mbox,mm} : remove PCI Id overlaping between megaraid_legacy and megaraid_{mbox,mm}\n\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "3492b328834319c9503c0a34c50fb3f009556443",
      "tree": "f82d553f6508ea3bbe73e4ecf88263f337227a16",
      "parents": [
        "be0d9b6c7aeaad1683059c00131cabd4c894c17c"
      ],
      "author": {
        "name": "Ju, Seokmann",
        "email": "Seokmann.Ju@engenio.com",
        "time": "Thu Nov 17 13:13:31 2005 -0500"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Tue Dec 13 18:10:52 2005 -0700"
      },
      "message": "[SCSI] megaraid_legacy: removed PCI ID overlap from the driv er\n\nThis patch fixes\n\t- PCI ID overlap issue\n\t- node name changed to \u0027megaraid_legacy\u0027\nI hope this patch addresses concerns brought by Daniel Drake.\n\nSigned-off by: Seokmann Ju \u003cseokmann.ju@enginio.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "be0d9b6c7aeaad1683059c00131cabd4c894c17c",
      "tree": "f7e55af855531331113cbddb98688f3901d48425",
      "parents": [
        "7275b4b6bc2f783c135c3f0eeecc4fdc6e788aa8"
      ],
      "author": {
        "name": "Antonino A. Daplas",
        "email": "adaplas@gmail.com",
        "time": "Mon Dec 12 22:17:21 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 22:31:17 2005 -0800"
      },
      "message": "[PATCH] fbdev: Fix incorrect unaligned access in little-endian machines\n\nThe drawing function cfbfillrect does not work correctly when access is not\nunsigned-long aligned.  It manifests as extra lines of pixels that are not\ncomplete drawn.  Reversing the shift operator solves the problem, so I would\npresume that this bug would manifest only on little endian machines.  The\nfunction cfbcopyarea may also have this bug.\n\nAligned access should present no problems.\n\nSigned-off-by: Antonino Daplas \u003cadaplas@pol.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "7275b4b6bc2f783c135c3f0eeecc4fdc6e788aa8",
      "tree": "be75b6de5a19263ffbc54068251988b3d7e2b754",
      "parents": [
        "39942fd8ff57c8623451bbfaffe8a184cc8b463a"
      ],
      "author": {
        "name": "Antonino A. Daplas",
        "email": "adaplas@gmail.com",
        "time": "Mon Dec 12 22:17:20 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 22:31:17 2005 -0800"
      },
      "message": "[PATCH] fbdev: Shift pixel value before entering loop in cfbimageblit\n\nIn slow imageblit, the pixel value is shifted by a certain amount (dependent\non the bpp and endianness) for each iteration.  This is inefficient.  Better\ndo the shifting once before going into the loop.\n\nSigned-off-by: Antonino Daplas \u003cadaplas@pol.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "39942fd8ff57c8623451bbfaffe8a184cc8b463a",
      "tree": "cc40ada654e14d496dbc4db9d9d42b81c1c8f2f7",
      "parents": [
        "4e1567d3aad9bae0ecc5bb047179cd026bfb035c"
      ],
      "author": {
        "name": "Knut Petersen",
        "email": "Knut_Petersen@t-online.de",
        "time": "Mon Dec 12 22:17:19 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 22:31:17 2005 -0800"
      },
      "message": "[PATCH] fbdev: fix switch to KD_TEXT, enhanced version\n\nEvery framebuffer driver relies on the assumption that the set_par()\nfunction of the driver is called before drawing functions and other\nfunctions dependent on the hardware state are executed.\n\nWhenever you switch from X to a framebuffer console for the very first\ntime, there is a chance that a broken X system has _not_ set the mode to\nKD_GRAPHICS, thus the vt and framebuffer code executes a screen redraw and\nseveral other functions before a set_par() is executed.  This is believed\nto be not a bug of linux but a bug of X/xdm.  At least some X releases used\nby SuSE and Debian show this behaviour.\n\nThere was a 2nd case, but that has been fixed by Antonino Daplas on\n10-dec-2005.\n\nThis patch allows drivers to set a flag to inform fbcon_switch() that they\nprefer a set_par() call on every console switch, working around the\nproblems caused by the broken X releases.\n\nThe flag will be used by the next release of cyblafb and might help other\ndrivers that assume a hardware state different to the one used by X.\n\nAs the default behaviour does not change, this patch should be acceptable\nto everybody.\n\nSigned-off-by: Knut Petersen \u003cKnut_Petersen@t-online.de\u003e\nAcked-by: \"Antonino A. Daplas\" \u003cadaplas@pol.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "4e1567d3aad9bae0ecc5bb047179cd026bfb035c",
      "tree": "b3e8820b236c62da6cdbcefbe2850c9cd0158489",
      "parents": [
        "1207069f6f8f3d1b71641fdaa6cc04fca6fff9f5"
      ],
      "author": {
        "name": "Antonino A. Daplas",
        "email": "adaplas@gmail.com",
        "time": "Mon Dec 12 22:17:18 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 22:31:17 2005 -0800"
      },
      "message": "[PATCH] fbcon: Avoid illegal display panning\n\nAvoid calls to fb_pan_display when driver is suspended or not in text mode.\n\nSigned-off-by: Antonino Daplas \u003cadaplas@pol.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "1207069f6f8f3d1b71641fdaa6cc04fca6fff9f5",
      "tree": "c8be44eb73032dd787c18ff3f71d42083258484e",
      "parents": [
        "4743484718e1d710321f24f8ef7d0124a48291b3"
      ],
      "author": {
        "name": "Antonino A. Daplas",
        "email": "adaplas@gmail.com",
        "time": "Mon Dec 12 22:17:17 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 22:31:17 2005 -0800"
      },
      "message": "[PATCH] fbdev: Pan display fixes\n\n- Fix fb_pan_display rejecting yoffsets that are valid if panning mode\n  is ywrap.\n\n- Add more robust error checking in fb_pan_display specially since this\n  function is accessible by userland apps.\n\nSigned-off-by: Antonino Daplas \u003cadaplas@pol.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "4743484718e1d710321f24f8ef7d0124a48291b3",
      "tree": "fde7dc00a58aa4a326573018d844143ba07e0138",
      "parents": [
        "56f0d64de80733bda54d1cfa7ac0c736ab2de33b"
      ],
      "author": {
        "name": "Antonino A. Daplas",
        "email": "adaplas@gmail.com",
        "time": "Mon Dec 12 22:17:16 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 22:31:17 2005 -0800"
      },
      "message": "[PATCH] fbcon: Add ability to save/restore graphics state\n\nAdd hooks to save and restore the graphics state.  These hooks are called in\nfbcon_blank() when entering/leaving KD_GRAPHICS mode.  This is needed by\nsavagefb at least so it can cooperate with savage_dri and by cyblafb.\n\nState save/restoration can be full or partial.\n\nSigned-off-by: Antonino Daplas \u003cadaplas@pol.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "56f0d64de80733bda54d1cfa7ac0c736ab2de33b",
      "tree": "c708c7d2375295d0e5e7884771c2dd8275b5e89c",
      "parents": [
        "2f6331faf58a4727a9f1138cd6db30d05b124220"
      ],
      "author": {
        "name": "Antonino A. Daplas",
        "email": "adaplas@pol.net",
        "time": "Mon Dec 12 22:17:15 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 22:31:17 2005 -0800"
      },
      "message": "[PATCH] fbcon: fix complement_mask() with 512 character map\n\nThere is a bug in the complement_mask when you have a 512-character map.\nLinux boots to a default 256-character map and most probably your login\nprofile is loading a 512-character map which results in a bad gpm cursor.\n\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "2f6331faf58a4727a9f1138cd6db30d05b124220",
      "tree": "a285f5260b8256f018b05db7c8a6b5470baf85ff",
      "parents": [
        "8309cf66fd90ccba9894adde2f3a8d7e1507e4d2"
      ],
      "author": {
        "name": "Mike Miller",
        "email": "mike.miller@hp.com",
        "time": "Mon Dec 12 22:17:14 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 22:31:16 2005 -0800"
      },
      "message": "[PATCH] cciss: fix for deregister_disk\n\nThis patch adds setting our drv-\u003equeue \u003d NULL back in deregister_disk.  The\ndrv-\u003equeue is part of our controller struct.  blk_cleanup_queue works only\non the queue in the gendisk struct.\n\nSigned-off-by: Mike Miller \u003cmike.miller@hp.com\u003e\nCc: Jens Axboe \u003caxboe@suse.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "7cd082f0147c5fc94b455bcc17fe21b22dbac703",
      "tree": "642dcf3b36d563aa7bb070a2a9355805483e857a",
      "parents": [
        "b11d0e48aa41b644143ca526ef8d69212fdc1cdd",
        "1cf9e8a7865c0ac216034e519cf6b8505055ea50"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 21:42:17 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 21:42:17 2005 -0800"
      },
      "message": "Merge branch \u0027upstream-fixes\u0027 of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6\n"
    },
    {
      "commit": "b11d0e48aa41b644143ca526ef8d69212fdc1cdd",
      "tree": "bb55e976402bc87cc8a9f5372dc947500777216b",
      "parents": [
        "47807ce381acc34a7ffee2b42e35e96c0f322e52",
        "dfa159886f38344ede31e3b13ec614e0bebc09c6"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 21:41:58 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 21:41:58 2005 -0800"
      },
      "message": "Merge branch \u0027upstream-fixes\u0027 of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev\n"
    },
    {
      "commit": "47807ce381acc34a7ffee2b42e35e96c0f322e52",
      "tree": "d34a8ac9e3e9c05044aa230f9ae2785b12ed64bf",
      "parents": [
        "0e670506668a43e1355b8f10c33d081a676bd521"
      ],
      "author": {
        "name": "Dave Airlie",
        "email": "airlied@linux.ie",
        "time": "Tue Dec 13 04:18:41 2005 +0000"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 21:02:22 2005 -0800"
      },
      "message": "[drm] fix radeon aperture issue\n\nBen noticed that on certain cards we\u0027ve landed the AGP space on top of\nthe second aperture instead of after it..  Which messes things up a lot\non those machines.\n\nThis just moves the gart further out, a more correct fix is in the works\nfrom Ben for after 2.6.15.\n\nSigned-off-by: Dave Airlie \u003cairlied@linux.ie\u003e\nCC: Ben Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "ee1c81917a0c10f44c1b400482b8372e68238ff8",
      "tree": "987cfbd2134b82bea55c55fa17bd70d29df70458",
      "parents": [
        "0e670506668a43e1355b8f10c33d081a676bd521"
      ],
      "author": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Dec 06 15:01:49 2005 -0800"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Mon Dec 12 23:33:03 2005 -0500"
      },
      "message": "[PATCH] skge: get rid of warning on race\n\nGet rid of warning in case of race with ring full and lockless\ntx on the skge driver. It is possible to be in the transmit\nroutine with no available slots and already stopped.\n\nSigned-off-by: Stephen Hemminger \u003cshemminger@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "dfa159886f38344ede31e3b13ec614e0bebc09c6",
      "tree": "6c6128df37860c42acf00c0bd76797de940a306c",
      "parents": [
        "0e670506668a43e1355b8f10c33d081a676bd521"
      ],
      "author": {
        "name": "Mark Lord",
        "email": "liml@rtr.ca",
        "time": "Mon Dec 12 23:19:28 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Mon Dec 12 23:19:28 2005 -0500"
      },
      "message": "[PATCH] libata-core.c:  fix parameter bug on kunmap_atomic() calls\n\nFix incorrect pointer usage on two calls to kunmap_atomic().\nThis seems to happen a lot, because kunmap() wants the struct page *,\nwhereas kunmap_atomic() instead wants the mapped virtual address.\n\nSigned-off-by: Mark Lord \u003climl@rtr.ca\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "238523e1a15874b88955ff9c8f63e35597ae2857",
      "tree": "3a794b119a40a7dd5bd73b513297c4580a090303",
      "parents": [
        "1ff8038988adecfde71d82c0597727fc239d4e8c",
        "016cc85072944bfa03c5e4b587ae89588ce2e5df"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 16:41:37 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 16:41:37 2005 -0800"
      },
      "message": "Merge branch \u0027upstream-fixes\u0027 of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6\n"
    },
    {
      "commit": "94d40b699f0b9fb1b1da3b6abcd31d37c9aa2c22",
      "tree": "c719fbb7e7d44d74b4d7b571f7ed3f0d338daf71",
      "parents": [
        "062dfa433cce9a2c3941b3b8b96ae678f11230fa",
        "1df2ab48f995b1599740a3f430df77fe24cb8ce9"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 15:49:27 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 15:49:27 2005 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6\n"
    },
    {
      "commit": "062dfa433cce9a2c3941b3b8b96ae678f11230fa",
      "tree": "b76f773ef1fab8302e233ac25d23f35d5341b6cd",
      "parents": [
        "7c9dfb5999a7ba90e93a96d9f3ce55a9e4978ad5",
        "22f975f4ffa707ea24507f6899bb9f5a1ff034bc"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 15:25:58 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 15:25:58 2005 -0800"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-arm\n"
    },
    {
      "commit": "7c9dfb5999a7ba90e93a96d9f3ce55a9e4978ad5",
      "tree": "8c1d92c9af1078bef9d8291c8be36045c4515471",
      "parents": [
        "1ff9ba7af6033475998be61c7d1dc0e0c8c11181",
        "e781de44153885d5f772731726b4c0c16f8af021"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 15:25:15 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 15:25:15 2005 -0800"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-mmc\n"
    },
    {
      "commit": "1ff9ba7af6033475998be61c7d1dc0e0c8c11181",
      "tree": "c1a938d3cd7964cb7c7239675a49347f9174ca4d",
      "parents": [
        "66e05225262cd9271fac13fe2fd1e9edb65e3978",
        "c2cd6d3c122798c39f63e21e4dd04ee5790010b6"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 15:24:36 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 15:24:36 2005 -0800"
      },
      "message": "Merge master.kernel.org:/home/rmk/linux-2.6-serial\n"
    },
    {
      "commit": "2c27d4e53043de1c821e0af09e08dee3e92a01d6",
      "tree": "a877527c4c1918a9200175024abed630b7b342bf",
      "parents": [
        "806f7bf605bdb0f2ea2253f832943890edb85d83"
      ],
      "author": {
        "name": "Hareesh Nagarajan",
        "email": "hnagar2@gmail.com",
        "time": "Mon Dec 12 14:42:07 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Dec 12 14:42:07 2005 -0800"
      },
      "message": "[SBUSFB] tcx: Use FB_BLANK_UNBLANK instead of magic constant.\n\nFrom: Hareesh Nagarajan \u003chnagar2@gmail.com\u003e\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "806f7bf605bdb0f2ea2253f832943890edb85d83",
      "tree": "fdae9e869f0512aae8fd32daa9f5d8fde60679ed",
      "parents": [
        "66e05225262cd9271fac13fe2fd1e9edb65e3978"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Dec 12 14:41:20 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Dec 12 14:41:20 2005 -0800"
      },
      "message": "[SBUSFB]: Kill \u0027list\u0027 member from foo_par structs, totally unused.\n\nBased upon a patch from Hareesh Nagarajan.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "66e05225262cd9271fac13fe2fd1e9edb65e3978",
      "tree": "d2eefc27030003707b7c230897d206c8dfbeda6f",
      "parents": [
        "49d7bc64283970ee83d2c954d04ba00d04e5943d"
      ],
      "author": {
        "name": "Brian King",
        "email": "brking@us.ibm.com",
        "time": "Mon Dec 12 13:05:08 2005 -0600"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 12:35:39 2005 -0800"
      },
      "message": "[PATCH] Fix SCSI scanning slab corruption\n\nThere is a double free in the scsi scan code if a LLDD\u0027s slave_alloc()\ncall fails.  There is a direct call to scsi_free_queue and then the\nfollowing put_device calls the release function, which also frees the\nqueue.\n\nRemove the redundant scsi_free_queue.\n\nSigned-off-by: Brian King \u003cbrking@us.ibm.com\u003e\nTested-by: Nathan Lynch \u003cntl@pobox.com\u003e\n[ Also removed some strange whitespace artifacts in that area ]\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "016cc85072944bfa03c5e4b587ae89588ce2e5df",
      "tree": "4e50ca29a0e4a3ff260f8eae0972ab7f83e08cd1",
      "parents": [
        "20234989a8ae0ff418e2acdef72205fb7cb3f819"
      ],
      "author": {
        "name": "Olaf Hering",
        "email": "olh@suse.de",
        "time": "Fri Dec 09 19:12:10 2005 +0100"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Mon Dec 12 15:30:38 2005 -0500"
      },
      "message": "[PATCH] pcnet32: use MAC address from prom also on powerpc\n\nThe CSR contains garbage after a coldboot on RS/6000.\nOne some systems (like my 44p 270) the MAC address is all FF,\non others (like my B50) it is ff:ff:ff:fd:ff:6b.\n\nIt can eventually be fixed by loading pcnet32, set the interface\ninto the UP state, rmmod pcnet32 and load it again. But this worked\nonly on the 270.\n\nOnly netbooting after a cold start provides the correct MAC address\nvia prom and CSR. This makes it very unreliable.\nI dont know why the MAC is stored in two different places. Remove\nthe special case for powerpc, which was added in early 2.4 development.\n\nSigned-off-by: Olaf Hering \u003colh@suse.de\u003e\n\n drivers/net/pcnet32.c |    5 -----\n 1 files changed, 5 deletions(-)\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "20234989a8ae0ff418e2acdef72205fb7cb3f819",
      "tree": "6888e6c6b8f2beef67b3f85570aebb853f8443f9",
      "parents": [
        "92f268e034faf793f6d40de2f0fc81478a14ff39",
        "49d7bc64283970ee83d2c954d04ba00d04e5943d"
      ],
      "author": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Mon Dec 12 15:30:15 2005 -0500"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Mon Dec 12 15:30:15 2005 -0500"
      },
      "message": "Merge branch \u0027master\u0027\n"
    },
    {
      "commit": "49d7bc64283970ee83d2c954d04ba00d04e5943d",
      "tree": "7011cfcf89a09a2ef4fdcd04cb835bfed4b6677a",
      "parents": [
        "5036805be7b815eb18dcce489d974f3aee4f3841"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 11:25:04 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 11:25:04 2005 -0800"
      },
      "message": "Revert revert of \"[SCSI] fix usb storage oops\"\n\nThis reverts commit 1b0997f561bf46689cc6e0903f342e9bf2506bf1, which in\nturn reverted 34ea80ec6a02ad02e6b9c75c478c18e5880d6713 (which is thus\nre-instated).\n\nQuoth James Bottomley:\n\n  \"All it\u0027s doing is deferring the device_put() from the\n   scsi_put_command() to after the scsi_run_queue(), which doesn\u0027t fix\n   the sleep while atomic problem of the device release method.  In both\n   cases we still get the semaphore in atomic context problem which is\n   caused by scsi_reap_target() doing a device_del(), which I assumed\n   (wrongly) was valid from atomic context.\"\n\nwho also promised to fix scsi_reap_target().\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "5036805be7b815eb18dcce489d974f3aee4f3841",
      "tree": "3d112acbe459fafee17f41cb634e483080b48607",
      "parents": [
        "3795bb0fc52fe2af2749f3ad2185cb9c90871ef8"
      ],
      "author": {
        "name": "NeilBrown",
        "email": "neilb@suse.de",
        "time": "Mon Dec 12 02:39:17 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 09:06:04 2005 -0800"
      },
      "message": "[PATCH] md: use correct size of raid5 stripe cache when measuring how full it is\n\nThe raid5 stripe cache was recently changed from fixed size (NR_STRIPES) to\nvariable size (conf-\u003emax_nr_stripes).  However there are two places that still\nuse the constant and as a result, reducing the size of the stripe cache can\nresult in a deadlock.\n\nSigned-off-by: Neil Brown \u003cneilb@suse.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3795bb0fc52fe2af2749f3ad2185cb9c90871ef8",
      "tree": "764aa053d592b4ce555e2ca91077d7c6fc9eaa16",
      "parents": [
        "0de502aa44aae5712a18d471818d6c785e07c92e"
      ],
      "author": {
        "name": "NeilBrown",
        "email": "neilb@suse.de",
        "time": "Mon Dec 12 02:39:16 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 09:06:04 2005 -0800"
      },
      "message": "[PATCH] md: fix a use-after-free bug in raid1\n\nWho would submit code with a FIXME like that in it !!!!\n\nSigned-off-by: Neil Brown \u003cneilb@suse.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "0de502aa44aae5712a18d471818d6c785e07c92e",
      "tree": "95435fe88ec7b43d9de0583ba00ed4f4e023589d",
      "parents": [
        "a64882e795cc1d890e3359d0aa143af1cf67e8d4"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Dec 12 00:37:41 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 08:57:46 2005 -0800"
      },
      "message": "[PATCH] raw driver: Kconfig fix\n\nCONFIG_MAX_RAW_DEVS should appear immediately after CONFIG_RAW_DRIVER.\n\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "a64882e795cc1d890e3359d0aa143af1cf67e8d4",
      "tree": "9b766783e8034d81f1e460a02da0ffbdc8a4aef1",
      "parents": [
        "66d43e98ea6ff291cd4e524386bfb99105feb180"
      ],
      "author": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Mon Dec 12 00:37:40 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 08:57:45 2005 -0800"
      },
      "message": "[PATCH] ACPI: fix sleeping whilst atomic warnings on resume\n\nThis has been broken for months.  On resume, we call acpi_pci_link_set()\nwith interrupts off, so we get a warning when we try to do a kmalloc of non\natomic memory.  The actual allocation is just 2 long\u0027s (plus extra byte for\nsome reason I can\u0027t fathom), so a simple conversion to GFP_ATOMIC is\nprobably the safest way to fix this.\n\nThe error looks like this..\n\nDebug: sleeping function called from invalid context at mm/slab.c:2486\nin_atomic():0, irqs_disabled():1\n [\u003cc0143f6c\u003e] kmem_cache_alloc+0x40/0x56\n [\u003cc0206a2e\u003e] acpi_pci_link_set+0x3f/0x17f\n [\u003cc0206f96\u003e] irqrouter_resume+0x1e/0x3c\n [\u003cc0239bca\u003e] __sysdev_resume+0x11/0x6b\n [\u003cc0239e88\u003e] sysdev_resume+0x34/0x52\n [\u003cc023de21\u003e] device_power_up+0x5/0xa\n\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\nCc: \"Brown, Len\" \u003clen.brown@intel.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "1393c3edc307e0a2ec4274f67e342907ffd7deb5",
      "tree": "08e9e2bba7013301b30ea0a51ba9651a60f61620",
      "parents": [
        "68799398cea44b81d1e919f842d8d84d471053d5"
      ],
      "author": {
        "name": "Nicolas Pitre",
        "email": "nico@cam.org",
        "time": "Mon Dec 12 00:37:36 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 08:57:45 2005 -0800"
      },
      "message": "[PATCH] input: fix ucb1x00-ts breakage after conversion to dynamic input_dev allocation\n\nThe bd622663192e8ebebb27dc1d9397f352a82d2495 commit broke the UCB1x00\ntouchscreen driver since the idev structure was assumed to be into the ts\nstructure, simply casting the former to the later in a couple places.\n\nThis patch fixes those, and also cache the idev pointer between multiple\ncalls to input_report_abs() to avoid growing the compiled code needlessly.\n\nSigned-off-by: Nicolas Pitre \u003cnico@cam.org\u003e\nCc: Dmitry Torokhov \u003cdtor_core@ameritech.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "cda315aba34ff4fb66bbb2945b723688f3414a75",
      "tree": "842370af28aded095f62ffac030e918c432b605f",
      "parents": [
        "dd815408106f3c56c3050493dda97f9355aa4971"
      ],
      "author": {
        "name": "Matt Domsch",
        "email": "Matt_Domsch@dell.com",
        "time": "Mon Dec 12 00:37:32 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 08:57:45 2005 -0800"
      },
      "message": "[PATCH] ipmi: fix panic generator ID\n\nThe IPMI specifcation says the generator ID is 0x20, but that is for bits\n7-1.  Bit 0 is set to specify it is a software event.  The correct value is\n0x41.  Without this fix, panic events written into the System Event Log\nappear to come from an \"unknown\" generator, rather than from the kernel.\n\nSigned-off-by: Jordan Hargrave \u003cJordan_Hargrave@dell.com\u003e\nSigned-off-by: Matt Domsch \u003cMatt_Domsch@dell.com\u003e\nAcked-by: Corey Minyard \u003cminyard@acm.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "dd815408106f3c56c3050493dda97f9355aa4971",
      "tree": "032811558e78801ed93e249c86265abb8c849af7",
      "parents": [
        "3639c8619d50a6dea8fa106a5c61d848ffdcd3d6"
      ],
      "author": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@brturbo.com.br",
        "time": "Mon Dec 12 00:37:31 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 08:57:45 2005 -0800"
      },
      "message": "[PATCH] V4L/DVB: (3151) I2C ID renamed to I2C_DRIVERID_INFRARED\n\nI2C ID renamed to I2C_DRIVERID_INFRARED\n\nAcked-off-by: Jean Delvare \u003ckhali@linux-fr.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3639c8619d50a6dea8fa106a5c61d848ffdcd3d6",
      "tree": "f2ec8303fee79b26097ba996941a6550ffac7dbc",
      "parents": [
        "225a0cb6716da3aafaeb9ed2f8d9a7a1f2af9f09"
      ],
      "author": {
        "name": "Sascha Sommer",
        "email": "saschasommer@freenet.de",
        "time": "Mon Dec 12 00:37:30 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 08:57:44 2005 -0800"
      },
      "message": "[PATCH] V4L/DVB: (3113) Convert em28xx to use vm_insert_page instead of remap_pfn_range\n\nConvert em28xx to use vm_insert_page instead of remap_pfn_range\n\nSigned-off-by: Sascha Sommer \u003csaschasommer@freenet.de\u003e\nSigned-off-by: Michael Krufky \u003cmkrufky@gmail.com\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nCc: Hugh Dickins \u003chugh@veritas.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "225a0cb6716da3aafaeb9ed2f8d9a7a1f2af9f09",
      "tree": "99354b41d67518378d62652a0175d3ba2efab9b6",
      "parents": [
        "674434c691e10015660022fc00b04985a23ef87b"
      ],
      "author": {
        "name": "Ricardo Cerqueira",
        "email": "v4l@cerqueira.org",
        "time": "Mon Dec 12 00:37:28 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 08:57:44 2005 -0800"
      },
      "message": "[PATCH] V4L/DVB: (3135) Fix tuner init for Pinnacle PCTV Stereo\n\n- The Pinnacle PCTV Stereo needs tda9887 port2 set to 1\n\n- Without this patch, mt20xx tuner is not detected and the board\n  doesn\u0027t tune.\n\nSigned-off-by: Ricardo Cerqueira \u003cv4l@cerqueira.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "674434c691e10015660022fc00b04985a23ef87b",
      "tree": "d4768ec66f479902791e0704512aa8d85261073f",
      "parents": [
        "afd1a0c9ac281eed3b22b293ccd92af7b0d60889"
      ],
      "author": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@brturbo.com.br",
        "time": "Mon Dec 12 00:37:28 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 08:57:44 2005 -0800"
      },
      "message": "[PATCH] V4L/DVB: (3086c) Whitespaces cleanups part 4\n\nClean up whitespaces at v4l/dvb files\n\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "afd1a0c9ac281eed3b22b293ccd92af7b0d60889",
      "tree": "686c03cf1a1a2efb1fba6dc6e682fbb48edc7c58",
      "parents": [
        "808824b5f73e361503420ee318ca9689781da034"
      ],
      "author": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@brturbo.com.br",
        "time": "Mon Dec 12 00:37:27 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 08:57:44 2005 -0800"
      },
      "message": "[PATCH] V4L/DVB: (3086c) Whitespaces cleanups part 3\n\nClean up whitespaces at v4l/dvb files\n\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "808824b5f73e361503420ee318ca9689781da034",
      "tree": "0de37d1f1ab551efae930faf9999bba67b5560bd",
      "parents": [
        "9101e6222cb115240e24160bb90cce425bb74de5"
      ],
      "author": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@brturbo.com.br",
        "time": "Mon Dec 12 00:37:25 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 08:57:44 2005 -0800"
      },
      "message": "[PATCH] V4L/DVB: (3086b) Whitespaces cleanups part 2\n\nClean up whitespaces at v4l/dvb files\n\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "9101e6222cb115240e24160bb90cce425bb74de5",
      "tree": "e479e909a558ab5a0c9f913a75f8d05b866ad8bc",
      "parents": [
        "68352e6ee3675e23b492c51908951058de4f6fe0"
      ],
      "author": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@brturbo.com.br",
        "time": "Mon Dec 12 00:37:24 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 08:57:44 2005 -0800"
      },
      "message": "[PATCH] V4L/DVB: (3086a) Whitespaces cleanups part 1\n\nClean up whitespaces at v4l/dvb files\n\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "b4788f6d55548e587ced330ece711456f40ec8f1",
      "tree": "42468e3b7fbdcb5d9e7f93857df39003dbaa6b46",
      "parents": [
        "adad0f331f9c693129e81e233c5461e2e7c3e443"
      ],
      "author": {
        "name": "Jens Axboe",
        "email": "axboe@suse.de",
        "time": "Mon Dec 12 00:37:13 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 08:57:43 2005 -0800"
      },
      "message": "[PATCH] cciss: double put_disk()\n\nThis undoes the put_disk patch I sent in before.\n\nIf I had been paying attention I would have seen that we call put_disk\nfrom free_hba during driver unload.  That\u0027s the only time we want to\ncall it.  If it\u0027s called from deregister disk we may remove the\ncontroller (cNd0) unintentionally.\n\nSigned-off-by: Mike Miller \u003cmike.miller@hp.com\u003e\nSigned-off-by: Jens Axboe \u003caxboe@suse.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "5650b736ad328f7f3e4120e8790940289b8ac144",
      "tree": "fb2287d21b6f826f3e291892c3d5c6e640a13c45",
      "parents": [
        "64123fd42c7a1e4ebf6acd2399c98caddc7e0c26"
      ],
      "author": {
        "name": "Matt Helsley",
        "email": "matthltc@us.ibm.com",
        "time": "Mon Dec 12 00:37:10 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 08:57:42 2005 -0800"
      },
      "message": "[PATCH] Add timestamp field to process events\n\nThis adds a timestamp field to the events sent via the process event\nconnector.  The timestamp allows listeners to accurately account the\nduration(s) between a process\u0027 events and offers strong means with which\nto determine the order of events with respect to a given task while also\navoiding the addition of per-task data.\n\nThis alters the size and layout of the event structure and hence would\nbreak compatibility if process events connector as it stands in 2.6.15-rc2\nwere released as a mainline kernel.\n\nSigned-off-by: Matt Helsley \u003cmatthltc@us.ibm.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3fe968f167975d10c639f03c4934f05a29da73c0",
      "tree": "0d76b04b8d422ea5e187fe20cb2c572f69222c82",
      "parents": [
        "67121172f9753f38689651b613a4850e0e75876f"
      ],
      "author": {
        "name": "Andrew Morton",
        "email": "akpm@osdl.org",
        "time": "Mon Dec 12 00:36:59 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Dec 12 08:57:41 2005 -0800"
      },
      "message": "[PATCH] blkmtd: use clear_page_dirty()\n\nSetPageDirty() and ClearPageDirty() are low-level thing which filesystems\nshouldn\u0027t be using.  They bypass dirty page accounting.\n\nCc: David Woodhouse \u003cdwmw2@infradead.org\u003e\nAcked-by: Thomas Gleixner \u003ctglx@linutronix.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "913f2d792ff584bf9ebf5968472b3e4ffe0fd9c8",
      "tree": "37c499384a1e516a9b92ddb841fada84e9be0167",
      "parents": [
        "fe3f2053fd42148b3ebb7b90de5f20eaf3393860",
        "73d4f84fd001b0be67fea46e84b75e6a7a5da08e"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Dec 11 20:23:58 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Dec 11 20:23:58 2005 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6\n"
    },
    {
      "commit": "fe3f2053fd42148b3ebb7b90de5f20eaf3393860",
      "tree": "8915aff27ef95943659565eff008f4a81e00577a",
      "parents": [
        "7fc7e2eeecb599ba719c4c4503100fc8cd6a6920",
        "ef969434005e772218c0b8086539804605070fa8"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Dec 11 20:23:25 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Dec 11 20:23:25 2005 -0800"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc-merge\n"
    },
    {
      "commit": "326743ead7d0c08e0da715832386660ff3823170",
      "tree": "3733704d8dc8d458cd8a208b05be8b57372b4b50",
      "parents": [
        "6184b723876cd1a374e2d1094b3c73765d4c31c1"
      ],
      "author": {
        "name": "Michal Ostrowski",
        "email": "mostrows@watson.ibm.com",
        "time": "Thu Dec 08 16:56:17 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Dec 09 15:42:17 2005 +1100"
      },
      "message": "[PATCH] Fix windfarm model-id table\n\nmodel_id fields of wf_smu_sys_all_params should match the model ID\nthey are supposed to represent (as commented). Fixes windfarm on some\niMac 8,1 models.\n\nSigned-off-by: Michal Ostrowski \u003cmostrows at watson ibm com\u003e\nAcked-by: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "c2cd6d3c122798c39f63e21e4dd04ee5790010b6",
      "tree": "3fe06528fa7108dbcc6424689b4edc2dbbf47e7a",
      "parents": [
        "e4f5c82a92c2a546a16af1614114eec19120e40a"
      ],
      "author": {
        "name": "Dave Jones",
        "email": "davej@redhat.com",
        "time": "Wed Dec 07 18:11:26 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Wed Dec 07 18:11:26 2005 +0000"
      },
      "message": "[SERIAL] 8250_pci: Remove redundant assignment, and mark fallthrough.\n\nSigned-off-by: Dave Jones \u003cdavej@redhat.com\u003e\n"
    },
    {
      "commit": "1f064a87c80c86bd3878e6633de61e8b71aa6788",
      "tree": "b5e5eefaa380590f118176c4c1855b9f98b5e85b",
      "parents": [
        "4ebf0ae2618fbbb0d365e5d295a30ccfcb91fe0b"
      ],
      "author": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Tue Dec 06 17:36:44 2005 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Dec 06 17:36:44 2005 -0800"
      },
      "message": "[TG3]: remove warning on race\n\n[ Move assosciated code comment to the correct spot, and\n  update driver version and release date -DaveM ]\n\nSigned-off-by: Stephen Hemminger \u003cshemminger@osdl.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "92f268e034faf793f6d40de2f0fc81478a14ff39",
      "tree": "8983344799b050f7394e3d85413576b6a63842b3",
      "parents": [
        "436b0f76f2cee6617f27a649637766628909dd5d"
      ],
      "author": {
        "name": "Stephen Hemminger",
        "email": "shemminger@osdl.org",
        "time": "Mon Dec 05 11:00:40 2005 -0800"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Tue Dec 06 04:43:40 2005 -0500"
      },
      "message": "[PATCH] sk98lin: rx checksum offset not set\n\nThe checksum offsets for receive offload were not being set correctly.\n\nSigned-off-by: Stephen Hemminger \u003cshemminger@osdl.org\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "9ddf61bd09a7668279d2b208a96eba784bec3d80",
      "tree": "55116fe3e45703ca7d45f4400ac3ced091537632",
      "parents": [
        "db20da32a22ccfa3a118408034eeb0ba61a42329"
      ],
      "author": {
        "name": "Marcelo Tosatti",
        "email": "marcelo.tosatti@cyclades.com",
        "time": "Mon Dec 05 10:15:06 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Mon Dec 05 10:15:06 2005 +0000"
      },
      "message": "[ARM SMP] mpcore_wdt bogus fpos check\n\ndrivers/char/watchdog/mpcore_wdt.c write function contains a check for\n(ppos !\u003d \u0026file-\u003ef_pos). Such check used to make sense when a pointer to\nfile-\u003ef_pos was handed by vfs_write(), not a copy of it as it stands\nnow.\n\nSigned-off-by: Marcelo Tosatti \u003cmarcelo.tosatti@cyclades.com\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "e781de44153885d5f772731726b4c0c16f8af021",
      "tree": "f250d18bb4a912945dc9c1fb7208e75010546987",
      "parents": [
        "e4f5c82a92c2a546a16af1614114eec19120e40a"
      ],
      "author": {
        "name": "Pierre Ossman",
        "email": "drzeus@drzeus.cx",
        "time": "Mon Dec 05 10:00:50 2005 +0000"
      },
      "committer": {
        "name": "Russell King",
        "email": "rmk+kernel@arm.linux.org.uk",
        "time": "Mon Dec 05 10:00:50 2005 +0000"
      },
      "message": "[MMC] Proper check of SCR error code\n\nThe routine reading the SCR wasn\u0027t paying proper attention to the\nerror codes returned from the driver.\n\nSigned-off-by: Pierre Ossman \u003cdrzeus@drzeus.cx\u003e\nSigned-off-by: Russell King \u003crmk+kernel@arm.linux.org.uk\u003e\n"
    },
    {
      "commit": "e4f5c82a92c2a546a16af1614114eec19120e40a",
      "tree": "75f680b437862b125cbce00709fcebf57f146b88",
      "parents": [
        "436b0f76f2cee6617f27a649637766628909dd5d"
      ],
      "author": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@brturbo.com.br",
        "time": "Sun Dec 04 12:41:54 2005 -0200"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Dec 04 08:09:38 2005 -0800"
      },
      "message": "[PATCH] V4L/DVB (3087) fix analog NTSC for pcHDTV 3000\n\n- fix analog NTSC for pcHDTV 3000\n- Fix regression: broken analog NTSC for DViCO FusionHDTV3 Gold-T\n- add tda9887 to card struct, required for both cards.\n\nSigned-off-by: Michael Krufky \u003cmkrufky@m1k.net\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "6015d2c4ca5470509d9721d7bab8d796617ed996",
      "tree": "d113c63de9a576e7f5f68a30c6f67fb7d0e7fe80",
      "parents": [
        "e3c3374fbf7efe9487edc53cd10436ed641983aa"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 03 20:50:51 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sat Dec 03 20:50:51 2005 -0800"
      },
      "message": "Link USB drivers later in the kernel\n\nWe want to link the \"regular\" SCSI drivers before the USB storage\ndriver, since historically we\u0027ve always detected internal SCSI disks\nbefore the external USB storage modules.\n\nThe link order matters for initcall ordering, and this got broken by\nmistake by commit 7586269c0b52970f60bb69fcb86e765fc1d72309 which moved\nthe USB host controller PCI quirk handling around.\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "9a40525788a1b692ee0fc780a8cdb2ac808de1b0",
      "tree": "71d37e014275af9227cecfaf6fa30f2bc3648908",
      "parents": [
        "3b6efee9231e12fce09c94930bfc59f66f18d662"
      ],
      "author": {
        "name": "Tejun Heo",
        "email": "htejun@gmail.com",
        "time": "Fri Dec 02 11:49:11 2005 +0900"
      },
      "committer": {
        "name": "Jeff Garzik",
        "email": "jgarzik@pobox.com",
        "time": "Sat Dec 03 20:31:16 2005 -0500"
      },
      "message": "[PATCH] libata: fix ata_scsi_pass_thru error handling\n\nThis patch makes ata_scsi_pass_thru() properly set result code and\nsense data on translation failures.\n\nSigned-off-by: Tejun Heo \u003chtejun@gmail.com\u003e\nSigned-off-by: Jeff Garzik \u003cjgarzik@pobox.com\u003e\n"
    },
    {
      "commit": "af2eb17bac41a116b73d85b3fb160405c32bea5b",
      "tree": "9d4a7d6f04f6c2f935179d7263e798adda0614d4",
      "parents": [
        "1b0997f561bf46689cc6e0903f342e9bf2506bf1"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Dec 02 23:09:06 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Dec 02 23:09:06 2005 -0800"
      },
      "message": "Add missing \"local_irq_enable()\" to C2/C3 exit logic\n\nSilly bug crept in with the C2/C3 TIF_POLLING_NRFLAG fixes.\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "1b0997f561bf46689cc6e0903f342e9bf2506bf1",
      "tree": "58b86f7f1eb8710a16f6e6d54a6eaf38fb23711c",
      "parents": [
        "2741049e66d9698da5e0c90c849406fa3d3fc45c"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Dec 02 15:54:37 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Dec 02 15:54:37 2005 -0800"
      },
      "message": "Revert \"[SCSI] fix usb storage oops\"\n\nThis reverts commit 34ea80ec6a02ad02e6b9c75c478c18e5880d6713.\n\nIt does a put_device() from softirq context, which is bad since it gets\na semaphore for reading.\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "2741049e66d9698da5e0c90c849406fa3d3fc45c",
      "tree": "725c927121ccfe3eaa7df3b9b8e46610805f6b15",
      "parents": [
        "2a298a35ebe060a6f2b06b20c2a34ea188ddfd37",
        "4d5cda069b3f0a3bbc18576bc15903ed665d0295"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Dec 02 14:32:44 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Dec 02 14:32:44 2005 -0800"
      },
      "message": "Merge master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6\n"
    },
    {
      "commit": "2a298a35ebe060a6f2b06b20c2a34ea188ddfd37",
      "tree": "226dd2569d657231a3c24d8228467a039ffc6681",
      "parents": [
        "deda498710e190c7922c2634ed630ee64ce86c05"
      ],
      "author": {
        "name": "Nick Piggin",
        "email": "nickpiggin@yahoo.com.au",
        "time": "Fri Dec 02 12:44:19 2005 +1100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Dec 02 14:20:21 2005 -0800"
      },
      "message": "[PATCH] Fix TIF_POLLING_NRFLAG in ACPI idle routines\n\nCommit 64c7c8f88559624abdbe12b5da6502e8879f8d28 broke the ACPI C2 and C3\nsleep states, because it left TIF_POLLING_NRFLAG active even though\nthose states do not actually poll the reschedule flag at all.  As a\nresult, the CPU wouldn\u0027t get sent an IPI when it was to be woken up, and\nwould only notice that it had runnable processes on the next timer tick.\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "4d5cda069b3f0a3bbc18576bc15903ed665d0295",
      "tree": "e89d75e2db026d7f15a13464a32197d7ecfc8272",
      "parents": [
        "032c09d76cdb448484859cc84dac4bba8f5f8f14"
      ],
      "author": {
        "name": "Hugh Dickins",
        "email": "hugh@veritas.com",
        "time": "Fri Dec 02 15:58:09 2005 +0000"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@titanic.(none)",
        "time": "Fri Dec 02 10:24:22 2005 -0600"
      },
      "message": "[SCSI] sg: fix a bug in st_map_user_pages failure path\n\nsg\u0027s st_map_user_pages is modelled on an earlier version of st\u0027s\nsgl_map_user_pages, and has the same bug: if get_user_pages got some but\nnot all of the pages, then those got were released, but the positive res\ncode returned implied that they were still to be freed.\n\nSigned-off-by: Hugh Dickins \u003chugh@veritas.com\u003e\nSigned-off-by: Douglas Gilbert \u003cdougg@torque.net\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "032c09d76cdb448484859cc84dac4bba8f5f8f14",
      "tree": "d6dded3df8c7240a17554b25ece04c9c766e21af",
      "parents": [
        "6bc733e9f71c937f3c64159bf1e569321726a44c"
      ],
      "author": {
        "name": "Hugh Dickins",
        "email": "hugh@veritas.com",
        "time": "Fri Dec 02 15:59:59 2005 +0000"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@titanic.(none)",
        "time": "Fri Dec 02 10:24:14 2005 -0600"
      },
      "message": "[SCSI] sg and st unmap_user_pages allow PageReserved\n\n2.6.15-rc1 made sg\u0027s st_unmap_user_pages and st\u0027s sgl_unmap_user_pages\nBUG on a PageReserved page.  But that\u0027s wrong: they could be unmapping\nthe ZERO_PAGE, which is marked PG_reserved; and perhaps others (while\nget_user_pages is still permitted on VM_PFNMAP areas - that may change).\n\nMore change is needed here: sg claims to dirty even pages written from,\nand st claims not to dirty even pages read into; and SetPageDirty is not\nadequate for this nowadays.  Fixes to those follow in a later patch: for\nthe moment just fix the 2.6.15 regression.\n\nSigned-off-by: Hugh Dickins \u003chugh@veritas.com\u003e\nAcked-by: Nick Piggin \u003cnpiggin@suse.de\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "c6b79418a4bb0260a92a25f562047d5be7b0e7f4",
      "tree": "558f540614f3cc764f0db81115881f4efdf05b76",
      "parents": [
        "f327220b1494aa23fd4206ac4778b8aa449a3351",
        "f4e401562c11c7ca65592ebd749353cf0b19af7b"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:52:12 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:52:12 2005 -0800"
      },
      "message": "Merge branch \u0027for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/roland/infiniband\n"
    },
    {
      "commit": "f327220b1494aa23fd4206ac4778b8aa449a3351",
      "tree": "b463d2541db1638c7cb8b9ff10a9238fc8a47000",
      "parents": [
        "31b3c31bca3b4df975631323d6ee6f49f43f4956",
        "ea182d4aefa3a27847d890b1592a608d1180aa45"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:49:37 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:49:37 2005 -0800"
      },
      "message": "Merge branch \u0027upstream-fixes\u0027 of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6\n"
    },
    {
      "commit": "31b3c31bca3b4df975631323d6ee6f49f43f4956",
      "tree": "dc873a16f109971287609c133855ce4d3f323dda",
      "parents": [
        "a72403594ad23bbd2ac0349dd0e537b28862faac"
      ],
      "author": {
        "name": "Michael Krufky",
        "email": "mkrufky@m1k.net",
        "time": "Thu Dec 01 00:52:10 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:49:00 2005 -0800"
      },
      "message": "[PATCH] V4l/dvb: Fix typo, removing incorrect info from CONFIG_BT848_DVB kconfig entry.\n\nFix typo, removing incorrect info from CONFIG_BT848_DVB kconfig entry.\n\nSigned-off-by: Michael Krufky \u003cmkrufky@m1k.net\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "a72403594ad23bbd2ac0349dd0e537b28862faac",
      "tree": "738a895e1a76ca42c3ae45d472b0b7c191d89c24",
      "parents": [
        "ab60e303cd3e73a68d5e397be50a1cb35452513c"
      ],
      "author": {
        "name": "Mike Isely",
        "email": "isely@pobox.com",
        "time": "Thu Dec 01 00:52:04 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:49:00 2005 -0800"
      },
      "message": "[PATCH] V4l/dvb: Restore missing tuner definition for Hauppauge tuner type 0x103\n\nType 0x103 (\"TCL MFNM05-4\") in the Hauppauge eeprom is a more recent tuner\nthat maps to TUNER_PHILIPS_FM1236_MK3.  This had been previously defined but\ndue to some accident the definition got removed.  This change restores that\ndefinition.  Change committed on advice from Hans Verkuil\n\u003chverkuil@xs4all.nl\u003e, who thinks he\u0027s the one who had accidentally removed it\nbefore.\n\nSigned-off-by: Mike Isely \u003cisely@pobox.com\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "ab60e303cd3e73a68d5e397be50a1cb35452513c",
      "tree": "220530c188a90ad2f8c08d72ed0b7fea423c6a81",
      "parents": [
        "3535396d3ac7fc5eeda4526aee34494a479cc628"
      ],
      "author": {
        "name": "Hans Verkuil",
        "email": "hverkuil@xs4all.nl",
        "time": "Thu Dec 01 00:51:58 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:59 2005 -0800"
      },
      "message": "[PATCH] V4L/dvb: fix kernel message (print of %s from random pointer)\n\nFix kernel message ( basically printk(\"%s\", random_pointer) ).\n\nSigned-off-by: Hans Verkuil \u003chverkuil@xs4all.nl\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "f05cb3239d078f16d082398818dd4e66e645f388",
      "tree": "63090097a7c8fa6bb79446830dfaefed97536c84",
      "parents": [
        "48063a75aff8a572ed167470564309697cf0e8cc"
      ],
      "author": {
        "name": "Carlos Silva",
        "email": "r3pek@gentoo.org",
        "time": "Thu Dec 01 00:51:56 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:59 2005 -0800"
      },
      "message": "[PATCH] DVB: BUDGET CI card depends on STV0297 demodulator.\n\nBUDGET_CI card depends on STV0297 demodulator.\n\nSigned-off-by: Johannes Stezenbach \u003cjs@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "48063a75aff8a572ed167470564309697cf0e8cc",
      "tree": "d7ec09f3f861c79ffd00233ff657562d25019f36",
      "parents": [
        "1130ca45c719fe788fa544a54a82ea53ef5ea87a"
      ],
      "author": {
        "name": "Denis Vlasenko",
        "email": "vda@ilport.com.ua",
        "time": "Thu Dec 01 00:51:55 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:59 2005 -0800"
      },
      "message": "[PATCH] DVB: Fixes ifs in ves1820 set symbolrate().\n\nRemove stray semicolons after if (foo); in ves1820_set_symbolrate().\n\nSigned-off-by: Denis Vlasenko \u003cvda@ilport.com.ua\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "1130ca45c719fe788fa544a54a82ea53ef5ea87a",
      "tree": "423a0eb692c0e14a8b1c6462a8dfdfc402e93753",
      "parents": [
        "9b9225f0f002c39f340da2ed1e7efec6885ca312"
      ],
      "author": {
        "name": "Ralph Metzler",
        "email": "rjkm@metzlerbros.de",
        "time": "Thu Dec 01 00:51:54 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:59 2005 -0800"
      },
      "message": "[PATCH] DVB: Fix locking to prevent Oops on SMP systems\n\nFix locking to prevent Oops on SMP systems when starting/stopping dvb network\ninterfaces.\n\nSigned-off-by: Ralph Metzler \u003crjkm@metzlerbros.de\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "9b9225f0f002c39f340da2ed1e7efec6885ca312",
      "tree": "9003bb38a7b5f15c91cb2471a538519ee44d5256",
      "parents": [
        "15ac8e663b354ed98d43d149f718f6f15ab732ac"
      ],
      "author": {
        "name": "Steven Toth",
        "email": "stoth@hauppauge.com",
        "time": "Thu Dec 01 00:51:53 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:59 2005 -0800"
      },
      "message": "[PATCH] DVB: Update Steve\u0027s email address.\n\nUpdate Steve\u0027s email address.\n\nSigned-off-by: Steven Toth \u003cstoth@hauppauge.com\u003e\nSigned-off-by: Michael Krufky \u003cmkrufky@m1k.net\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "15ac8e663b354ed98d43d149f718f6f15ab732ac",
      "tree": "86ecc54df2f2337cda17d4140b993bbdfb3a08ad",
      "parents": [
        "18e55eea0104927feedfe81de1adf5e46a7ad1f3"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Thu Dec 01 00:51:53 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:59 2005 -0800"
      },
      "message": "[PATCH] DVB: Small cleanups and CodeStyle fixes\n\n- Small cleanups:\n\n- make needlessly global functions static\n\n- every file should #include the headers containing the prototypes for it\u0027s\n  global functions\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "18e55eea0104927feedfe81de1adf5e46a7ad1f3",
      "tree": "362ac0084abee7b1f3934721738c9da781469417",
      "parents": [
        "363bbf42da23898ab48dc227cca9d80b50b481eb"
      ],
      "author": {
        "name": "Tim Schmielau",
        "email": "tim@physik3.uni-rostock.de",
        "time": "Thu Dec 01 00:51:51 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:59 2005 -0800"
      },
      "message": "[PATCH] DVB: Include fixes for 2.6.15-rc1 for removing sched.h from module.h\n\nInclude fixes for 2.6.15-rc1 for removing sched.h from module.h.\n\nSigned-off-by: Tim Schmielau \u003ctim@physik3.uni-rostock.de\u003e\nSigned-off-by: Michael Krufky \u003cmkrufky@m1k.net\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "363bbf42da23898ab48dc227cca9d80b50b481eb",
      "tree": "ee6463de2fb4caa70924ed3dd33015df4f266060",
      "parents": [
        "ded928468407c8e08dcb6aedb91aaa97b80d5752"
      ],
      "author": {
        "name": "Patrick Boettcher",
        "email": "pb@linuxtv.org",
        "time": "Thu Dec 01 00:51:51 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:59 2005 -0800"
      },
      "message": "[PATCH] DVB: Fixed incorrect usage at the private state of the dvb-usb-devices\n\nFixed mistake of an incorrect usage of pid_filter-callbacks inside the private\nstate of the dvb-usb-devices\n\nSigned-off-by: Patrick Boettcher \u003cpb@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "ded928468407c8e08dcb6aedb91aaa97b80d5752",
      "tree": "2b85f26bc526939697f3f5192e3ea4385577bdd7",
      "parents": [
        "69459f3d2fb9eea370535ceba91dd8c9df3d94bc"
      ],
      "author": {
        "name": "Andrew de Quincey",
        "email": "adq_dvb@lidskialf.net",
        "time": "Thu Dec 01 00:51:49 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:58 2005 -0800"
      },
      "message": "[PATCH] DVB: Fix locking problems and code cleanup\n\nFix locking problems and code cleanup\n\nSigned-off-by: Andrew de Quincey \u003cadq_dvb@lidskialf.net\u003e\nSigned-off-by: Johannes Stezenbach \u003cjs@linuxtv.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "69459f3d2fb9eea370535ceba91dd8c9df3d94bc",
      "tree": "2bc018e8e5d1943d620be81a253a90817e5c0605",
      "parents": [
        "f95006f89576cac504323daa53157013bf099fc9"
      ],
      "author": {
        "name": "Oliver Endriss",
        "email": "o.endriss@gmx.de",
        "time": "Thu Dec 01 00:51:48 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:58 2005 -0800"
      },
      "message": "[PATCH] DVB: Fixed DiSEqC timing for saa7146-based budget cards\n\nFixed DiSEqC timing for saa7146-based budget cards (speed-up ioctls using\nSAA7146_I2C_SHORT_DELAY)\n\nSigned-off-by: Oliver Endriss \u003co.endriss@gmx.de\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "f95006f89576cac504323daa53157013bf099fc9",
      "tree": "1ee888856e45f1f6c9546fae5e64341674b9d320",
      "parents": [
        "0fe22865ddee524017a1012528b0e15475acc942"
      ],
      "author": {
        "name": "Hans Verkuil",
        "email": "hverkuil@xs4all.nl",
        "time": "Thu Dec 01 00:51:42 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:58 2005 -0800"
      },
      "message": "[PATCH] V4L: Add workaround for Hauppauge PVR150 with certain NTSC tuner models\n\nAdd workaround for Hauppauge PVR150 hardware problem with tuner models 85, 99\nand 112 (model numbers as reported by tveeprom).  The audio standard\nautodetection does not always work correctly for these models.\n\nSigned-off-by: Hans Verkuil \u003chverkuil@xs4all.nl\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "0fe22865ddee524017a1012528b0e15475acc942",
      "tree": "d750dc1aec8f85b0ece7c21e62a93630dcb24c6d",
      "parents": [
        "bbf7871e1cd58b89f77b1152f457250c6e94b614"
      ],
      "author": {
        "name": "Steven Toth",
        "email": "stoth@hauppauge.com",
        "time": "Thu Dec 01 00:51:41 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:58 2005 -0800"
      },
      "message": "[PATCH] V4L: Fixed eeprom handling for cx88 and added Nova-T PCI model 90003\n\n- Fixed code handling for eeprom on cx88 boards.\n\n- Hauppauge released a new version of the Nova-T-PCI (9002) a few months ago\n  with a different (compatible) tuner (but lacking RF passthru).  The official\n  model# is 90003.  All features are working.\n\n- Adding entry to the known model list after testing.\n\nSigned-off-by: Steven Toth \u003cstoth@hauppauge.com\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "bbf7871e1cd58b89f77b1152f457250c6e94b614",
      "tree": "77ae1f89a8e47701629d1cb6bbd49ac377b254c6",
      "parents": [
        "fd1eab73d50258b4c622b8dc23d896abd5cff2e6"
      ],
      "author": {
        "name": "Michael H. Schimek",
        "email": "mschimek@gmx.at",
        "time": "Thu Dec 01 00:51:40 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:58 2005 -0800"
      },
      "message": "[PATCH] V4L: Fix bttv ioctls VIDIOC_ENUMINPUT, VIDIOCGTUNER, VIDIOC_QUERYCAP\n\nFixed bttv ioctls VIDIOC_ENUMINPUT, VIDIOCGTUNER, VIDIOC_QUERYCAP.\n\nSigned-off-by: Nickolay V. Shmyrev \u003cnshmyrev@yandex.ru\u003e\nSigned-off-by: Michael H. Schimek \u003cmschimek@gmx.at\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "fd1eab73d50258b4c622b8dc23d896abd5cff2e6",
      "tree": "e770702e5119803503f6c13dfd071169cbd3f308",
      "parents": [
        "1bcd2a36711e6a72802a92a4e3fcef9d0c59dc3f"
      ],
      "author": {
        "name": "Reimar Doeffinger",
        "email": "Reimar.Doeffinger@stud.uni-karlsruhe.de",
        "time": "Thu Dec 01 00:51:39 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:58 2005 -0800"
      },
      "message": "[PATCH] V4L: Fix crash when not compiled as module\n\nFix crash when not compiled as module.\n\nSigned-off-by: Reimar Doeffinger \u003cReimar.Doeffinger@stud.uni-karlsruhe.de\u003e\nSigned-off-by: Nickolay V. Shmyrev \u003cnshmyrev@yandex.ru\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "1bcd2a36711e6a72802a92a4e3fcef9d0c59dc3f",
      "tree": "44065889a34c72acd6581132e759466cf3f6c345",
      "parents": [
        "13c72805b3d922d85d5c470e851c93e8f8c076d8"
      ],
      "author": {
        "name": "Dwaine Garden",
        "email": "DwaineGarden@rogers.com",
        "time": "Thu Dec 01 00:51:37 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:58 2005 -0800"
      },
      "message": "[PATCH] V4L: Write cached value to correct register for SECAM\n\nWrite cached value to correct register for SECAM.\n\nSigned-off-by: Dwaine Garden \u003cDwaineGarden@rogers.com\u003e\nSigned-off-by: Nickolay V. Shmyrev \u003cnshmyrev@yandex.ru\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "13c72805b3d922d85d5c470e851c93e8f8c076d8",
      "tree": "f8ceb2a43f52b1cdf8da7ab429963dca16a2482a",
      "parents": [
        "943a49027b6d9829b737e6da3d72b867a7a6f832"
      ],
      "author": {
        "name": "Michael H. Schimek",
        "email": "mschimek@gmx.at",
        "time": "Thu Dec 01 00:51:37 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:58 2005 -0800"
      },
      "message": "[PATCH] V4L: Fixes Bttv raw format to fix VIDIOCSPICT ioctl\n\nFixes Bttv raw format to fix VIDIOCSPICT ioctl.\n\nSigned-off-by: Michael H. Schimek \u003cmschimek@gmx.at\u003e\nSigned-off-by: Nickolay V. Shmyrev \u003cnshmyrev@yandex.ru\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "943a49027b6d9829b737e6da3d72b867a7a6f832",
      "tree": "14b6fa8f407b760ca9dcb14498498bcf48f9786e",
      "parents": [
        "769e24382dd47434dfda681f360868c4acd8b6e2"
      ],
      "author": {
        "name": "Adrian Bunk",
        "email": "bunk@stusta.de",
        "time": "Thu Dec 01 00:51:35 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:57 2005 -0800"
      },
      "message": "[PATCH] V4L: Makes needlessly global code static\n\nThis patch makes needlessly global code static.\n\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "769e24382dd47434dfda681f360868c4acd8b6e2",
      "tree": "1be728dd2f1a7f523e3de5f3f39b97a4b9905dbe",
      "parents": [
        "6f502b8a7858ecfa7d2a0762f7663b8b3d0808fc"
      ],
      "author": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@brturbo.com.br",
        "time": "Thu Dec 01 00:51:35 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:57 2005 -0800"
      },
      "message": "[PATCH] V4L: Some funcions now static and I2C hw code for IR\n\n- Some funcions are now declared as static\n- Added a I2C code for InfraRed.\n\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "6f502b8a7858ecfa7d2a0762f7663b8b3d0808fc",
      "tree": "b6f6ef7e9918324136eabb506c37f7b91bd647b2",
      "parents": [
        "c87c948ebd75525df4d67dd5b40e6ea81859cc17"
      ],
      "author": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@brturbo.com.br",
        "time": "Thu Dec 01 00:51:34 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:57 2005 -0800"
      },
      "message": "[PATCH] V4L: Enables audio DMA setting on cx88 chips, even when dma not in use\n\n- Enabled audio DMA transfer code even when DMA not in use to solve a\n  problem on some broken cx88 chips.\n\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "c87c948ebd75525df4d67dd5b40e6ea81859cc17",
      "tree": "c84d2b6b707407e3468a94068047c105f3e347bd",
      "parents": [
        "50ab5edc973c979e8f620e09d20b96761d271894"
      ],
      "author": {
        "name": "Michael H. Schimek",
        "email": "mschimek@gmx.at",
        "time": "Thu Dec 01 00:51:33 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:57 2005 -0800"
      },
      "message": "[PATCH] V4L: Bttv bytes per line fix\n\nbttv bytes per line fix.\n\nSigned-off-by: Michael H. Schimek \u003cmschimek@gmx.at\u003e\nSigned-off-by: Nickolay V. Shmyrev \u003cnshmyrev@yandex.ru\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "50ab5edc973c979e8f620e09d20b96761d271894",
      "tree": "7be7c4416bb650c1c1c0d5845c2f0369e9956b35",
      "parents": [
        "3b86b9999deb04bbfbb20e6b6fe1119a4bf0ff34"
      ],
      "author": {
        "name": "Nickolay V. Shmyrev",
        "email": "nshmyrev@yandex.ru",
        "time": "Thu Dec 01 00:51:32 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:57 2005 -0800"
      },
      "message": "[PATCH] V4L: Fix read() bugs in bttv driver\n\nFix read() bugs in bttv driver.\n\nSigned-off-by: Nickolay V. Shmyrev \u003cnshmyrev@yandex.ru\u003e\nSigned-off-by: Michael H. Schimek \u003cmschimek@gmx.at\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3b86b9999deb04bbfbb20e6b6fe1119a4bf0ff34",
      "tree": "0f1ab93d183ef64ae0ba9fe29dcaa03a0b8a55ef",
      "parents": [
        "53a7338af60689817e81114d42cfa2ab4bb95516"
      ],
      "author": {
        "name": "Mauro Carvalho Chehab",
        "email": "mchehab@brturbo.com.br",
        "time": "Thu Dec 01 00:51:31 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:57 2005 -0800"
      },
      "message": "[PATCH] V4L: Removed audio DMA enabling from cx88-core\n\n- Removed code that enables audio DMA transfers at cx88-core.\n- This stuff should be at cx88-alsa when ready.\n\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "53a7338af60689817e81114d42cfa2ab4bb95516",
      "tree": "7ad9cf7f0c048fc7c43c5a194ddcc020a88e8a71",
      "parents": [
        "3ca0ea980697d3b3c3d5c13ba7e525ed6c434756"
      ],
      "author": {
        "name": "Ian Pickworth",
        "email": "ian@pickworth.me.uk",
        "time": "Thu Dec 01 00:51:28 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:57 2005 -0800"
      },
      "message": "[PATCH] V4L: Fixes nicam sound\n\n- Resolved problem of sporadic buzz after setting Nicam stereo\n- improved setting audio standard with dma reset\n- cleaned up comments format\n- more sensitive Nicam detection\n\nSigned-off-by: Ian Pickworth \u003cian@pickworth.me.uk\u003e\nSigned-off-by: Michal Pytasz \u003cpytasz@lodz.home.pl\u003e\nSigned-off-by: Marcin Rudowski \u003cmar_rud@poczta.onet.pl\u003e\nSigned-off-by: Torsten Seeboth \u003cTorsten.Seeboth@t-online.de\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3ca0ea980697d3b3c3d5c13ba7e525ed6c434756",
      "tree": "db5d423db74e88ce836588bb77ab8ae77649b5f8",
      "parents": [
        "759324c3c4b8d63203d7ea41b56553330bc0df06"
      ],
      "author": {
        "name": "Steven Toth",
        "email": "stoth@hauppauge.com",
        "time": "Thu Dec 01 00:51:27 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:57 2005 -0800"
      },
      "message": "[PATCH] V4L: tveeprom MAC address parsing/cleanup\n\n- Added a mac address field to the tveeprom structure.\n\n- allow callers to query the MAC address.\n\n- removed some redundant eeprom parsing code in cx88-cards.c (specific to\n  Hauppauge DVB products) Instead, placed calls directly to the single eeprom\n  parsing function in tveeprom.c\n\nSigned-off-by: Steven Toth \u003cstoth@hauppauge.com\u003e\nSigned-off-by: Michael Krufky \u003cmkrufky@m1k.net\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "759324c3c4b8d63203d7ea41b56553330bc0df06",
      "tree": "878ff3bcfc4bba8fdbdc930175b5466e6598a6f0",
      "parents": [
        "97cb445df6c6cb81e4f06ee159331f15bf5c4513"
      ],
      "author": {
        "name": "Steven Toth",
        "email": "stoth@hauppauge.com",
        "time": "Thu Dec 01 00:51:26 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:56 2005 -0800"
      },
      "message": "[PATCH] V4: Include comments for DVB models and includes missing ones\n\nInclude comments for DVB models and includes missing ones\n\nSigned-off-by: Steven Toth \u003cstoth@hauppauge.com\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "97cb445df6c6cb81e4f06ee159331f15bf5c4513",
      "tree": "3f523c672b7220d79c0ca477458f34898d135f47",
      "parents": [
        "f5b974cb16dd95d1ae0424f68f74550dbd793a33"
      ],
      "author": {
        "name": "Luiz Capitulino",
        "email": "lcapitulino@mandriva.com.br",
        "time": "Thu Dec 01 00:51:24 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:56 2005 -0800"
      },
      "message": "[PATCH] V4L: Fixes warning at bttv-driver.c\n\nFixes warning at bttv-driver.c\n\nSigned-off-by: Luiz Capitulino \u003clcapitulino@mandriva.com.br\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "f5b974cb16dd95d1ae0424f68f74550dbd793a33",
      "tree": "214fa2dc0ac32d84c56fe4a74b613eae6fbf68a0",
      "parents": [
        "938606b02b3d7b587777e5b1e44f4196903250ca"
      ],
      "author": {
        "name": "Ricardo Cerqueira",
        "email": "v4l@cerqueira.org",
        "time": "Thu Dec 01 00:51:20 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:56 2005 -0800"
      },
      "message": "[PATCH] V4L: Fix hotplugging issues with saa7134\n\n- Fixed issue with hotplugging and DMA sound (sound was lost when replugging\n  a card)\n\n- Added notifiers to main saa7134 module to let the sound sub-modules know\n  when a card has been inserted or removed\n\nSigned-off-by: Ricardo Cerqueira \u003cv4l@cerqueira.org\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "938606b02b3d7b587777e5b1e44f4196903250ca",
      "tree": "136b2a3b770e04959a2979e5bb47ee3dd819ec7c",
      "parents": [
        "db1d1d57e97700b4131fe80556dc6ef976d534c4"
      ],
      "author": {
        "name": "Sigmund Augdal Helberg",
        "email": "sigmund@snap.tv",
        "time": "Thu Dec 01 00:51:19 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Thu Dec 01 15:48:56 2005 -0800"
      },
      "message": "[PATCH] V4L: Fixes maximum number of VBI devices\n\n- Increases the minor number limitation for vbi devices from 223 to 255.\n  This is in agreement with the minor number allocation specified in\n  Documentation/devices.txt.\n\n- Without this patch it is not possible to use more than 5 Hauppauge\n  WinTV-PVR 350 cards since each of these allocate 3 vbi devices.\n\nSigned-of-by: Sigmund Augdal Helberg \u003csigmund@snap.tv\u003e\nSigned-off-by: Mauro Carvalho Chehab \u003cmchehab@brturbo.com.br\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "6bc733e9f71c937f3c64159bf1e569321726a44c",
      "tree": "2822abc9574f1fc0d8eddb80adbe34d5460926ff",
      "parents": [
        "c87e34efaecc952f9a0c1bbb9c6da76ccbf5ee3d"
      ],
      "author": {
        "name": "Hugh Dickins",
        "email": "hugh@veritas.com",
        "time": "Thu Dec 01 20:21:57 2005 +0000"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@titanic.(none)",
        "time": "Thu Dec 01 16:16:06 2005 -0600"
      },
      "message": "[SCSI] st: fix a bug in sgl_map_user_pages failure path \n\nNick and I had already been looking at drivers/scsi/{sg.c,st.c},\nbrought there by __put_page in sg.c\u0027s peculiar sg_rb_correct4mmap,\nwhich we\u0027d like to remove.  But that\u0027s irrelevant to your pain, except...\n\nOne extract from the patches I\u0027d like to send Doug and Kai for 2.6.15\nor 2.6.16 is this below: since the incomplete get_user_pages path omits\nto reset res, but has already released all the pages, it will result in\npremature freeing of user pages, and behaviour just like you\u0027ve seen.\n\nThough I\u0027d have thought incomplete get_user_pages was an exceptional\ncase, and a bit surprised you\u0027d encounter it.  Perhaps there\u0027s some\nother premature freeing in the driver, and this instance has nothing\nwhatever to do with it.\n\nIf the problem were easily reproducible, it\u0027d be great if you could\ntry this patch; but I think you\u0027ve said it\u0027s not :-(\n\nSigned-off-by: Kai Makisara \u003ckai.makisara@kolumbus.fi\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "2a238ea5fbf2bd9a18a4ffb607418a4b9394647e",
      "tree": "dc505a831abdb22879e86187b3ae01912a02f604",
      "parents": [
        "8b2f81385aa02e9405990b7fe44462dfceb75ef7"
      ],
      "author": {
        "name": "Moore, Eric Dean",
        "email": "Eric.Moore@lsil.com",
        "time": "Thu Dec 01 10:50:32 2005 -0700"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Thu Dec 01 15:59:51 2005 -0600"
      },
      "message": "[SCSI] mptfusion : dv performance fix\n\nSyncronization for Domain Validation workqueue and the initiation of the\nalternate controller.  Its possible that dv could be terminated if the\nworkqueue on the 1st channel doesn complete in time before the 2nd channel\nbegins initialization.\n\nSigned-off-by: Eric Moore \u003cEric.Moore@lsil.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "8b2f81385aa02e9405990b7fe44462dfceb75ef7",
      "tree": "e474d795ad3e0716d5123349519475700132e9df",
      "parents": [
        "fb121b067be77a9927e9453e427cf5819eb8ef01"
      ],
      "author": {
        "name": "Matthew Wilcox",
        "email": "matthew@wil.cx",
        "time": "Tue Nov 29 23:08:38 2005 -0500"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Thu Dec 01 15:59:50 2005 -0600"
      },
      "message": "[SCSI] sym2: Disable IU and QAS negotiation\n\nEnabling these features causes problems with some drives, so disable\nthem until they\u0027re debugged\n\nSigned-off-by: Matthew Wilcox \u003cmatthew@wil.cx\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "fb121b067be77a9927e9453e427cf5819eb8ef01",
      "tree": "e19e29eab14f081f3ce28dc000a0f856bede3719",
      "parents": [
        "ee69ab7af3cd68423e389272e1276718d4cd8ebc"
      ],
      "author": {
        "name": "Andreas Herrmann",
        "email": "aherrman@de.ibm.com",
        "time": "Thu Dec 01 02:49:29 2005 +0100"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Thu Dec 01 15:59:49 2005 -0600"
      },
      "message": "[SCSI] zfcp: fix return code of zfcp_scsi_slave_alloc\n\nChange return code in slave_alloc to avoid irritating error message from\nscsi_alloc_sdev() when scsi stack tries target scan.\n\nSigned-off-by: Andreas Herrmann \u003caherrman@de.ibm.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "ee69ab7af3cd68423e389272e1276718d4cd8ebc",
      "tree": "4b2c82f9787414d1b51fdd5806971d4becb8d94d",
      "parents": [
        "2448c45965870ca9cfdb66388b4fcc93f1e12bb7"
      ],
      "author": {
        "name": "Maxim Shchetynin",
        "email": "maxim@de.ibm.com",
        "time": "Thu Dec 01 02:48:41 2005 +0100"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Thu Dec 01 15:59:48 2005 -0600"
      },
      "message": "[SCSI] zfcp: fix link down handling during firmware update\n\nDon\u0027t check link down payload in case of firmware update.\n\nSigned-off-by: Maxim Shchetynin \u003cmaxim@de.ibm.com\u003e\nSigned-off-by: Andreas Herrmann \u003caherrman@de.ibm.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "2448c45965870ca9cfdb66388b4fcc93f1e12bb7",
      "tree": "b028c8ad8dbb8353f7299ce5c88b54ff7cfc6433",
      "parents": [
        "c48a29d065cfa18c3e8699f5e3a84a59ad35e062"
      ],
      "author": {
        "name": "Andreas Herrmann",
        "email": "aherrman@de.ibm.com",
        "time": "Thu Dec 01 02:50:36 2005 +0100"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Thu Dec 01 15:59:47 2005 -0600"
      },
      "message": "[SCSI] zfcp: fix adapter initialization\n\nFixed various problems in opening sequence of adapters which was previously\nchanged with NPIV support:\no corrected handling when exchange port data function is not supported,\n  otherwise adapters on z900 cannot be opened anymore\no corrected setup of timer for exchange port data if called from error\n  recovery\no corrected check of return code of exchange config data\n\nSigned-off-by: Andreas Herrmann \u003caherrman@de.ibm.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "c48a29d065cfa18c3e8699f5e3a84a59ad35e062",
      "tree": "c22058a74f61adbdf8663fd24d3ca2018e4f65cd",
      "parents": [
        "8bdf810f89c3e686ba18a11e2852f32014f1506a"
      ],
      "author": {
        "name": "Heiko Carstens",
        "email": "heiko.carstens@de.ibm.com",
        "time": "Thu Dec 01 02:46:32 2005 +0100"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Thu Dec 01 15:59:46 2005 -0600"
      },
      "message": "[SCSI] zfcp: fix spinlock initialization\n\nMove initialization of locks and lists to adapter allocation function.\nOtherwise we might end up with some uninitialized locks, like e.g. the\nerp locks which only will be inititialized if an error recovery thread\nfor an adapter will be started.\n\nSigned-off-by: Heiko Carstens \u003cheiko.carstens@de.ibm.com\u003e\nSigned-off-by: Andreas Herrmann \u003caherrman@de.ibm.com\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "8bdf810f89c3e686ba18a11e2852f32014f1506a",
      "tree": "899aaf094c61b20a7ef5d3d7bc1ee3c5c2c57533",
      "parents": [
        "349cd7cfe6ba0b2e7cd2afdc3e70ede845311afe"
      ],
      "author": {
        "name": "Mark Haverkamp",
        "email": "markh@osdl.org",
        "time": "Wed Nov 30 12:01:39 2005 -0800"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Thu Dec 01 15:59:44 2005 -0600"
      },
      "message": "[SCSI] aacraid: Check scsi_bios_ptabe return code\n\nReceived from Mark Salyzyn.\n\nscsi_bios_ptable return value is not being checked in aac_biosparm.\n\nSigned-off-by: Mark Haverkamp \u003cmarkh@osdl.org\u003e\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    },
    {
      "commit": "349cd7cfe6ba0b2e7cd2afdc3e70ede845311afe",
      "tree": "de4a8552c91377a86c928ceca12807dc5d30c379",
      "parents": [
        "dce200670d63615120de17d4aed0a4fd777cc825"
      ],
      "author": {
        "name": "James Bottomley",
        "email": "James.Bottomley@steeleye.com",
        "time": "Mon Nov 28 15:41:58 2005 -0600"
      },
      "committer": {
        "name": "James Bottomley",
        "email": "jejb@mulgrave.(none)",
        "time": "Thu Dec 01 15:59:43 2005 -0600"
      },
      "message": "[SCSI] SPI DV: be more conservative about echo buffer usage\n\nSome SCSI devices apparently get very confused if we try to use the\necho buffer on a non-DT negotiated bus (this mirrors the problems of\nusing PPR on non-LVD for some devices).  The fix is to be far more\nconservative about when we use an echo buffer.  With this patch, we\u0027ll\nnow see what parameters are negotiated by the read only test, and only\nlook for an echo buffer if DT is negotiated.\n\nSigned-off-by: James Bottomley \u003cJames.Bottomley@SteelEye.com\u003e\n"
    }
  ],
  "next": "ea182d4aefa3a27847d890b1592a608d1180aa45"
}
