)]}'
{
  "log": [
    {
      "commit": "acd37177cc2e034ecb6cbb784a8b998229fa85c4",
      "tree": "775e9f9bdda2aaefca76f180e5828c1cf05a838c",
      "parents": [
        "05abb126c148b081ee9da5a611960e2a80205ea2"
      ],
      "author": {
        "name": "Alexander Duyck",
        "email": "alexander.h.duyck@intel.com",
        "time": "Thu Aug 19 13:36:05 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Thu Aug 19 16:40:51 2010 -0700"
      },
      "message": "ixgbe: pull ring configuration into it\u0027s own function\n\nThese changes add ixgbe_configure_rx_ring which is used to setup the base\nfunction pointers for the ring.\n\nSigned-off-by: Alexander Duyck \u003calexander.h.duyck@intel.com\u003e\nSigned-off-by: Jeff Kirsher \u003cjeffrey.t.kirsher@intel.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "05abb126c148b081ee9da5a611960e2a80205ea2",
      "tree": "ac267f7b2c22522309ff712541745d764788e85a",
      "parents": [
        "43e69bf0f0df2691001dbd055ab8d4f795d1900c"
      ],
      "author": {
        "name": "Alexander Duyck",
        "email": "alexander.h.duyck@intel.com",
        "time": "Thu Aug 19 13:35:41 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Thu Aug 19 16:40:50 2010 -0700"
      },
      "message": "ixgbe: consolidate all setting of MRQC into one function\n\nThis change simplifies the configuration of MRQC by consolidating the\nsetting of it into one function. As such the register is no longer set in\nmultiple places which should make any future changes easier to work with.\nIn addition we can combine RSS related register writes into the call since\nenabling all of those bits without enabling RSS itself in MRQC should have\nno effect.\n\nSigned-off-by: Alexander Duyck \u003calexander.h.duyck@intel.com\u003e\nSigned-off-by: Jeff Kirsher \u003cjeffrey.t.kirsher@intel.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "43e69bf0f0df2691001dbd055ab8d4f795d1900c",
      "tree": "ce3ca9b3e152bf7f9962b1a91fc9012558f950b3",
      "parents": [
        "120ff942cc6357b08fc817d89a5458038942edeb"
      ],
      "author": {
        "name": "Alexander Duyck",
        "email": "alexander.h.duyck@intel.com",
        "time": "Thu Aug 19 13:35:12 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Thu Aug 19 16:40:49 2010 -0700"
      },
      "message": "ixgbe: move Tx ring configuration into a separate function\n\nThis patch moves the Tx ring configuration into a separate function.  In\naddition the function drops the setting of the head writeback RO bit since\nhead writeback is no longer used within ixgbe.\n\nSigned-off-by: Alexander Duyck \u003calexander.h.duyck@intel.com\u003e\nSigned-off-by: Jeff Kirsher \u003cjeffrey.t.kirsher@intel.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "120ff942cc6357b08fc817d89a5458038942edeb",
      "tree": "f4d5d12e85e948e17d3e28f9325c427204dd7ed4",
      "parents": [
        "179b4096e25c190fc987832e0037b40507cc7ca0"
      ],
      "author": {
        "name": "Alexander Duyck",
        "email": "alexander.h.duyck@intel.com",
        "time": "Thu Aug 19 13:34:50 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Thu Aug 19 16:40:49 2010 -0700"
      },
      "message": "ixgbe: move configuration of the MTQC register into it\u0027s own function\n\nThis patch moves the configuration of the MTQC register into it\u0027s own\nfunction call similar to ixgbe_setup_mrqc.\n\nSigned-off-by: Alexander Duyck \u003calexander.h.duyck@intel.com\u003e\nSigned-off-by: Jeff Kirsher \u003cjeffrey.t.kirsher@intel.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "179b4096e25c190fc987832e0037b40507cc7ca0",
      "tree": "e9bfe0f3cdc31b1e4d575b3457cdbd6126fd4de6",
      "parents": [
        "67ebd79141e2dd503b0bc4898d06d07f07fc2635"
      ],
      "author": {
        "name": "Alexander Duyck",
        "email": "alexander.h.duyck@intel.com",
        "time": "Thu Aug 19 13:34:27 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Thu Aug 19 16:40:48 2010 -0700"
      },
      "message": "ixgbe: combine two modifications of TXDCTL into one\n\nIn ixgbe_up_complete we were doing a read-modify-write of TXDCTL followed\nby another one just a few lines further down.  Instead of performing two\nseparate read-modify-writes it would make more sense to combine the two\ninto one.\n\nSigned-off-by: Alexander Duyck \u003calexander.h.duyck@intel.com\u003e\nSigned-off-by: Jeff Kirsher \u003cjeffrey.t.kirsher@intel.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "67ebd79141e2dd503b0bc4898d06d07f07fc2635",
      "tree": "d614407fe8f8fa2a9aa42466abab17bd8065c658",
      "parents": [
        "d716a7d88549c99f9afbfc1f75dda1c390e2dc3a"
      ],
      "author": {
        "name": "Alexander Duyck",
        "email": "alexander.h.duyck@intel.com",
        "time": "Thu Aug 19 13:34:04 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Thu Aug 19 16:40:48 2010 -0700"
      },
      "message": "ixgbe: move setting of GSO size for 82598 into ixgbe_configure_dcb\n\nWe are unnecessarily modifying the GSO size for all HW when we don\u0027t need\nto.  The code can be simplified by moving the check for DCB and the\nadjustment of the GSO size for 82598 into ixgbe_configure_dcb.\n\nSigned-off-by: Alexander Duyck \u003calexander.h.duyck@intel.com\u003e\nSigned-off-by: Jeff Kirsher \u003cjeffrey.t.kirsher@intel.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "d716a7d88549c99f9afbfc1f75dda1c390e2dc3a",
      "tree": "e9450cb13cd9159191a81b676a6adf4501765914",
      "parents": [
        "083fc582b8752c64b0ae73935ddb45a1dd794b4c"
      ],
      "author": {
        "name": "Alexander Duyck",
        "email": "alexander.h.duyck@intel.com",
        "time": "Thu Aug 19 13:33:41 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Thu Aug 19 16:36:45 2010 -0700"
      },
      "message": "ixgbe: remove redundant DMA alignment code\n\nThis patch removes the redundant DMA alignment code from the Rx buffer\nallocation path.  This code is no longer necessary since all x86 buffers\nare now DMA aligned due to recent changes to NET_IP_ALIGN and NET_SKB_PAD.\n\nIt also moves the setting of the Rx queue value into the allocation path\nsince it is more likely that the queue mapping will still be in the cache\nat the time of allocation.\nSigned-off-by: Alexander Duyck \u003calexander.h.duyck@intel.com\u003e\nSigned-off-by: Jeff Kirsher \u003cjeffrey.t.kirsher@intel.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "083fc582b8752c64b0ae73935ddb45a1dd794b4c",
      "tree": "b77af1a514e8f2e585c0f442175929cbcae3150d",
      "parents": [
        "357e8b5f723ba9e1d0a0f8ffb1361d607e43e19a"
      ],
      "author": {
        "name": "Don Skidmore",
        "email": "donald.c.skidmore@intel.com",
        "time": "Thu Aug 19 13:33:16 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Thu Aug 19 16:36:44 2010 -0700"
      },
      "message": "ixgbe: cleanup ixgbe_get_drvinfo to be extra careful with buffer boundaries\n\nMake the code in ixgbe_get_drvinfo more protected against buffer overflow\nboundaries by using snprintf and sizeof with snprintf.\n\nSigned-off-by: Don Skidmore \u003cdonald.c.skidmore@intel.com\u003e\nSigned-off-by: Jeff Kirsher \u003cjeffrey.t.kirsher@intel.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "357e8b5f723ba9e1d0a0f8ffb1361d607e43e19a",
      "tree": "a519a2220557cfca4aa18d7b0c4a852eab03f59d",
      "parents": [
        "6f0bee16d0840c272229f2038a23a9a02dfc803d"
      ],
      "author": {
        "name": "Michal Simek",
        "email": "monstr@monstr.eu",
        "time": "Wed Aug 18 01:22:49 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Thu Aug 19 00:49:47 2010 -0700"
      },
      "message": "xilinx_emaclite: netpoll support\n\nNetconsole requires poll support.\n\nSigned-off-by: Michal Simek \u003cmonstr@monstr.eu\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "6f0bee16d0840c272229f2038a23a9a02dfc803d",
      "tree": "67b5147d41d3a9d0dff650c487ea9256c6435c85",
      "parents": [
        "dd57f970f91e2371040db709b3731ac34e43ccdb"
      ],
      "author": {
        "name": "Eric Dumazet",
        "email": "eric.dumazet@gmail.com",
        "time": "Wed Aug 18 03:13:08 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Thu Aug 19 00:16:52 2010 -0700"
      },
      "message": "slip: fix get_stats() method\n\nUse integrated net_device_stats instead of a static one, and make sure\nno transient values are feeded. ndo_get_stats() can be called by\nconcurrent cpus.\n\nSigned-off-by: Eric Dumazet \u003ceric.dumazet@gmail.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "dd57f970f91e2371040db709b3731ac34e43ccdb",
      "tree": "e51cbe0b96df2e5b7ce5881574c7c62112a75479",
      "parents": [
        "b92840900fb575004cac694e56fd0a43f54dc344"
      ],
      "author": {
        "name": "Eric Dumazet",
        "email": "eric.dumazet@gmail.com",
        "time": "Wed Aug 18 03:42:54 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Thu Aug 19 00:16:51 2010 -0700"
      },
      "message": "vxge: Implement 64bit stats\n\nvxge_get_stats() is racy, since it clears a block of memory (net_stats)\npossibly still used by other cpus.\n\nWe can update this driver to full 64bit stats, since ndo_get_stats64()\nprovides a private block to store results, and driver maintains 64bit\ncounters already.\n\nWe also remove net_stats field from struct vxge_sw_stats\n\nSigned-off-by: Eric Dumazet \u003ceric.dumazet@gmail.com\u003e\nAcked-by: Jon Mason \u003cjon.mason@exar.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "b92840900fb575004cac694e56fd0a43f54dc344",
      "tree": "29e20d684393515c7278427f46dd804a0d66f74f",
      "parents": [
        "bb2537f1e76b3fb18c3fc1dff1df98ebc10af633"
      ],
      "author": {
        "name": "Eric Dumazet",
        "email": "eric.dumazet@gmail.com",
        "time": "Wed Aug 18 10:44:34 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Thu Aug 19 00:14:36 2010 -0700"
      },
      "message": "atm: remove a net_device_stats clear\n\nNo need to clear device stats in lec_open()\n\nSigned-off-by: Eric Dumazet \u003ceric.dumazet@gmail.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "bb2537f1e76b3fb18c3fc1dff1df98ebc10af633",
      "tree": "7c74a9ededc35cbc5ce4446911da1e10ca1598a4",
      "parents": [
        "25aec76a3bd962f0aae1d7980ab1efa56cb24b43"
      ],
      "author": {
        "name": "Tobias Klauser",
        "email": "tklauser@distanz.ch",
        "time": "Wed Aug 18 20:15:31 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Thu Aug 19 00:12:38 2010 -0700"
      },
      "message": "ether3: Use net_device_stats from struct net_device\n\nstruct net_device has its own struct net_device_stats member, so use\nthis one instead of a private copy in the ether1_priv struct. As the new\nndo_get_stats function would just return dev-\u003estats we can omit it. This\npatch also removes an incorrect memset of the stats on open.\n\nSigned-off-by: Tobias Klauser \u003ctklauser@distanz.ch\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "25aec76a3bd962f0aae1d7980ab1efa56cb24b43",
      "tree": "5eaf9b0c69027f9ae617f23513808c05968e154a",
      "parents": [
        "2244d07bfa2097cb00600da91c715a8aa547917e"
      ],
      "author": {
        "name": "Tobias Klauser",
        "email": "tklauser@distanz.ch",
        "time": "Wed Aug 18 20:15:04 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Thu Aug 19 00:12:38 2010 -0700"
      },
      "message": "ether1: Use net_device_stats from struct net_device\n\nstruct net_device has its own struct net_device_stats member, so use\nthis one instead of a private copy in the ether1_priv struct. As the new\nndo_get_stats function would just return dev-\u003estats we can omit it. This\npatch also removes an incorrect memset of the stats on open.\n\nSigned-off-by: Tobias Klauser \u003ctklauser@distanz.ch\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "2244d07bfa2097cb00600da91c715a8aa547917e",
      "tree": "44d67d9ffba3697fffeb05c13e88aa76ebc3fd4a",
      "parents": [
        "4d5870ec103e6569851b9710f0093f072b08439a"
      ],
      "author": {
        "name": "Oliver Hartkopp",
        "email": "socketcan@hartkopp.net",
        "time": "Tue Aug 17 08:59:14 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Thu Aug 19 00:08:30 2010 -0700"
      },
      "message": "net: simplify flags for tx timestamping\n\nThis patch removes the abstraction introduced by the union skb_shared_tx in\nthe shared skb data.\n\nThe access of the different union elements at several places led to some\nconfusion about accessing the shared tx_flags e.g. in skb_orphan_try().\n\n    http://marc.info/?l\u003dlinux-netdev\u0026m\u003d128084897415886\u0026w\u003d2\n\nSigned-off-by: Oliver Hartkopp \u003csocketcan@hartkopp.net\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "4d5870ec103e6569851b9710f0093f072b08439a",
      "tree": "9a282088086e518c1bae60357b7163441fc139d9",
      "parents": [
        "c6c759884b05c7449a19d39c763a7482180e2def"
      ],
      "author": {
        "name": "Joe Perches",
        "email": "joe@perches.com",
        "time": "Tue Aug 17 07:55:05 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Thu Aug 19 00:04:34 2010 -0700"
      },
      "message": "drivers/net/sunvnet.c: Use pr_\u003clevel\u003e and netdev_\u003clevel\u003e\n\nUse the current message logging styles.\n\nSigned-off-by: Joe Perches \u003cjoe@perches.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "c6c759884b05c7449a19d39c763a7482180e2def",
      "tree": "d1b30a1928143cad6d6e5f651ccaa2501979f009",
      "parents": [
        "0b29b894b17747f7fa0c5668281c68b8cde7647b"
      ],
      "author": {
        "name": "Joe Perches",
        "email": "joe@perches.com",
        "time": "Tue Aug 17 07:55:04 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Thu Aug 19 00:04:33 2010 -0700"
      },
      "message": "drivers/net/sungem: Use netdev_\u003clevel\u003e, netif_\u003clevel\u003e and pr_\u003clevel\u003e\n\nUse the current logging message styles.\n\nSigned-off-by: Joe Perches \u003cjoe@perches.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "0b29b894b17747f7fa0c5668281c68b8cde7647b",
      "tree": "8352b30ae97b6b8e1460fc5865fe554890e500c4",
      "parents": [
        "cb5d991a99104565f7b622b1b97587f4b1effa82"
      ],
      "author": {
        "name": "Tobias Klauser",
        "email": "tklauser@distanz.ch",
        "time": "Tue Aug 17 06:13:05 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Thu Aug 19 00:04:32 2010 -0700"
      },
      "message": "sunhme: Use return value of register_netdev\n\nUse the return value provided by register_netdev on error instead of\nusing a previously set value.\n\nSigned-off-by: Tobias Klauser \u003ctklauser@distanz.ch\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "cb5d991a99104565f7b622b1b97587f4b1effa82",
      "tree": "308ab62d0cbe1485a8fb463329ff1c05f808d9fd",
      "parents": [
        "900853a4db7098b0e58ddcb732632ac43a7b2148"
      ],
      "author": {
        "name": "Tobias Klauser",
        "email": "tklauser@distanz.ch",
        "time": "Tue Aug 17 06:11:24 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Thu Aug 19 00:04:31 2010 -0700"
      },
      "message": "greth: Use return value of register_netdev\n\nUse the return value provided by register_netdev on error instead of\nhard setting it to -ENOMEM.\n\nSigned-off-by: Tobias Klauser \u003ctklauser@distanz.ch\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "900853a4db7098b0e58ddcb732632ac43a7b2148",
      "tree": "9152ef81c79caef6434f077db7b3bf5794e45f96",
      "parents": [
        "49339ccae5ba361b62e829886117dbce4b77194f"
      ],
      "author": {
        "name": "Julia Lawall",
        "email": "julia@diku.dk",
        "time": "Mon Aug 16 10:23:51 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Wed Aug 18 14:26:32 2010 -0700"
      },
      "message": "drivers/net/qlcnic: Use available error codes\n\nThe error code is stored in the variable err, but it is the variable ret\nthat is returned instead.  So store the error code in ret.  Err is then\nuseless.\n\nThe semantic match that finds this problem is as follows:\n(http://coccinelle.lip6.fr/)\n\n// \u003csmpl\u003e\n@r@\nlocal idexpression x;\nconstant C;\n@@\n\nif (...) { ...\n  x \u003d -C\n  ... when !\u003d x\n(\n  return \u003c+...x...+\u003e;\n|\n  return NULL;\n|\n  return;\n|\n* return ...;\n)\n}\n// \u003c/smpl\u003e\n\nSigned-off-by: Julia Lawall \u003cjulia@diku.dk\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "49339ccae5ba361b62e829886117dbce4b77194f",
      "tree": "36d99760d3a289dac464fb4bd52d9b6227a06595",
      "parents": [
        "b3d18f15092a7db2f229cd7bc69fc40eac0774f4"
      ],
      "author": {
        "name": "Julia Lawall",
        "email": "julia@diku.dk",
        "time": "Mon Aug 16 06:28:19 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Wed Aug 18 14:26:31 2010 -0700"
      },
      "message": "net/ax25: Use available error codes\n\nError codes are stored in err, but the return value is always 0.  Return\nerr instead.\n\nThe semantic match that finds this problem is as follows:\n(http://coccinelle.lip6.fr/)\n\n// \u003csmpl\u003e\n@r@\nlocal idexpression x;\nconstant C;\n@@\n\nif (...) { ...\n  x \u003d -C\n  ... when !\u003d x\n(\n  return \u003c+...x...+\u003e;\n|\n  return NULL;\n|\n  return;\n|\n* return ...;\n)\n}\n// \u003c/smpl\u003e\n\nSigned-off-by: Julia Lawall \u003cjulia@diku.dk\u003e\nAcked-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "b3d18f15092a7db2f229cd7bc69fc40eac0774f4",
      "tree": "7bc284b769cc05e172552e400d4b52942a0fa6d9",
      "parents": [
        "636b8116d4e116eca1ac978f546b16fadfc15a6c"
      ],
      "author": {
        "name": "Julia Lawall",
        "email": "julia@diku.dk",
        "time": "Mon Aug 16 06:26:57 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Wed Aug 18 14:26:31 2010 -0700"
      },
      "message": "net/ax25: Use available error codes\n\nError codes are stored in err, but the return value is always 0.  Return\nerr instead.\n\nThe semantic match that finds this problem is as follows:\n(http://coccinelle.lip6.fr/)\n\n// \u003csmpl\u003e\n@r@\nlocal idexpression x;\nconstant C;\n@@\n\nif (...) { ...\n  x \u003d -C\n  ... when !\u003d x\n(\n  return \u003c+...x...+\u003e;\n|\n  return NULL;\n|\n  return;\n|\n* return ...;\n)\n}\n// \u003c/smpl\u003e\n\nSigned-off-by: Julia Lawall \u003cjulia@diku.dk\u003e\nAcked-by: Ralf Baechle \u003cralf@linux-mips.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "636b8116d4e116eca1ac978f546b16fadfc15a6c",
      "tree": "287364907b68208a473472e9f6314b64ced16d3d",
      "parents": [
        "00093fab980d0a8950a64bdf9e346d0497b9a7e4"
      ],
      "author": {
        "name": "Joe Perches",
        "email": "joe@perches.com",
        "time": "Thu Aug 12 12:22:51 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Wed Aug 18 14:26:30 2010 -0700"
      },
      "message": "drivers/net/pcmcia: Use pr_\u003clevel\u003e and netdev_\u003clevel\u003e\n\nOn Mon, 2010-08-09 at 17:34 +0200, Dominik Brodowski wrote:\n\u003e look good from a PCMCIA point of view, therefore:\n\u003e Signed-off-by: Dominik Brodowski \u003clinux@dominikbrodowski.net\u003e\n\nIf PCMCIA is still being looked after, then here\u0027s\nanother for you, maybe for 2.6.37.\n\nUse the more descriptive logging message styles.\n\nThere are whitespace/indentation errors in the original\nsources that these changes do not modify, so checkpatch\nerrors were cheerfully ignored.\n\nSigned-off-by: Joe Perches \u003cjoe@perches.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "00093fab980d0a8950a64bdf9e346d0497b9a7e4",
      "tree": "4f222456af157773cbf32f9f06ea0169fbcf929e",
      "parents": [
        "666be4298bd8f9508b32833b17a686dde630f2a5"
      ],
      "author": {
        "name": "Dan Carpenter",
        "email": "error27@gmail.com",
        "time": "Sat Aug 14 11:09:49 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Wed Aug 18 14:24:51 2010 -0700"
      },
      "message": "net/sched: remove unneeded NULL check\n\nThere is no need to check \"s\".  nla_data() doesn\u0027t return NULL.  Also we\nalready dereferenced \"s\" at this point so it would have oopsed ealier if\nit were NULL.\n\nSigned-off-by: Dan Carpenter \u003cerror27@gmail.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "666be4298bd8f9508b32833b17a686dde630f2a5",
      "tree": "777a4042faee8e87617aa09d9013ad9b29cbf239",
      "parents": [
        "be265e9bae343d803145bbe910a8b00bc4bea3cc"
      ],
      "author": {
        "name": "Jon Mason",
        "email": "jon.mason@exar.com",
        "time": "Thu Aug 12 05:03:04 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Wed Aug 18 14:24:50 2010 -0700"
      },
      "message": "s2io: Update driver version\n\nUpdate s2io driver\u0027s version to reflect the series of patches.\n\nSigned-off-by: Jon Mason \u003cjon.mason@exar.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "be265e9bae343d803145bbe910a8b00bc4bea3cc",
      "tree": "8586e21cef68aa048e5ab11e1ba43295403bfdea",
      "parents": [
        "baeb2ffab4e67bb9174e6166e070a9a8ec94b0f6"
      ],
      "author": {
        "name": "Jon Mason",
        "email": "jon.mason@exar.com",
        "time": "Thu Aug 12 05:03:03 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Wed Aug 18 14:24:50 2010 -0700"
      },
      "message": "s2io: remove unused code\n\nusr_addrs is never referenced outside the initial struct population\nduring open, thus making it unnecessary.  Remove it, the code that\nreferences it, and the struct that it is the only user of.\n\nSigned-off-by: Jon Mason \u003cjon.mason@exar.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "baeb2ffab4e67bb9174e6166e070a9a8ec94b0f6",
      "tree": "08259e966cc0cacc58ed58a4865fe861cc255241",
      "parents": [
        "5a68d5ee000bb784c4856391b4861739c8bbd341"
      ],
      "author": {
        "name": "Joe Perches",
        "email": "joe@perches.com",
        "time": "Wed Aug 11 07:02:48 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 17:45:14 2010 -0700"
      },
      "message": "drivers/net: Convert unbounded kzalloc calls to kcalloc\n\nThese changes may be slightly safer in some instances.\n\nThere are other kzalloc calls with a multiply, but those\ncalls are typically \"small fixed #\" * sizeof(some pointer)\"\nand those are not converted.\n\nSigned-off-by: Joe Perches \u003cjoe@perches.com\u003e\nAcked-by: Gertjan van Wingerde \u003cgwingerde@gmail.com\u003e\nAcked-by: Luciano Coelho \u003cluciano.coelho@nokia.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "5a68d5ee000bb784c4856391b4861739c8bbd341",
      "tree": "bf00540edd8adae24f3805b08d53ba37af6366d7",
      "parents": [
        "564e83b51a12b794e3f63a2d872398e1ee21616f"
      ],
      "author": {
        "name": "Allan Stephens",
        "email": "allan.stephens@windriver.com",
        "time": "Tue Aug 17 11:00:16 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 17:32:00 2010 -0700"
      },
      "message": "tipc: Prevent missing name table entries when link flip-flops rapidly\n\nEnsure that TIPC does not re-establish communication with a\nneighboring node until it has finished updating all data structures\ncontaining information about that node to reflect the earlier loss of\ncontact.  Previously, it was possible for TIPC to perform its purge of\nname table entries relating to the node once contact had already been\nre-established, resulting in the unwanted removal of valid name table\nentries.\n\nSigned-off-by: Allan Stephens \u003callan.stephens@windriver.com\u003e\nSigned-off-by: Paul Gortmaker \u003cpaul.gortmaker@windriver.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "564e83b51a12b794e3f63a2d872398e1ee21616f",
      "tree": "6785882fa955a768c9859291d8b5a32826efe9a7",
      "parents": [
        "c2de58140a380172610b6a0f07f975abb2fbb311"
      ],
      "author": {
        "name": "Allan Stephens",
        "email": "allan.stephens@windriver.com",
        "time": "Tue Aug 17 11:00:15 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 17:31:59 2010 -0700"
      },
      "message": "tipc: Allow connect() to wait indefinitely\n\nCause a socket whose TIPC_CONN_TIMEOUT option is zero to wait\nindefinitely for a response to a connection request using connect().\nPreviously, specifying a timeout of 0 ms resulted in an immediate\ntimeout, which was inconsistent with the behavior specified by Posix\nfor a socket\u0027s receive and send timeout.\n\nSigned-off-by: Allan Stephens \u003callan.stephens@windriver.com\u003e\nSigned-off-by: Paul Gortmaker \u003cpaul.gortmaker@windriver.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "c2de58140a380172610b6a0f07f975abb2fbb311",
      "tree": "1eb8d0c85ed3558dbd7fe4d2e1a5fb45c04f8e0e",
      "parents": [
        "76ae0d71d839b365faa7fdca0eec85a6d1a20d95"
      ],
      "author": {
        "name": "Allan Stephens",
        "email": "allan.stephens@windriver.com",
        "time": "Tue Aug 17 11:00:14 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 17:31:58 2010 -0700"
      },
      "message": "tipc: Minor enhancements to name table display format\n\nEliminate printing of dashes after name table column headers\n(to adhere more closely to the standard format used in tipc-config),\nand simplify name table display logic using array lookups rather\nthan if-then-else logic.\n\nSigned-off-by: Allan Stephens \u003callan.stephens@windriver.com\u003e\nSigned-off-by: Paul Gortmaker \u003cpaul.gortmaker@windriver.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "76ae0d71d839b365faa7fdca0eec85a6d1a20d95",
      "tree": "d312821b3933522f18241eb313302fe8d723780f",
      "parents": [
        "96d841b7038b8091af3530a008793f5577337d3a"
      ],
      "author": {
        "name": "Allan Stephens",
        "email": "allan.stephens@windriver.com",
        "time": "Tue Aug 17 11:00:12 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 17:31:57 2010 -0700"
      },
      "message": "tipc: Optimize tipc_node_has_active_links()\n\nEliminate unnecessary checking for null node pointer and redundant\ncheck of second active link array entry.\n\nSigned-off-by: Allan Stephens \u003callan.stephens@windriver.com\u003e\nSigned-off-by: Paul Gortmaker \u003cpaul.gortmaker@windriver.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "96d841b7038b8091af3530a008793f5577337d3a",
      "tree": "6e6ebe6d23c37ccde58879a5effcc8e9626f783d",
      "parents": [
        "0048b826afae7c47afdc47c3854707581cafe3d8"
      ],
      "author": {
        "name": "Allan Stephens",
        "email": "allan.stephens@windriver.com",
        "time": "Tue Aug 17 11:00:11 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 17:31:56 2010 -0700"
      },
      "message": "tipc: Remove per-connection sequence number logic\n\nRemove validation of the per-connection sequence numbers on routable\nconnections, since routable connections are not supported by TIPC.\n\nSigned-off-by: Allan Stephens \u003callan.stephens@windriver.com\u003e\nSigned-off-by: Paul Gortmaker \u003cpaul.gortmaker@windriver.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "0048b826afae7c47afdc47c3854707581cafe3d8",
      "tree": "72259c47f6e75c669a106b35bd1597a1b54b22d3",
      "parents": [
        "5b1f7bdeb698547cc319c7a302a5acf585227a92"
      ],
      "author": {
        "name": "Allan Stephens",
        "email": "allan.stephens@windriver.com",
        "time": "Tue Aug 17 11:00:10 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 17:31:55 2010 -0700"
      },
      "message": "tipc: Fix bug in broadcast link transmit statistics computation\n\nModify TIPC\u0027s broadcast link so that it counts each piece of a\nfragmented message individually, rather than as treating the group\nas a single message.  This ensures that proper correlation of sent\nand received traffic can be done when the broadcast link statistics\nare displayed, and is consistent with the way fragments are counted\nby TIPC\u0027s unicast links.\n\nSigned-off-by: Allan Stephens \u003callan.stephens@windriver.com\u003e\nSigned-off-by: Paul Gortmaker \u003cpaul.gortmaker@windriver.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "5b1f7bdeb698547cc319c7a302a5acf585227a92",
      "tree": "1b86f815e592ead732320574b7a047ccd74e86db",
      "parents": [
        "7e3e5d0950559d1118dccbdff3c765fffcf04fd5"
      ],
      "author": {
        "name": "Allan Stephens",
        "email": "allan.stephens@windriver.com",
        "time": "Tue Aug 17 11:00:09 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 17:31:55 2010 -0700"
      },
      "message": "tipc: Fix premature broadcast advertisement by sending node\n\nPrevent a TIPC node from sending out a LINK_STATE message\nadvertising a broadcast message that it is in the process\nof sending, but has not yet actually sent.  Previously, it was\npossible for a link timeout to occur in between the time the\nbroadcast link updated its \"last message sent\" counter and the\ntime the broadcast message was passed to the broadcast bearer\nfor transmission.  This ensures that the code which issues\nthe LINK_STATE message isn\u0027t informed of the new message until\nthe broadcast bearer has had a chance to send it.\n\nNote: The \"last message sent\" value is stored in the \"fsm_msg_count\"\nfield of the link structure used by the broadcast link.  Since the\nbroadcast link doesn\u0027t utilize the normal link FSM, this field can\nbe re-used rather than adding a new field to the broadcast link.\n\nSigned-off-by: Allan Stephens \u003callan.stephens@windriver.com\u003e\nSigned-off-by: Paul Gortmaker \u003cpaul.gortmaker@windriver.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "7e3e5d0950559d1118dccbdff3c765fffcf04fd5",
      "tree": "9741b0dcae188721790b9f384e3b7d8d518951b5",
      "parents": [
        "b02b69c8a403859ec72090742727e853d606a325"
      ],
      "author": {
        "name": "Allan Stephens",
        "email": "allan.stephens@windriver.com",
        "time": "Tue Aug 17 11:00:08 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 17:31:54 2010 -0700"
      },
      "message": "tipc: Prevent crash when broadcast link cannot send to all nodes\n\nAllow TIPC\u0027s broadcast link to continue operation when it is unable\nto send a message to all nodes in the cluster.  Previously, the\nbroadcast link attempted to put the broadcast pseudo-bearer into a\nblocked state; however, this caused a crash because the associated\nbearer structure is only partially initialized.  Further\ninvestigation has revealed some conceptual problems with blocking\nthe pseudo-bearer; consequently, this functionality has been\ndisabled for the time being and the undelivered message is\neventually resent by the broadcast link\u0027s existing message\nretransmission mechanism (if possible).\n\nSigned-off-by: Allan Stephens \u003callan.stephens@windriver.com\u003e\nSigned-off-by: Paul Gortmaker \u003cpaul.gortmaker@windriver.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "b02b69c8a403859ec72090742727e853d606a325",
      "tree": "6c46c41cc46fde8ea8a45d6265a3381556e0f84e",
      "parents": [
        "f662c07058f7e6365ae65080d772f9122f6f50a9"
      ],
      "author": {
        "name": "Allan Stephens",
        "email": "allan.stephens@windriver.com",
        "time": "Tue Aug 17 11:00:07 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 17:31:53 2010 -0700"
      },
      "message": "tipc: Check for disabled bearer when processing incoming messages\n\nAdd a check to tipc_recv_msg() to ensure it discards messages\narriving on a newly disabled bearer.  This is needed to deal with a\nrace condition that can arise if the bearer is in the midst of being\ndisabled when it receives a message.  Performing the check after\ntipc_net_lock has been taken ensures that TIPC\u0027s bearers are in a\nstable state while the message is being processed.\n\nSigned-off-by: Allan Stephens \u003callan.stephens@windriver.com\u003e\nSigned-off-by: Paul Gortmaker \u003cpaul.gortmaker@windriver.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "f662c07058f7e6365ae65080d772f9122f6f50a9",
      "tree": "17a8ad3e5e432998d42b25891569f17025cf2b41",
      "parents": [
        "35997e3157eba16c6124d440bdf9272087129b2a"
      ],
      "author": {
        "name": "Allan Stephens",
        "email": "allan.stephens@windriver.com",
        "time": "Tue Aug 17 11:00:06 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 17:31:53 2010 -0700"
      },
      "message": "tipc: correct problems with misleading flags returned using poll()\n\nPrevent TIPC from incorrectly setting returned flags to poll()\nin the following cases:\n\n- an unconnected socket no longer indicates that it is always readable\n\n- an unconnected, connecting, or listening socket no longer indicates\n  that it is always writable\n\nSigned-off-by: Allan Stephens \u003callan.stephens@windriver.com\u003e\nSigned-off-by: Paul Gortmaker \u003cpaul.gortmaker@windriver.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "35997e3157eba16c6124d440bdf9272087129b2a",
      "tree": "bc12850561585be7937778852bbb81655a053aee",
      "parents": [
        "3720d40b201fe82dce1d8a64a31bfbf49c221771"
      ],
      "author": {
        "name": "Allan Stephens",
        "email": "allan.stephens@windriver.com",
        "time": "Tue Aug 17 11:00:05 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 17:31:52 2010 -0700"
      },
      "message": "tipc: Provide correct error code for unsupported connect() operation\n\nModify TIPC to return EOPNOTSUPP if an application attempts to perform\n a non-blocking connect() operation, which is not supported by TIPC.\n\nSigned-off-by: Allan Stephens \u003callan.stephens@windriver.com\u003e\nSigned-off-by: Paul Gortmaker \u003cpaul.gortmaker@windriver.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "3720d40b201fe82dce1d8a64a31bfbf49c221771",
      "tree": "f20f2d614a0949b25a27004ecf9abe7c8dd6794d",
      "parents": [
        "f81380925209bc60732a57eef41ab440c056aacf"
      ],
      "author": {
        "name": "Florian Westphal",
        "email": "fw@strlen.de",
        "time": "Tue Aug 17 11:00:04 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 17:31:51 2010 -0700"
      },
      "message": "tipc: add SO_RCVLOWAT support to stream socket receive path\n\nAdd support for the SO_RCVLOWAT socket option to TIPC\u0027s stream socket\ntype.\n\nSigned-off-by: Florian Westphal \u003cfw@strlen.de\u003e\nSigned-off-by: Allan Stephens \u003callan.stephens@windriver.com\u003e\nSigned-off-by: Paul Gortmaker \u003cpaul.gortmaker@windriver.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "f81380925209bc60732a57eef41ab440c056aacf",
      "tree": "d72c28aa2d101acacc733f41678a1764885b74f9",
      "parents": [
        "24763d80fbb45aaf477d53c2203c929f6c41b5fc"
      ],
      "author": {
        "name": "Anders Kaseorg",
        "email": "[andersk@ksplice.com]",
        "time": "Tue Aug 17 11:00:03 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 17:31:51 2010 -0700"
      },
      "message": "tipc: Fix log buffer memory leak if initialization fails\n\nMoves log buffer cleanup into tipc_core_stop() so that memory allocated\nfor the log buffer is freed if tipc_core_start() is unsuccessful.\n\nSigned-off-by: Anders Kaseorg \u003candersk@ksplice.com\u003e\nSigned-off-by: Allan Stephens \u003callan.stephens@windriver.com\u003e\nSigned-off-by: Paul Gortmaker \u003cpaul.gortmaker@windriver.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "24763d80fbb45aaf477d53c2203c929f6c41b5fc",
      "tree": "1d1ae83c08b04b3f22153bfc1a611ce3511c7638",
      "parents": [
        "8dec32cc421864702912c4341934fe0c737a9798"
      ],
      "author": {
        "name": "Sucheta Chakraborty",
        "email": "sucheta.chakraborty@qlogic.com",
        "time": "Tue Aug 17 00:34:25 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 03:59:49 2010 -0700"
      },
      "message": "qlcnic: turn off lro when rxcsum is disabled.\n\no Also dont allow lro to be turn on, if rx csum is disabled\n\nSigned-off-by: Sucheta Chakraborty \u003csucheta.chakraborty@qlogic.com\u003e\nSigned-off-by: Amit Kumar Salecha \u003camit.salecha@qlogic.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "8dec32cc421864702912c4341934fe0c737a9798",
      "tree": "dbf48881cd59c393f735bd5cdb4cf23365f346be",
      "parents": [
        "69324275de07584fbd0e77a517f9b43e82eaf9d6"
      ],
      "author": {
        "name": "Sony Chacko",
        "email": "sony.chacko@qlogic.com",
        "time": "Tue Aug 17 00:34:24 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 03:59:48 2010 -0700"
      },
      "message": "qlcnic: fix link diag test\n\no Give sufficient time for all makes of PHY modules\n  to establish the link after loopback test.\no Perform online test before offline test.\n\nSigned-off-by: Sony Chacko \u003csony.chacko@qlogic.com\u003e\nSigned-off-by: Amit Kumar Salecha \u003camit.salecha@qlogic.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "69324275de07584fbd0e77a517f9b43e82eaf9d6",
      "tree": "849c5cd99d294fc199274890f8a42370fef52da5",
      "parents": [
        "b6021212291d1eb1e7d1245bbd8c53bcbe2355d7"
      ],
      "author": {
        "name": "Sony Chacko",
        "email": "sony.chacko@qlogic.com",
        "time": "Tue Aug 17 00:34:23 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 03:59:48 2010 -0700"
      },
      "message": "qlcnic: fix link status message\n\nDisplay interface name with netdev_info() for link status message.\n\nSigned-off-by: Sony Chacko \u003csony.chacko@qlogic.com\u003e\nSigned-off-by: Amit Kumar Salecha \u003camit.salecha@qlogic.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "b6021212291d1eb1e7d1245bbd8c53bcbe2355d7",
      "tree": "bc10d1a36a46aaa8e1646a644e77ecafa88a0f14",
      "parents": [
        "ecd7d31038e2e0e95b4596eec021e02ba67a0a37"
      ],
      "author": {
        "name": "Amit Kumar Salecha",
        "email": "amit.salecha@qlogic.com",
        "time": "Tue Aug 17 00:34:22 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 03:59:47 2010 -0700"
      },
      "message": "qlcnic: add eswitch statistics support\n\nAdding eswitch statistics support. User can get\nwhole eswitch stats or stats of func belong to that eswitch.\n\nAdded:\no command to get statistics of eswitch and function.\no sysfs support to export eswitch and func statatistics.\n\nSigned-off-by: Amit Kumar Salecha \u003camit.salecha@qlogic.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "ecd7d31038e2e0e95b4596eec021e02ba67a0a37",
      "tree": "6a4060dc6492fd655bce9e1b30126cb7b1fb7271",
      "parents": [
        "3c4b23b1be212d1b8494655182c0d4cef0a37be3"
      ],
      "author": {
        "name": "Rajesh Borundia",
        "email": "rajesh.borundia@qlogic.com",
        "time": "Tue Aug 17 00:34:21 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 03:59:46 2010 -0700"
      },
      "message": "qlcnic: fix for setting function modes\n\nfunction modes was not working with CNA device, in CNA mode\nother function(FCOE) can be enabled before nic.\n\nSigned-off-by: Rajesh Borundia \u003crajesh.borundia@qlogic.com\u003e\nSigned-off-by: Amit Kumar Salecha \u003camit.salecha@qlogic.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "3c4b23b1be212d1b8494655182c0d4cef0a37be3",
      "tree": "9bf2241d05e19d5ed8b289fca4fb976a66ac3a69",
      "parents": [
        "933fce12a33f219e9021a9ab7b2f9cff94fa8b0e"
      ],
      "author": {
        "name": "Amit Kumar Salecha",
        "email": "amit.salecha@qlogic.com",
        "time": "Tue Aug 17 00:34:20 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 03:59:46 2010 -0700"
      },
      "message": "qlcnic: device state management fixes for virtual func\n\no NPAR state should be set to operationl by Mangement function only.\no NPAR state should be set to non operational before device reset.\no VF function should wait for NPAR state to be operational.\n\nSigned-off-by: Amit Kumar Salecha \u003camit.salecha@qlogic.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "933fce12a33f219e9021a9ab7b2f9cff94fa8b0e",
      "tree": "36e121ed35643e9dab37ade7a1d7569e7383ba9b",
      "parents": [
        "1f76da51f58eda3a027e71e98404b80fcad2d80d"
      ],
      "author": {
        "name": "Amit Kumar Salecha",
        "email": "amit.salecha@qlogic.com",
        "time": "Tue Aug 17 00:34:19 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 03:59:45 2010 -0700"
      },
      "message": "qlcnic: fix aer for virtual func\n\nVirtual function are not privilge to initialize firmware.\n\nSigned-off-by: Amit Kumar Salecha \u003camit.salecha@qlogic.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "1f76da51f58eda3a027e71e98404b80fcad2d80d",
      "tree": "c3d308fa44541cbfe7e53a6f596bfe450bc7ba46",
      "parents": [
        "832177901a61aeda1f2122e323c39881ec84af65"
      ],
      "author": {
        "name": "Roopa Prabhu",
        "email": "roprabhu@cisco.com",
        "time": "Tue Aug 10 18:55:26 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 02:32:59 2010 -0700"
      },
      "message": "enic: Mark intr_timer in vnic_enet_config as deprecated\n\nSigned-off-by: Scott Feldman \u003cscofeldm@cisco.com\u003e\nSigned-off-by: Roopa Prabhu \u003croprabhu@cisco.com\u003e\nSigned-off-by: Vasanthy Kolluri \u003cvkolluri@cisco.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "832177901a61aeda1f2122e323c39881ec84af65",
      "tree": "4df41abbabfefc6fcd9eb32c389f36a12a8fd4f2",
      "parents": [
        "ce16cc02f9fe21d4e42116305e5ea9d12e51635d"
      ],
      "author": {
        "name": "Roopa Prabhu",
        "email": "roprabhu@cisco.com",
        "time": "Tue Aug 10 18:55:20 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 02:32:58 2010 -0700"
      },
      "message": "enic: Check if rq/wq buf not NULL before freeing them\n\nSigned-off-by: Scott Feldman \u003cscofeldm@cisco.com\u003e\nSigned-off-by: Roopa Prabhu \u003croprabhu@cisco.com\u003e\nSigned-off-by: Vasanthy Kolluri \u003cvkolluri@cisco.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "ce16cc02f9fe21d4e42116305e5ea9d12e51635d",
      "tree": "6fe4a3b48ab1ec0bb10c2c615cddb680cefc96bf",
      "parents": [
        "7c46835e4845fed5f348f5845a3a6165874e2f05"
      ],
      "author": {
        "name": "Roopa Prabhu",
        "email": "roprabhu@cisco.com",
        "time": "Tue Aug 10 18:55:15 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 02:32:58 2010 -0700"
      },
      "message": "enic: Clean up: remove enic_dev_stats_clear\n\nRemove function enic_dev_stats_clear and its reference in enic device\ninit code. Firmware clears device stats on device open. So, no need for\nthe driver to do it again.\n\nSigned-off-by: Scott Feldman \u003cscofeldm@cisco.com\u003e\nSigned-off-by: Roopa Prabhu \u003croprabhu@cisco.com\u003e\nSigned-off-by: Vasanthy Kolluri \u003cvkolluri@cisco.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "7c46835e4845fed5f348f5845a3a6165874e2f05",
      "tree": "7ddc9fb2de9ba71a8904452160685a74c5bd8cff",
      "parents": [
        "ae94abe1687871d9772494b3d378c6d3decd7f75"
      ],
      "author": {
        "name": "Roopa Prabhu",
        "email": "roprabhu@cisco.com",
        "time": "Tue Aug 10 18:55:10 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 02:32:58 2010 -0700"
      },
      "message": "enic: Use offsetof macro in vic tlv length calculation\n\nSigned-off-by: Scott Feldman \u003cscofeldm@cisco.com\u003e\nSigned-off-by: Roopa Prabhu \u003croprabhu@cisco.com\u003e\nSigned-off-by: Vasanthy Kolluri \u003cvkolluri@cisco.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "ae94abe1687871d9772494b3d378c6d3decd7f75",
      "tree": "281cbbd00c476444d02d8d9543c0e290644b9363",
      "parents": [
        "90cf0b53d74ebca4f62d865ae39d21ed3bdbf877"
      ],
      "author": {
        "name": "Roopa Prabhu",
        "email": "roprabhu@cisco.com",
        "time": "Tue Aug 10 18:55:05 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 02:32:57 2010 -0700"
      },
      "message": "enic: Add new firmware devcmds\n\nAdd new firmware devcmds:  CMD_PROXY_BY_INDEX, CMD_CONFIG_INFO_GET\n\nSigned-off-by: Scott Feldman \u003cscofeldm@cisco.com\u003e\nSigned-off-by: Roopa Prabhu \u003croprabhu@cisco.com\u003e\nSigned-off-by: Vasanthy Kolluri \u003cvkolluri@cisco.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "90cf0b53d74ebca4f62d865ae39d21ed3bdbf877",
      "tree": "ddac723d5e1fe07d7aa45768e2dc38293612fb9b",
      "parents": [
        "294dab25e7068f9df80af53aceed332f9621c970"
      ],
      "author": {
        "name": "Roopa Prabhu",
        "email": "roprabhu@cisco.com",
        "time": "Tue Aug 10 18:55:00 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 02:32:56 2010 -0700"
      },
      "message": "enic: Add support for firmware management device\n\nThis patch adds support for firmware management device in enic driver.\nA management device is a virtual PCIe device that firmware can present\nto the host as its management endpoint. It provides the interface between\nthe host and adapter firmware for all management operations.\n\nSigned-off-by: Scott Feldman \u003cscofeldm@cisco.com\u003e\nSigned-off-by: Roopa Prabhu \u003croprabhu@cisco.com\u003e\nSigned-off-by: Vasanthy Kolluri \u003cvkolluri@cisco.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "294dab25e7068f9df80af53aceed332f9621c970",
      "tree": "c43af909c0a4992f6f2050a911cbc913c81631e1",
      "parents": [
        "559764d1996e6ae769feb07918687b0806f2d975"
      ],
      "author": {
        "name": "Roopa Prabhu",
        "email": "roprabhu@cisco.com",
        "time": "Tue Aug 10 18:54:55 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 02:32:56 2010 -0700"
      },
      "message": "enic: Add set mac address\n\nThis patch implements the ndo_set_mac_address netdev operation for an enic device\n\nSigned-off-by: Scott Feldman \u003cscofeldm@cisco.com\u003e\nSigned-off-by: Roopa Prabhu \u003croprabhu@cisco.com\u003e\nSigned-off-by: Vasanthy Kolluri \u003cvkolluri@cisco.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "559764d1996e6ae769feb07918687b0806f2d975",
      "tree": "903eeb02dbb6964f55fc19afebd10d6fd7513f2e",
      "parents": [
        "264fd77a67f1a4fe102477d824014459c7ff61f3"
      ],
      "author": {
        "name": "Florian Fainelli",
        "email": "florian@openwrt.org",
        "time": "Sun Aug 08 10:09:39 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 02:32:55 2010 -0700"
      },
      "message": "cpmac: fix all checkpatch errors and warnings\n\nThis patches fixes a couple of checkpatch warnings and errors:\n- lines over 80 columns\n- printk() instead of pr_cont()\n- assignments in tests (if ((foo \u003d\u003d bar())))\n\nSigned-off-by: Florian Fainelli \u003cflorian@openwrt.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "264fd77a67f1a4fe102477d824014459c7ff61f3",
      "tree": "f54820d2e3eed7bf95a3221ac9c950e4f6e76d9d",
      "parents": [
        "2154c704c7240379fae4633359e06e8df875c1fd"
      ],
      "author": {
        "name": "Tobias Klauser",
        "email": "tklauser@distanz.ch",
        "time": "Mon Aug 09 05:04:34 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 02:32:55 2010 -0700"
      },
      "message": "am79c961a: Use net_device_stats from struct net_device\n\nstruct net_device has its own struct net_device_stats member, so we can\nuse this one instead of a private copy in the dev_priv struct.\n\nCc: Kulikov Vasiliy \u003csegooon@gmail.com\u003e\nSigned-off-by: Tobias Klauser \u003ctklauser@distanz.ch\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "2154c704c7240379fae4633359e06e8df875c1fd",
      "tree": "43d3cf7419f91736e25434b5fe0c1593d09cbbf0",
      "parents": [
        "7136e11e0cf520ab3fc7b55a20e60c2ec5ea88e1"
      ],
      "author": {
        "name": "Florian Fainelli",
        "email": "florian@openwrt.org",
        "time": "Sun Aug 08 10:08:44 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 02:32:54 2010 -0700"
      },
      "message": "r6040: fix all checkpatch errors and warnings\n\nThis patch fixes a couple of errors and warnings spotted by checkpatch.pl:\n- some lines were over 80 columns\n- there were some whitespaces left\n\nThe call to printk is now replaced by a call to pr_info and the log-level\nincluded in the driver version is now removed, so there are no longer false\npositives on this warning.\n\nSigned-off-by: Florian Fainelli \u003cflorian@openwrt.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "7136e11e0cf520ab3fc7b55a20e60c2ec5ea88e1",
      "tree": "7d52e07cbdfdca5c697fdac0768c05ac778048cb",
      "parents": [
        "ea0a52c4fd8eb2c8e0586b939c484e160fb4a721"
      ],
      "author": {
        "name": "Joe Perches",
        "email": "joe@perches.com",
        "time": "Sun Aug 08 04:50:36 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 02:32:54 2010 -0700"
      },
      "message": "pcnet_cs: Use pr_fmt and pr_\u003clevel\u003e\n\nIt looks as if the printks in get_ax88190 are\nincorrect and were duplicated and superceded by a\ntest in pcnet_config, so I removed them.\n\nChanged the level of the ax88190 test to KERN_NOTICE\nto match the other message styles in pcnet_config.\n\nCompiled but untested.\n\nSigned-off-by: Joe Perches \u003cjoe@perches.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "ea0a52c4fd8eb2c8e0586b939c484e160fb4a721",
      "tree": "b397eba0f19359684250e0cea4e10c6e405ae316",
      "parents": [
        "01414802054c382072b6cb9a1bdc6e243c74b2d5"
      ],
      "author": {
        "name": "Wolfram Sang",
        "email": "w.sang@pengutronix.de",
        "time": "Sun Aug 08 02:32:05 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 02:32:53 2010 -0700"
      },
      "message": "pcnet_cs: Use proper netdev_*-printouts\n\nTo prevent broken messages like:\n\n[  204.024291] eth%d: pcnet_reset_8390() did not complete.\n\nSigned-off-by: Wolfram Sang \u003cw.sang@pengutronix.de\u003e\nCc: Dominik Brodowski \u003clinux@dominikbrodowski.net\u003e\nCc: Joe Perches \u003cjoe@perches.com\u003e\nCc: David Miller \u003cdavem@davemloft.net\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "01414802054c382072b6cb9a1bdc6e243c74b2d5",
      "tree": "f09b05eb9fff16a69d83ec28653992d1bae8d74c",
      "parents": [
        "bb8a10bbd10a45db0eb45bac520489bdbc0917ef"
      ],
      "author": {
        "name": "Ben Hutchings",
        "email": "bhutchings@solarflare.com",
        "time": "Tue Aug 17 02:31:15 2010 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Aug 17 02:31:15 2010 -0700"
      },
      "message": "ethtool: Provide a default implementation of ethtool_ops::get_drvinfo\n\nThe driver name and bus address for a net_device can normally be found\nthrough the driver model now.  Instead of requiring drivers to provide\nthis information redundantly through the ethtool_ops::get_drvinfo\noperation, use the driver model to do so if the driver does not define\nthe operation.  Since ETHTOOL_GDRVINFO no longer requires the driver\nto implement any operations, do not require net_device::ethtool_ops to\nbe set either.\n\nRemove implementations of get_drvinfo and ethtool_ops that provide\nonly this information.\n\nSigned-off-by: Ben Hutchings \u003cbhutchings@solarflare.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "bb8a10bbd10a45db0eb45bac520489bdbc0917ef",
      "tree": "f489756f44d1666d60bd4d7779de409b7d8d83cc",
      "parents": [
        "f7df0b8d924ad2f39852ea397d39a51fbb955212"
      ],
      "author": {
        "name": "Julia Lawall",
        "email": "julia@diku.dk",
        "time": "Thu Aug 05 10:29:38 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Aug 16 21:06:30 2010 -0700"
      },
      "message": "net/decnet: Adjust confusing if indentation\n\nIndent the branch of an if.\n\nThe semantic match that finds this problem is as follows:\n(http://coccinelle.lip6.fr/)\n\n// \u003csmpl\u003e\n@r disable braces4@\nposition p1,p2;\nstatement S1,S2;\n@@\n\n(\nif (...) { ... }\n|\nif (...) S1@p1 S2@p2\n)\n\n@script:python@\np1 \u003c\u003c r.p1;\np2 \u003c\u003c r.p2;\n@@\n\nif (p1[0].column \u003d\u003d p2[0].column):\n  cocci.print_main(\"branch\",p1)\n  cocci.print_secs(\"after\",p2)\n// \u003c/smpl\u003e\n\nSigned-off-by: Julia Lawall \u003cjulia@diku.dk\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "f7df0b8d924ad2f39852ea397d39a51fbb955212",
      "tree": "9d443db5466bb6857ce82d4a12ba74222814a3ec",
      "parents": [
        "9e1634a734bdd2dac5687f57dd427bef083e4659"
      ],
      "author": {
        "name": "Julia Lawall",
        "email": "julia@diku.dk",
        "time": "Thu Aug 05 10:29:19 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Aug 16 21:06:30 2010 -0700"
      },
      "message": "drivers/isdn: Adjust confusing if indentation\n\nIn hisax/hfc_sx.c and mISDN/l1oip_core.c, the code after the if is\noutdented so that it is not aligned with the if branch.\n\nIn mISDN/dsp_cmx.c, an else is added between the original if branch and the\nfollowing statement, in line with the code following it.  Without this\nchange, the first assignment to dsp-\u003erx_W has no useful effect.\n\nThe semantic match that finds this problem is as follows:\n(http://coccinelle.lip6.fr/)\n\n// \u003csmpl\u003e\n@r disable braces4@\nposition p1,p2;\nstatement S1,S2;\n@@\n\n(\nif (...) { ... }\n|\nif (...) S1@p1 S2@p2\n)\n\n@script:python@\np1 \u003c\u003c r.p1;\np2 \u003c\u003c r.p2;\n@@\n\nif (p1[0].column \u003d\u003d p2[0].column):\n  cocci.print_main(\"branch\",p1)\n  cocci.print_secs(\"after\",p2)\n// \u003c/smpl\u003e\n\nSigned-off-by: Julia Lawall \u003cjulia@diku.dk\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "9e1634a734bdd2dac5687f57dd427bef083e4659",
      "tree": "5d85e577d497ad820fb7f1dc13beea4127170b8f",
      "parents": [
        "1f1d47ef4779fb45e8cccde6f31c76c3cdabbec1"
      ],
      "author": {
        "name": "Julia Lawall",
        "email": "julia@diku.dk",
        "time": "Thu Aug 05 10:28:31 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Aug 16 21:06:29 2010 -0700"
      },
      "message": "drivers/net: Adjust confusing if indentation\n\nOutdent the code following the if.\n\nThe semantic match that finds this problem is as follows:\n(http://coccinelle.lip6.fr/)\n\n// \u003csmpl\u003e\n@r disable braces4@\nposition p1,p2;\nstatement S1,S2;\n@@\n\n(\nif (...) { ... }\n|\nif (...) S1@p1 S2@p2\n)\n\n@script:python@\np1 \u003c\u003c r.p1;\np2 \u003c\u003c r.p2;\n@@\n\nif (p1[0].column \u003d\u003d p2[0].column):\n  cocci.print_main(\"branch\",p1)\n  cocci.print_secs(\"after\",p2)\n// \u003c/smpl\u003e\n\nSigned-off-by: Julia Lawall \u003cjulia@diku.dk\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "1f1d47ef4779fb45e8cccde6f31c76c3cdabbec1",
      "tree": "041aaa3071b38536a83b2d20f9a28fea17d1ccde",
      "parents": [
        "cc81735e8099deaed7436418f6d83a98be2c2101"
      ],
      "author": {
        "name": "Julia Lawall",
        "email": "julia@diku.dk",
        "time": "Thu Aug 05 10:28:12 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Aug 16 21:06:29 2010 -0700"
      },
      "message": "drivers/net/hamradio: Adjust confusing if indentation\n\nIndent the branch of an if.\n\nThe semantic match that finds this problem is as follows:\n(http://coccinelle.lip6.fr/)\n\n// \u003csmpl\u003e\n@r disable braces4@\nposition p1,p2;\nstatement S1,S2;\n@@\n\n(\nif (...) { ... }\n|\nif (...) S1@p1 S2@p2\n)\n\n@script:python@\np1 \u003c\u003c r.p1;\np2 \u003c\u003c r.p2;\n@@\n\nif (p1[0].column \u003d\u003d p2[0].column):\n  cocci.print_main(\"branch\",p1)\n  cocci.print_secs(\"after\",p2)\n// \u003c/smpl\u003e\n\nSigned-off-by: Julia Lawall \u003cjulia@diku.dk\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "cc81735e8099deaed7436418f6d83a98be2c2101",
      "tree": "694e38698aec71a836696ee47ef0fbcd1f552933",
      "parents": [
        "2145f1afc6b2abe97d983e90c53a1dc17e2da831"
      ],
      "author": {
        "name": "Julia Lawall",
        "email": "julia@diku.dk",
        "time": "Thu Aug 05 10:26:38 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Aug 16 21:06:28 2010 -0700"
      },
      "message": "drivers/net/bnx2x: Adjust confusing if indentation\n\nOutdent the code following the if.\n\nThe semantic match that finds this problem is as follows:\n(http://coccinelle.lip6.fr/)\n\n// \u003csmpl\u003e\n@r disable braces4@\nposition p1,p2;\nstatement S1,S2;\n@@\n\n(\nif (...) { ... }\n|\nif (...) S1@p1 S2@p2\n)\n\n@script:python@\np1 \u003c\u003c r.p1;\np2 \u003c\u003c r.p2;\n@@\n\nif (p1[0].column \u003d\u003d p2[0].column):\n  cocci.print_main(\"branch\",p1)\n  cocci.print_secs(\"after\",p2)\n// \u003c/smpl\u003e\n\nSigned-off-by: Julia Lawall \u003cjulia@diku.dk\u003e\nAcked-by: Eilon Greenstein \u003ceilong@broadcom.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "2145f1afc6b2abe97d983e90c53a1dc17e2da831",
      "tree": "397a915c55a5584219003c7cd1356b891766633a",
      "parents": [
        "6f74dbbc29df6f53bc0deaa8e5a6ff81a4f91534"
      ],
      "author": {
        "name": "Julia Lawall",
        "email": "julia@diku.dk",
        "time": "Thu Aug 05 10:26:20 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Aug 16 21:06:28 2010 -0700"
      },
      "message": "drivers/net: Adjust confusing if indentation\n\nOutdent the code following the if.\n\nThe semantic match that finds this problem is as follows:\n(http://coccinelle.lip6.fr/)\n\n// \u003csmpl\u003e\n@r disable braces4@\nposition p1,p2;\nstatement S1,S2;\n@@\n\n(\nif (...) { ... }\n|\nif (...) S1@p1 S2@p2\n)\n\n@script:python@\np1 \u003c\u003c r.p1;\np2 \u003c\u003c r.p2;\n@@\n\nif (p1[0].column \u003d\u003d p2[0].column):\n  cocci.print_main(\"branch\",p1)\n  cocci.print_secs(\"after\",p2)\n// \u003c/smpl\u003e\n\nSigned-off-by: Julia Lawall \u003cjulia@diku.dk\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "6f74dbbc29df6f53bc0deaa8e5a6ff81a4f91534",
      "tree": "e2ab9dff2d523cd5db4f3a8baee81c6b4bb08840",
      "parents": [
        "022484c17253aea84aa2603068ea065ca59bb5e5"
      ],
      "author": {
        "name": "Julia Lawall",
        "email": "julia@diku.dk",
        "time": "Thu Aug 05 10:25:24 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Aug 16 21:06:27 2010 -0700"
      },
      "message": "drivers/atm: Adjust confusing if indentation\n\nIndent the branch of an if.\n\nThe semantic match that finds this problem is as follows:\n(http://coccinelle.lip6.fr/)\n\n// \u003csmpl\u003e\n@r disable braces4@\nposition p1,p2;\nstatement S1,S2;\n@@\n\n(\nif (...) { ... }\n|\nif (...) S1@p1 S2@p2\n)\n\n@script:python@\np1 \u003c\u003c r.p1;\np2 \u003c\u003c r.p2;\n@@\n\nif (p1[0].column \u003d\u003d p2[0].column):\n  cocci.print_main(\"branch\",p1)\n  cocci.print_secs(\"after\",p2)\n// \u003c/smpl\u003e\n\nSigned-off-by: Julia Lawall \u003cjulia@diku.dk\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "022484c17253aea84aa2603068ea065ca59bb5e5",
      "tree": "0c1c047589aaf2eefd0ef564e684fc54ef905500",
      "parents": [
        "9b0f1d85968334c9bbe8675a0fc676c6e15ba577"
      ],
      "author": {
        "name": "Julia Lawall",
        "email": "julia@diku.dk",
        "time": "Thu Aug 05 10:22:20 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Aug 16 21:06:26 2010 -0700"
      },
      "message": "drivers/net: Adjust confusing if indentation\n\nIn amd8111e.c, indent the branch of an if.\nIn eepro.c, outdent the code following the if.\n\nThe semantic match that finds this problem is as follows:\n(http://coccinelle.lip6.fr/)\n\n// \u003csmpl\u003e\n@r disable braces4@\nposition p1,p2;\nstatement S1,S2;\n@@\n\n(\nif (...) { ... }\n|\nif (...) S1@p1 S2@p2\n)\n\n@script:python@\np1 \u003c\u003c r.p1;\np2 \u003c\u003c r.p2;\n@@\n\nif (p1[0].column \u003d\u003d p2[0].column):\n  cocci.print_main(\"branch\",p1)\n  cocci.print_secs(\"after\",p2)\n// \u003c/smpl\u003e\n\nSigned-off-by: Julia Lawall \u003cjulia@diku.dk\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "9b0f1d85968334c9bbe8675a0fc676c6e15ba577",
      "tree": "579b8ec2ce56e33b546d0cb6003041d59a8bc803",
      "parents": [
        "510a05edce43ec29ceb105677ad8e6ff58f02c72"
      ],
      "author": {
        "name": "Julia Lawall",
        "email": "julia@diku.dk",
        "time": "Thu Aug 05 10:22:00 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Aug 16 21:06:26 2010 -0700"
      },
      "message": "drivers/net/irda: Adjust confusing if indentation\n\nIndent the branch of an if.\n\nThe semantic match that finds this problem is as follows:\n(http://coccinelle.lip6.fr/)\n\n// \u003csmpl\u003e\n@r disable braces4@\nposition p1,p2;\nstatement S1,S2;\n@@\n\n(\nif (...) { ... }\n|\nif (...) S1@p1 S2@p2\n)\n\n@script:python@\np1 \u003c\u003c r.p1;\np2 \u003c\u003c r.p2;\n@@\n\nif (p1[0].column \u003d\u003d p2[0].column):\n  cocci.print_main(\"branch\",p1)\n  cocci.print_secs(\"after\",p2)\n// \u003c/smpl\u003e\n\nSigned-off-by: Julia Lawall \u003cjulia@diku.dk\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "510a05edce43ec29ceb105677ad8e6ff58f02c72",
      "tree": "2aebf21b04ad5b095b7bd4c51b47e8bdb22fbb7a",
      "parents": [
        "354c8e3104a8513dbbdc4dea1ffbefe714371e88"
      ],
      "author": {
        "name": "Julia Lawall",
        "email": "julia@diku.dk",
        "time": "Thu Aug 05 10:19:00 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Aug 16 21:06:26 2010 -0700"
      },
      "message": "net/atm: Adjust confusing if indentation\n\nOutdent the code following an if.\n\nThe semantic match that finds this problem is as follows:\n(http://coccinelle.lip6.fr/)\n\n// \u003csmpl\u003e\n@r disable braces4@\nposition p1,p2;\nstatement S1,S2;\n@@\n\n(\nif (...) { ... }\n|\nif (...) S1@p1 S2@p2\n)\n\n@script:python@\np1 \u003c\u003c r.p1;\np2 \u003c\u003c r.p2;\n@@\n\nif (p1[0].column \u003d\u003d p2[0].column):\n  cocci.print_main(\"branch\",p1)\n  cocci.print_secs(\"after\",p2)\n// \u003c/smpl\u003e\n\nSigned-off-by: Julia Lawall \u003cjulia@diku.dk\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "354c8e3104a8513dbbdc4dea1ffbefe714371e88",
      "tree": "133b58f7929710a203a9a160b6633a50917aabef",
      "parents": [
        "1565c7c1c4c8e931bdba66abc8aa6f141a406872"
      ],
      "author": {
        "name": "Julia Lawall",
        "email": "julia@diku.dk",
        "time": "Thu Aug 05 10:17:00 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Aug 16 21:06:25 2010 -0700"
      },
      "message": "drivers/net/wan: Adjust confusing if indentation\n\nIndent the branch of an if.\n\nThe semantic match that finds this problem is as follows:\n(http://coccinelle.lip6.fr/)\n\n// \u003csmpl\u003e\n@r disable braces4@\nposition p1,p2;\nstatement S1,S2;\n@@\n\n(\nif (...) { ... }\n|\nif (...) S1@p1 S2@p2\n)\n\n@script:python@\np1 \u003c\u003c r.p1;\np2 \u003c\u003c r.p2;\n@@\n\nif (p1[0].column \u003d\u003d p2[0].column):\n  cocci.print_main(\"branch\",p1)\n  cocci.print_secs(\"after\",p2)\n// \u003c/smpl\u003e\n\nSigned-off-by: Julia Lawall \u003cjulia@diku.dk\u003e\nAcked-by: Krzysztof Hałasa \u003ckhc@pm.waw.pl\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "1565c7c1c4c8e931bdba66abc8aa6f141a406872",
      "tree": "2e2f732e113faa24f4b0e7c804b37bf4283595c3",
      "parents": [
        "bfb564e7391340638afe4ad67744a8f3858e7566"
      ],
      "author": {
        "name": "Krishna Kumar",
        "email": "krkumar2@in.ibm.com",
        "time": "Wed Aug 04 06:15:59 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Aug 16 21:06:25 2010 -0700"
      },
      "message": "macvtap: Implement multiqueue for macvtap driver\n\nImplement multiqueue facility for macvtap driver. The idea is that\na macvtap device can be opened multiple times and the fd\u0027s can be\nused to register eg, as backend for vhost.\n\nSigned-off-by: Krishna Kumar \u003ckrkumar2@in.ibm.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "bfb564e7391340638afe4ad67744a8f3858e7566",
      "tree": "7f079d9c3f020d52efb555db414476c463584967",
      "parents": [
        "6891dd25d3f82e50979b27fde1980aa96320b975"
      ],
      "author": {
        "name": "Krishna Kumar",
        "email": "krkumar2@in.ibm.com",
        "time": "Wed Aug 04 06:15:52 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Aug 16 21:06:24 2010 -0700"
      },
      "message": "core: Factor out flow calculation from get_rps_cpu\n\nFactor out flow calculation code from get_rps_cpu, since other\nfunctions can use the same code.\n\nRevisions:\n\nv2 (Ben): Separate flow calcuation out and use in select queue.\nv3 (Arnd): Don\u0027t re-implement MIN.\nv4 (Changli): skb-\u003edata points to ethernet header in macvtap, and\n\tmake a fast path. Tested macvtap with this patch.\nv5 (Changli):\n\t- Cache skb-\u003erxhash in skb_get_rxhash\n\t- macvtap may not have pow(2) queues, so change code for\n\t  queue selection.\n    (Arnd):\n\t- Use first available queue if all fails.\n\nSigned-off-by: Krishna Kumar \u003ckrkumar2@in.ibm.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "6891dd25d3f82e50979b27fde1980aa96320b975",
      "tree": "8e1b1b74726f6ff6590864c648caa846b6734ea0",
      "parents": [
        "eca6fc7836af8eec9ba7e029b604690451bb44a0"
      ],
      "author": {
        "name": "Dmitry Kravkov",
        "email": "dmitry@broadcom.com",
        "time": "Tue Aug 03 21:49:40 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Aug 16 21:06:18 2010 -0700"
      },
      "message": "bnx2x: Load firmware in open() instead of probe()\n\nLoading firmware when actually bringing eth device up.\nThis also will allow driver to be insmoded when filesystem with\nfirmware files is not available yet.\n\nSuggested by Stephen Hemminger \u003cshemminger@vyatta.com\u003e\n\nSigned-off-by: Dmitry Kravkov \u003cdmitry@broadcom.com\u003e\nSigned-off-by: Eilon Greenstein \u003ceilong@broadcom.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "eca6fc7836af8eec9ba7e029b604690451bb44a0",
      "tree": "759656c7a125530a8e2b860aa5bd377df23db6f8",
      "parents": [
        "da5cabf80e2433131bf0ed8993abc0f7ea618c73",
        "5ca6f7c85159a5ca7e637b1d9f79f0d9bc56e5dc"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Aug 16 20:44:14 2010 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Aug 16 20:44:14 2010 -0700"
      },
      "message": "Merge branch \u0027master\u0027 of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6\n"
    },
    {
      "commit": "5ca6f7c85159a5ca7e637b1d9f79f0d9bc56e5dc",
      "tree": "ed4f35d48b2859d7ced04c9f8e0f4f6b3ac0f603",
      "parents": [
        "daa3766e705c2605bd7f63b80c7742014ef9e04e",
        "6ccf15a1a76d2ff915cdef6ae4d12d0170087118"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Aug 16 13:56:01 2010 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Aug 16 13:56:01 2010 -0700"
      },
      "message": "Merge branch \u0027master\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6\n"
    },
    {
      "commit": "daa3766e705c2605bd7f63b80c7742014ef9e04e",
      "tree": "8fac0e0747172f9ed43aa9929a858f3b993df46a",
      "parents": [
        "f3d3f616e35db2ceeb11564eafd50759bb5bca8a"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Sun Aug 15 23:21:50 2010 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Sun Aug 15 23:21:50 2010 -0700"
      },
      "message": "Revert \"netlink: netlink_recvmsg() fix\"\n\nThis reverts commit 1235f504aaba2ebeabc863fdb3ceac764a317d47.\n\nIt causes regressions worse than the problem it was trying\nto fix.  Eric will try to solve the problem another way.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "da5cabf80e2433131bf0ed8993abc0f7ea618c73",
      "tree": "208f20750722e031b404f1447b22c5ffd0eed215",
      "parents": [
        "2245ba2a3a975656bb303dfaa115accaa4667083"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sun Aug 15 17:41:37 2010 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sun Aug 15 17:41:37 2010 -0700"
      },
      "message": "Linux 2.6.36-rc1\n"
    },
    {
      "commit": "2245ba2a3a975656bb303dfaa115accaa4667083",
      "tree": "cbeb348c43d58461d851907373c34a7b9a985e41",
      "parents": [
        "e2e96c663639a3361bb1a84e666887d308c6c87e",
        "95ee46aa8698f2000647dfb362400fadbb5807cf"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sun Aug 15 17:37:07 2010 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sun Aug 15 17:37:07 2010 -0700"
      },
      "message": "Merge branch \u0027release\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6\n\n* \u0027release\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6:\n  gcc-4.6: ACPI: fix unused but set variables in ACPI\n  ACPI thermal: make procfs I/F depend on CONFIG_ACPI_PROCFS\n  ACPI video: make procfs I/F depend on CONFIG_ACPI_PROCFS\n  ACPI processor: remove deprecated ACPI procfs I/F\n  ACPI power_resource: remove unused procfs I/F\n  ACPI: remove deprecated ACPI procfs I/F\n  ACPI: introduce drivers/acpi/sysfs.c\n  ACPI: introduce module parameter acpi.aml_debug_output\n  ACPI: introduce drivers/acpi/debugfs.c\n  ACPI, APEI, ERST debug support\n  ACPI, APEI, Manage GHES as platform devices\n  ACPI, APEI, Rename CPER and GHES severity constants\n  ACPI, APEI, Fix a typo of error path of apei_resources_request\n  ACPI / ACPICA: Fix reference counting problems with GPE handlers\n  ACPI: Add the check of ADR flag in course of finding ACPI handle for PCI device\n  ACPI / Sleep: Drop acpi_suspend_finish()\n  ACPI / Sleep: Consolidate suspend and hibernation routines\n  ACPI / Wakeup: Simplify enabling of wakeup devices\n  ACPI / Sleep: Rework enabling wakeup devices\n  ACPI / Sleep: Free NVS copy if suspending of devices fails\n\nFixed up totally buggered \"ACPI: fix unused but set variables in ACPI\"\npatch that doesn\u0027t even compile in the merge.\n\nThanks to Sedat Dilek \u003csedat.dilek@googlemail.com\u003e for noticing the\nbreakage before I even pulled.  And a big \"Grrr..\" at Len for not even\nbothering to compile the tree before asking me to pull.\n"
    },
    {
      "commit": "e2e96c663639a3361bb1a84e666887d308c6c87e",
      "tree": "7c28b1e5baaff4741d974193ba30f1c53992596f",
      "parents": [
        "7355a5a654ccbbfd2fd11bb1e2389910f786ea92",
        "1a8bd481bfba30515b54368d90a915db3faf302f"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sun Aug 15 17:34:20 2010 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sun Aug 15 17:34:20 2010 -0700"
      },
      "message": "Merge git://git.infradead.org/iommu-2.6\n\n* git://git.infradead.org/iommu-2.6:\n  intel-iommu: Fix 32-bit build warning with __cmpxchg()\n  intr-remap: allow disabling source id checking\n"
    },
    {
      "commit": "7355a5a654ccbbfd2fd11bb1e2389910f786ea92",
      "tree": "a1aa0b16bab51f8c5c505fe237d3ba6ba20b88aa",
      "parents": [
        "7a1b29a82ba76427de791098c095ce31dab9333d",
        "84c4f46d9c0bd67b763b01a6b4c86dcfde6c818a"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sun Aug 15 17:32:47 2010 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sun Aug 15 17:32:47 2010 -0700"
      },
      "message": "Merge git://git.infradead.org/mtd-2.6\n\n* git://git.infradead.org/mtd-2.6:\n  mtd/nand_ids: Fix buswidth\n  mtd/m25p80: fix test for end of loop\n  mtd/m25p80: retlen is never NULL\n  MIPS: Fix gen_nand probe structures contents\n  gen_nand: Test if nr_chips field is valid\n  BFIN: Fix gen_nand probe structures contents\n  nand/denali: move all hardware initialization work to denali_hw_init\n  nand/denali: Add a page check in denali_read_page \u0026 denali_read_page_raw\n  nand/denali: use cpu_relax() while waiting for hardware interrupt\n  nand/denali: change read_status function method\n  nand/denali: Fixed check patch warnings\n  ARM: Fix gen_nand probe structures contents\n  mtd/nand_base: fix kernel-doc warnings \u0026 typos\n  nand/denali: use dev_xx debug function to replace nand_dbg_print and some printk\n  nand/denali: Fixed handle ECC error bugs\n  nand/denali: use iowrite32() to replace denali_write32()\n  nand/denali: Fixed probe function bugs\n"
    },
    {
      "commit": "7a1b29a82ba76427de791098c095ce31dab9333d",
      "tree": "077a1563ce243b6ac619397a0b7904623a28de50",
      "parents": [
        "d7824370e26325c881b665350ce64fb0a4fde24a",
        "a5854dd7f30c3849edf9b9711362e2dd51d3f855"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sun Aug 15 17:31:43 2010 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sun Aug 15 17:31:43 2010 -0700"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile\n\n* git://git.kernel.org/pub/scm/linux/kernel/git/cmetcalf/linux-tile:\n  arch/tile: don\u0027t validate CROSS_COMPILE needlessly\n  arch/tile: export only COMMAND_LINE_SIZE to userspace.\n  arch/tile: rename ARCH_KMALLOC_MINALIGN to ARCH_DMA_MINALIGN\n  arch/tile: Rename the hweight() implementations to __arch_hweight()\n  arch/tile: extend syscall ABI to set r1 on return as well.\n  arch/tile: Various cleanups.\n  arch/tile: support backtracing on TILE-Gx\n  arch/tile: Fix a couple of issues with the COMPAT code for TILE-Gx.\n  arch/tile: Use separate, better minsec values for clocksource and sched_clock.\n  arch/tile: correct a bug in freeing bootmem by VA for the optional second initrd.\n  arch: tile: mm: pgtable.c: Removed duplicated #include\n  arch: tile: kernel/proc.c Removed duplicated #include\n  Add fanotify syscalls to \u003casm-generic/unistd.h\u003e.\n  arch/tile: support new kunmap_atomic() naming convention.\n  tile: remove unused ISA_DMA_THRESHOLD define\n\nConflicts in arch/tile/configs/tile_defconfig (pick the mainline version\nwith the reduced defconfig).\n"
    },
    {
      "commit": "a5854dd7f30c3849edf9b9711362e2dd51d3f855",
      "tree": "e4e84e168eab39fa7e8bdd943447ea241ce6979a",
      "parents": [
        "3b3c1b9d04db2ac925818c3cff677f5353c0b559"
      ],
      "author": {
        "name": "Chris Metcalf",
        "email": "cmetcalf@tilera.com",
        "time": "Sun Aug 15 15:01:45 2010 -0400"
      },
      "committer": {
        "name": "Chris Metcalf",
        "email": "cmetcalf@tilera.com",
        "time": "Sun Aug 15 16:14:07 2010 -0400"
      },
      "message": "arch/tile: don\u0027t validate CROSS_COMPILE needlessly\n\nWith this change, the arch/tile Makefile will only check for a valid\ncombination of CROSS_COMPILE vs \"uname -m\" for a few common targets\nthat are typically the ones we get wrong (vmlinux, all, and modules).\nThe change handles the case of an empty \"make\" goal like \"make all\".\n\nSigned-off-by: Chris Metcalf \u003ccmetcalf@tilera.com\u003e\nReviewed-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\n"
    },
    {
      "commit": "d7824370e26325c881b665350ce64fb0a4fde24a",
      "tree": "c3fb9ceb074d52c3edd166a927314c642f2fe631",
      "parents": [
        "1b68c9596ce17a1e06918ed65fc3d19b92b04aab"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sun Aug 15 11:35:52 2010 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sun Aug 15 11:35:52 2010 -0700"
      },
      "message": "mm: fix up some user-visible effects of the stack guard page\n\nThis commit makes the stack guard page somewhat less visible to user\nspace. It does this by:\n\n - not showing the guard page in /proc/\u003cpid\u003e/maps\n\n   It looks like lvm-tools will actually read /proc/self/maps to figure\n   out where all its mappings are, and effectively do a specialized\n   \"mlockall()\" in user space.  By not showing the guard page as part of\n   the mapping (by just adding PAGE_SIZE to the start for grows-up\n   pages), lvm-tools ends up not being aware of it.\n\n - by also teaching the _real_ mlock() functionality not to try to lock\n   the guard page.\n\n   That would just expand the mapping down to create a new guard page,\n   so there really is no point in trying to lock it in place.\n\nIt would perhaps be nice to show the guard page specially in\n/proc/\u003cpid\u003e/maps (or at least mark grow-down segments some way), but\nlet\u0027s not open ourselves up to more breakage by user space from programs\nthat depends on the exact deails of the \u0027maps\u0027 file.\n\nSpecial thanks to Henrique de Moraes Holschuh for diving into lvm-tools\nsource code to see what was going on with the whole new warning.\n\nReported-and-tested-by: François Valenduc \u003cfrancois.valenduc@tvcablenet.be\nReported-by: Henrique de Moraes Holschuh \u003chmh@hmh.eng.br\u003e\nCc: stable@kernel.org\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "1b68c9596ce17a1e06918ed65fc3d19b92b04aab",
      "tree": "d7588c281a92fb30604ddc23f88f748be028921d",
      "parents": [
        "5a4179460cb50d939a2ae713cf88fcbff75f2c1c",
        "aaae5272118bcce90d11629f15bc01ea8e545e6d"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sun Aug 15 11:22:00 2010 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sun Aug 15 11:22:00 2010 -0700"
      },
      "message": "Merge branch \u0027for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6\n\n* \u0027for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6:\n  ALSA: sound/usb/format: silence uninitialized variable warnings\n  MAINTAINERS: Add Ian Lartey as comaintaner for Wolfson devices\n  MAINTAINERS: Make Wolfson entry also cover CODEC drivers\n  ASoC: Only tweak WM8994 chip configuration on devices up to rev D\n  ASoC: Optimise DSP performance for WM8994\n  ALSA: hda - Fix dynamic ADC change working again\n  ALSA: hda - Restrict PCM parameters per ELD information over HDMI\n  sound: oss: sh_dac_audio.c removed duplicated #include\n"
    },
    {
      "commit": "5a4179460cb50d939a2ae713cf88fcbff75f2c1c",
      "tree": "f41bfc36bbb14be449aaeecf01df592a5fd553f4",
      "parents": [
        "5d7cb157025b3b4852f38e6e5e97d06ef12c1d78",
        "4725fd3ce970c27a1678fb0809bfc7c2f4ac3e4f"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sun Aug 15 11:17:52 2010 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sun Aug 15 11:17:52 2010 -0700"
      },
      "message": "Merge branch \u0027idle-release\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-idle-2.6\n\n* \u0027idle-release\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-idle-2.6:\n  intel_idle: recognize Lincroft Atom Processor\n  intel_idle: no longer EXPERIMENTAL\n  intel_idle: disable module support\n  intel_idle: add support for Westmere-EX\n  intel_idle: delete power_policy modparam, and choose substate functions\n  intel_idle: delete substates DEBUG modparam\n"
    },
    {
      "commit": "3b3c1b9d04db2ac925818c3cff677f5353c0b559",
      "tree": "a9dd552ad393a9e65ab82eb1cf69d7236f52134c",
      "parents": [
        "b3ae98ab8217a8621859e1d9cbf3ee6c4c19533b"
      ],
      "author": {
        "name": "Chris Metcalf",
        "email": "cmetcalf@tilera.com",
        "time": "Sun Aug 15 12:14:41 2010 -0400"
      },
      "committer": {
        "name": "Chris Metcalf",
        "email": "cmetcalf@tilera.com",
        "time": "Sun Aug 15 12:14:41 2010 -0400"
      },
      "message": "arch/tile: export only COMMAND_LINE_SIZE to userspace.\n\nThis fixes a failure in \"make headers_check\" for tile.\nI hadn\u0027t realized this file was exported to userspace by default.\n\nSigned-off-by: Chris Metcalf \u003ccmetcalf@tilera.com\u003e\n"
    },
    {
      "commit": "b3ae98ab8217a8621859e1d9cbf3ee6c4c19533b",
      "tree": "dfab5358562d26fcdf9924346cde822252ec3192",
      "parents": [
        "947e7dc1aed0532478e10988328bfd7426e0c2bd"
      ],
      "author": {
        "name": "Chris Metcalf",
        "email": "cmetcalf@tilera.com",
        "time": "Fri Aug 13 20:43:39 2010 -0400"
      },
      "committer": {
        "name": "Chris Metcalf",
        "email": "cmetcalf@tilera.com",
        "time": "Sun Aug 15 11:05:33 2010 -0400"
      },
      "message": "arch/tile: rename ARCH_KMALLOC_MINALIGN to ARCH_DMA_MINALIGN\n\nSee commit a6eb9fe105d5de0053b261148cee56c94b4720ca.\n\nSigned-off-by: Chris Metcalf \u003ccmetcalf@tilera.com\u003e\nAcked-by: FUJITA Tomonori \u003cfujita.tomonori@lab.ntt.co.jp\u003e\n"
    },
    {
      "commit": "aaae5272118bcce90d11629f15bc01ea8e545e6d",
      "tree": "cc90dfb59fd7235e105f0dd366cf96170fc143d4",
      "parents": [
        "18c5ef385c65360761f39d55b2e2cd370ab151db",
        "a532f97c71c7a952531e02b0994104c532fbef0f"
      ],
      "author": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Sun Aug 15 14:34:02 2010 +0200"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Sun Aug 15 14:34:02 2010 +0200"
      },
      "message": "Merge branch \u0027fix/asoc\u0027 into for-linus\n"
    },
    {
      "commit": "18c5ef385c65360761f39d55b2e2cd370ab151db",
      "tree": "51ffa37ad94600f908867196dd9f216e42163de7",
      "parents": [
        "38d7b08f374b640b00d350ac2d12ffed5d723423",
        "f0cea79724f03ee55e7b5933b6a6f6a3fd177710"
      ],
      "author": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Sun Aug 15 14:33:56 2010 +0200"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Sun Aug 15 14:33:56 2010 +0200"
      },
      "message": "Merge branch \u0027fix/hda\u0027 into for-linus\n"
    },
    {
      "commit": "38d7b08f374b640b00d350ac2d12ffed5d723423",
      "tree": "3c68f297c254caa6d0a0a7634d964df724b6a52a",
      "parents": [
        "31cbd97726207b483a1731562559fabd4e2efdd0"
      ],
      "author": {
        "name": "Dan Carpenter",
        "email": "error27@gmail.com",
        "time": "Sat Aug 14 19:29:53 2010 +0200"
      },
      "committer": {
        "name": "Takashi Iwai",
        "email": "tiwai@suse.de",
        "time": "Sun Aug 15 14:28:20 2010 +0200"
      },
      "message": "ALSA: sound/usb/format: silence uninitialized variable warnings\n\nGcc complains that ret might be used uninitialized:\n\nsound/usb/format.c: In function ‘snd_usb_parse_audio_format’:\nsound/usb/format.c:354: warning: ‘ret’ may be used uninitialized in this function\nsound/usb/format.c:354: note: ‘ret’ was declared here\nsound/usb/format.c:414: warning: ‘ret’ may be used uninitialized in this function\nsound/usb/format.c:414: note: ‘ret’ was declared here\n\nI suppose it could be uninitialized if there is ever a UAC_VERSION_3\nreleased. Anyway this patch is worthwhile if only to silence the gcc\nwarning.\n\nSigned-off-by: Dan Carpenter \u003cerror27@gmail.com\u003e\nAcked-by: Daniel Mack \u003cdaniel@caiaq.de\u003e\nSigned-off-by: Takashi Iwai \u003ctiwai@suse.de\u003e\n"
    },
    {
      "commit": "f3d3f616e35db2ceeb11564eafd50759bb5bca8a",
      "tree": "b01acb2248fec1e2ca48ad7e4644d9136c8c6d36",
      "parents": [
        "2f09a4d5daaa36690d506fafda9c24f2be866f6b"
      ],
      "author": {
        "name": "Min Zhang",
        "email": "mzhang@mvista.com",
        "time": "Sat Aug 14 22:42:51 2010 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Sat Aug 14 22:42:51 2010 -0700"
      },
      "message": "ipv6: remove sysctl jiffies conversion on gc_elasticity and min_adv_mss\n\nsysctl output ipv6 gc_elasticity and min_adv_mss as values divided by\nHZ. However, they are not in unit of jiffies, since ip6_rt_min_advmss\nrefers to packet size and ip6_rt_fc_elasticity is used as scaler as in\nexpire\u003e\u003eip6_rt_gc_elasticity, so replace the jiffies conversion\nhandler will regular handler for them.\n\nThis has impact on scripts that are currently working assuming the\ndivide by HZ, will yield different results with this patch in place.\n\nSigned-off-by: Min Zhang \u003cmzhang@mvista.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "2f09a4d5daaa36690d506fafda9c24f2be866f6b",
      "tree": "3ad73903ae199c4bc47d029fed7f346ce6406b25",
      "parents": [
        "3c09e2647b5e1f1f9fd383971468823c2505e1b0"
      ],
      "author": {
        "name": "Herbert Xu",
        "email": "herbert@gondor.apana.org.au",
        "time": "Sat Aug 14 22:38:09 2010 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Sat Aug 14 22:38:09 2010 -0700"
      },
      "message": "xfrm: Use GFP_ATOMIC in xfrm_compile_policy\n\nAs xfrm_compile_policy runs within a read_lock, we cannot use\nGFP_KERNEL for memory allocations.\n\nReported-by: Luca Tettamanti \u003ckronos.it@gmail.com\u003e\nSigned-off-by: Herbert Xu \u003cherbert@gondor.apana.org.au\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "95ee46aa8698f2000647dfb362400fadbb5807cf",
      "tree": "e5a05c7297f997e191c73091934e42e3195c0e40",
      "parents": [
        "cfa806f059801dbe7e435745eb2e187c8bfe1e7f",
        "92fa5bd9a946b6e7aab6764e7312e4e3d9bed295"
      ],
      "author": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sun Aug 15 01:06:31 2010 -0400"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sun Aug 15 01:06:31 2010 -0400"
      },
      "message": "Merge branch \u0027linus\u0027 into release\n\nConflicts:\n\tdrivers/acpi/debug.c\n\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    },
    {
      "commit": "cfa806f059801dbe7e435745eb2e187c8bfe1e7f",
      "tree": "9c99026f29b863ca0541699e45349b8fa40ea93a",
      "parents": [
        "43d9f87b79804f2d75d9d8a81c862b179f055a15"
      ],
      "author": {
        "name": "Andi Kleen",
        "email": "andi@firstfloor.org",
        "time": "Tue Jul 20 15:18:36 2010 -0700"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sun Aug 15 00:53:08 2010 -0400"
      },
      "message": "gcc-4.6: ACPI: fix unused but set variables in ACPI\n\nSome minor improvements in error handling, but overall it was mostly dead\ncode.\n\nSigned-off-by: Andi Kleen \u003cak@linux.intel.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    },
    {
      "commit": "43d9f87b79804f2d75d9d8a81c862b179f055a15",
      "tree": "b3e6368c641d7999832f5b06b04639d41aa9f485",
      "parents": [
        "6e37c658aefa57c472b2dbf1de88dbd3c67cdb52"
      ],
      "author": {
        "name": "Zhang Rui",
        "email": "rui.zhang@intel.com",
        "time": "Thu Jul 15 10:46:44 2010 +0800"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sun Aug 15 00:37:33 2010 -0400"
      },
      "message": "ACPI thermal: make procfs I/F depend on CONFIG_ACPI_PROCFS\n\nMark the ACPI thermal procfs I/F deprecated, because /sys/class/thermal/\nis already available and has been working for years w/o any problem.\n\nThe ACPI thermal procfs I/F will be removed in 2.6.37.\n\nSigned-off-by: Zhang Rui \u003crui.zhang@intel.com\u003e\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    },
    {
      "commit": "6e37c658aefa57c472b2dbf1de88dbd3c67cdb52",
      "tree": "b16e489f5a371a8d60e86245e27fddc2b946d8a1",
      "parents": [
        "d09fe55510257f1acd21ea80a9bdd7c72b5895b3"
      ],
      "author": {
        "name": "Zhang Rui",
        "email": "rui.zhang@intel.com",
        "time": "Thu Jul 15 10:46:43 2010 +0800"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sun Aug 15 00:34:06 2010 -0400"
      },
      "message": "ACPI video: make procfs I/F depend on CONFIG_ACPI_PROCFS\n\nMark ACPI video driver procfs I/F deprecated, including:\n/proc/acpi/video/*/info\n/proc/acpi/video/*/DOS\n/proc/acpi/video/*/ROM\n/proc/acpi/video/*/POST\n/proc/acpi/video/*/POST_info\n/proc/acpi/video/*/*/info\n/proc/acpi/video/*/*/state\n/proc/acpi/video/*/*/EDID\nand\n/proc/acpi/video/*/*/brightness, because\n1. we already have the sysfs I/F /sysclass/backlight/ as the replacement\nof /proc/acpi/video/*/*/brightness.\n2. the other procfs I/F is not useful for userspace.\n\nSigned-off-by: Zhang Rui \u003crui.zhang@intel.com\u003e\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    },
    {
      "commit": "d09fe55510257f1acd21ea80a9bdd7c72b5895b3",
      "tree": "8de6e26f254167fabbc66b4de6f03a44bb57acde",
      "parents": [
        "06af7eb043c02822072cea862fce1b7c74115e8f"
      ],
      "author": {
        "name": "Zhang Rui",
        "email": "rui.zhang@intel.com",
        "time": "Thu Jul 15 10:46:41 2010 +0800"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sun Aug 15 00:31:45 2010 -0400"
      },
      "message": "ACPI processor: remove deprecated ACPI procfs I/F\n\nRemove deprecated ACPI processor procfs I/F, including:\n/proc/acpi/processor/CPUX/power\n/proc/acpi/processor/CPUX/limit\n/proc/acpi/processor/CPUX/info\n\n/proc/acpi/processor/CPUX/throttling still exists,\nas we don\u0027t have sysfs I/F available for now.\n\nSigned-off-by: Zhang Rui \u003crui.zhang@intel.com\u003e\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    },
    {
      "commit": "06af7eb043c02822072cea862fce1b7c74115e8f",
      "tree": "43af890ec5c9f6843cd12cc11e5b38f89f05b98e",
      "parents": [
        "47f5c892b06797336a34f1096b4b617623aa1960"
      ],
      "author": {
        "name": "Zhang Rui",
        "email": "rui.zhang@intel.com",
        "time": "Thu Jul 15 10:46:38 2010 +0800"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sun Aug 15 00:28:26 2010 -0400"
      },
      "message": "ACPI power_resource: remove unused procfs I/F\n\nRemove unused ACPI power procfs I/F.\n\nSigned-off-by: Zhang Rui \u003crui.zhang@intel.com\u003e\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    },
    {
      "commit": "47f5c892b06797336a34f1096b4b617623aa1960",
      "tree": "31613e2031b8b5ac40b48dc5f8d673c8dbe5ead6",
      "parents": [
        "1c8fce27e275fd7c6b75bc6455745f02d3903ee6"
      ],
      "author": {
        "name": "Zhang Rui",
        "email": "rui.zhang@intel.com",
        "time": "Thu Jul 15 10:46:33 2010 +0800"
      },
      "committer": {
        "name": "Len Brown",
        "email": "len.brown@intel.com",
        "time": "Sun Aug 15 00:27:51 2010 -0400"
      },
      "message": "ACPI: remove deprecated ACPI procfs I/F\n\nRmove deprecated ACPI procfs I/F, including\n/proc/acpi/debug_layer\n/proc/acpi/debug_level\n/proc/acpi/info\n/proc/acpi/dsdt\n/proc/acpi/fadt\n/proc/acpi/sleep\n\nbecause the sysfs I/F is already available\nand has been working well for years.\n\nSigned-off-by: Zhang Rui \u003crui.zhang@intel.com\u003e\nSigned-off-by: Len Brown \u003clen.brown@intel.com\u003e\n"
    }
  ],
  "next": "1c8fce27e275fd7c6b75bc6455745f02d3903ee6"
}
