)]}'
{
  "log": [
    {
      "commit": "d6b00a5345ce4e86e8b00a88bb84a2c0c1f69ddc",
      "tree": "11d68bb08584fbbae02a7bf22599bdd67da4408e",
      "parents": [
        "bd414ee605ff3ac5fcd79f57269a897879ee4cde"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 25 16:34:45 2010 +0100"
      },
      "committer": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 25 16:55:49 2010 +0100"
      },
      "message": "netfilter: xtables: change targets to return error code\n\nPart of the transition of done by this semantic patch:\n// \u003csmpl\u003e\n@ rule1 @\nstruct xt_target ops;\nidentifier check;\n@@\n ops.checkentry \u003d check;\n\n@@\nidentifier rule1.check;\n@@\n check(...) { \u003c...\n-return true;\n+return 0;\n ...\u003e }\n\n@@\nidentifier rule1.check;\n@@\n check(...) { \u003c...\n-return false;\n+return -EINVAL;\n ...\u003e }\n// \u003c/smpl\u003e\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "bd414ee605ff3ac5fcd79f57269a897879ee4cde",
      "tree": "3cff5d1f3fd43791341e9cde23dabb4dfbc94bd3",
      "parents": [
        "135367b8f6a18507af6b9a6910a14b5699415309"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Tue Mar 23 16:35:56 2010 +0100"
      },
      "committer": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 25 16:55:24 2010 +0100"
      },
      "message": "netfilter: xtables: change matches to return error code\n\nThe following semantic patch does part of the transformation:\n// \u003csmpl\u003e\n@ rule1 @\nstruct xt_match ops;\nidentifier check;\n@@\n ops.checkentry \u003d check;\n\n@@\nidentifier rule1.check;\n@@\n check(...) { \u003c...\n-return true;\n+return 0;\n ...\u003e }\n\n@@\nidentifier rule1.check;\n@@\n check(...) { \u003c...\n-return false;\n+return -EINVAL;\n ...\u003e }\n// \u003c/smpl\u003e\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "135367b8f6a18507af6b9a6910a14b5699415309",
      "tree": "462e8efb6f4e634421b5c01e96b02280c512eeab",
      "parents": [
        "b0f38452ff73da7e9e0ddc68cd5c6b93c897ca0d"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Fri Mar 19 17:16:42 2010 +0100"
      },
      "committer": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 25 16:04:33 2010 +0100"
      },
      "message": "netfilter: xtables: change xt_target.checkentry return type\n\nRestore function signatures from bool to int so that we can report\nmemory allocation failures or similar using -ENOMEM rather than\nalways having to pass -EINVAL back.\n\n// \u003csmpl\u003e\n@@\ntype bool;\nidentifier check, par;\n@@\n-bool check\n+int check\n (struct xt_tgchk_param *par) { ... }\n// \u003c/smpl\u003e\n\nMinus the change it does to xt_ct_find_proto.\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "b0f38452ff73da7e9e0ddc68cd5c6b93c897ca0d",
      "tree": "fd1bbb75556c88a581fc9dfe9faa045578e468ff",
      "parents": [
        "9f5673174161cc026a6c87f70d9b457e7ad82a80"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Fri Mar 19 17:16:42 2010 +0100"
      },
      "committer": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 25 16:03:13 2010 +0100"
      },
      "message": "netfilter: xtables: change xt_match.checkentry return type\n\nRestore function signatures from bool to int so that we can report\nmemory allocation failures or similar using -ENOMEM rather than\nalways having to pass -EINVAL back.\n\nThis semantic patch may not be too precise (checking for functions\nthat use xt_mtchk_param rather than functions referenced by\nxt_match.checkentry), but reviewed, it produced the intended result.\n\n// \u003csmpl\u003e\n@@\ntype bool;\nidentifier check, par;\n@@\n-bool check\n+int check\n (struct xt_mtchk_param *par) { ... }\n// \u003c/smpl\u003e\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "9f5673174161cc026a6c87f70d9b457e7ad82a80",
      "tree": "c0f763f86b93a476837193c4621f431960745ff1",
      "parents": [
        "7911b5c75b613f533b6cb6f999041dd5ea3bb004"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Tue Mar 23 17:40:13 2010 +0100"
      },
      "committer": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 25 16:03:12 2010 +0100"
      },
      "message": "netfilter: xtables: untangle spaghetti if clauses in checkentry\n\nAs I\u0027m changing the return values soon, I want to have a clear visual\npath.\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "7911b5c75b613f533b6cb6f999041dd5ea3bb004",
      "tree": "234c6392cfc94fdd34830b543a5805f260dd0ccb",
      "parents": [
        "5d877d876cfb96c0c3254184171b4767501f4f95"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Tue Mar 23 04:08:46 2010 +0100"
      },
      "committer": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 25 16:03:07 2010 +0100"
      },
      "message": "netfilter: ipvs: use NFPROTO values for NF_HOOK invocation\n\nSemantic patch:\n// \u003csmpl\u003e\n@@\n@@\n IP_VS_XMIT(\n-PF_INET6,\n+NFPROTO_IPV6,\n ...)\n\n@@\n@@\n IP_VS_XMIT(\n-PF_INET,\n+NFPROTO_IPV4,\n ...)\n// \u003c/smpl\u003e\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "5d877d876cfb96c0c3254184171b4767501f4f95",
      "tree": "6d57a3b4fbda96e442e47ce83cdaf5d14c767dbd",
      "parents": [
        "b2e0b385d77069031edb957839aaaa8441b47287"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Tue Mar 23 04:09:14 2010 +0100"
      },
      "committer": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 25 16:03:06 2010 +0100"
      },
      "message": "netfilter: decnet: use NFPROTO values for NF_HOOK invocation\n\nThe semantic patch used was:\n// \u003csmpl\u003e\n@@\n@@\n NF_HOOK(\n-PF_DECnet,\n+NFPROTO_DECNET,\n ...)\n// \u003c/smpl\u003e\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "b2e0b385d77069031edb957839aaaa8441b47287",
      "tree": "7b0cd8ed74fd0f8ab6a198cd1be735c6a972517e",
      "parents": [
        "9bbc768aa911a3ef336272eaa6d220abfba8ce50"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Tue Mar 23 04:09:07 2010 +0100"
      },
      "committer": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 25 16:00:49 2010 +0100"
      },
      "message": "netfilter: ipv6: use NFPROTO values for NF_HOOK invocation\n\nThe semantic patch that was used:\n// \u003csmpl\u003e\n@@\n@@\n(NF_HOOK\n|NF_HOOK_THRESH\n|nf_hook\n)(\n-PF_INET6,\n+NFPROTO_IPV6,\n ...)\n// \u003c/smpl\u003e\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "9bbc768aa911a3ef336272eaa6d220abfba8ce50",
      "tree": "2c2d421e273eb78f3b1d4533b3a8b0654bcd45c0",
      "parents": [
        "713aefa3fb3929ce36305d4d1b7b4059d87ed115"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Tue Mar 23 04:07:29 2010 +0100"
      },
      "committer": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 25 16:00:30 2010 +0100"
      },
      "message": "netfilter: ipv4: use NFPROTO values for NF_HOOK invocation\n\nThe semantic patch that was used:\n// \u003csmpl\u003e\n@@\n@@\n(NF_HOOK\n|NF_HOOK_COND\n|nf_hook\n)(\n-PF_INET,\n+NFPROTO_IPV4,\n ...)\n// \u003c/smpl\u003e\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "713aefa3fb3929ce36305d4d1b7b4059d87ed115",
      "tree": "d73b898fa5920b434bffd60dce669c48758a2b5d",
      "parents": [
        "5dc7a6d5749d3ddbf9fbea9512cb45762428512c"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Tue Mar 23 04:07:21 2010 +0100"
      },
      "committer": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 25 16:00:29 2010 +0100"
      },
      "message": "netfilter: bridge: use NFPROTO values for NF_HOOK invocation\n\nThe first argument to NF_HOOK* is an nfproto since quite some time.\nCommit v2.6.27-2457-gfdc9314 was the first to practically start using\nthe new names. Do that now for the remaining NF_HOOK calls.\n\nThe semantic patch used was:\n// \u003csmpl\u003e\n@@\n@@\n(NF_HOOK\n|NF_HOOK_THRESH\n)(\n-PF_BRIDGE,\n+NFPROTO_BRIDGE,\n ...)\n\n@@\n@@\n NF_HOOK(\n-PF_INET6,\n+NFPROTO_IPV6,\n ...)\n\n@@\n@@\n NF_HOOK(\n-PF_INET,\n+NFPROTO_IPV4,\n ...)\n// \u003c/smpl\u003e\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "5dc7a6d5749d3ddbf9fbea9512cb45762428512c",
      "tree": "c70d10a2bd3d67202534b6e0e4f4495b357138b4",
      "parents": [
        "fd0ec0e6216baea854465bbdb177f2d1b2ccaf22"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Fri Mar 19 21:29:08 2010 +0100"
      },
      "committer": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 25 15:02:20 2010 +0100"
      },
      "message": "netfilter: xt_recent: allow changing ip_list_[ug]id at runtime\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "fd0ec0e6216baea854465bbdb177f2d1b2ccaf22",
      "tree": "47a935d96deae38aa0a030039e303b071a7803e0",
      "parents": [
        "d2a7b6bad2c38e41eddb0b24d03627d9e7aa3f7b"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Fri Jul 10 19:27:47 2009 +0200"
      },
      "committer": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 25 15:02:19 2010 +0100"
      },
      "message": "netfilter: xtables: consolidate code into xt_request_find_match\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "d2a7b6bad2c38e41eddb0b24d03627d9e7aa3f7b",
      "tree": "826eb9d112029819aa44925346a55f887b1c3baf",
      "parents": [
        "ff67e4e42bd178b1179c4d8e5c1fde18758ce84f"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Fri Jul 10 18:55:11 2009 +0200"
      },
      "committer": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 25 15:02:19 2010 +0100"
      },
      "message": "netfilter: xtables: make use of xt_request_find_target\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "ff67e4e42bd178b1179c4d8e5c1fde18758ce84f",
      "tree": "5d4cc857d4bac40c3d78f90f8e21f12c424737a4",
      "parents": [
        "0d34545563f99886b997be7da63f0e8084af3bc5"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Fri Mar 19 21:08:16 2010 +0100"
      },
      "committer": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 25 15:00:04 2010 +0100"
      },
      "message": "netfilter: xt extensions: use pr_\u003clevel\u003e (2)\n\nSupplement to 1159683ef48469de71dc26f0ee1a9c30d131cf89.\n\nDowngrade the log level to INFO for most checkentry messages as they\nare, IMO, just an extra information to the -EINVAL code that is\nreturned as part of a parameter \"constraint violation\". Leave errors\nto real errors, such as being unable to create a LED trigger.\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "0d34545563f99886b997be7da63f0e8084af3bc5",
      "tree": "92b5212ed186ba719ce12e02d3bdb4330b3d1727",
      "parents": [
        "2c46cd8163b25bf6f38e612e9f1d162f0357c8f1"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Fri Mar 19 18:47:51 2010 +0100"
      },
      "committer": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 25 02:54:51 2010 +0100"
      },
      "message": "netfilter: xtables: make use of caller family rather than target family\n\nSupplement to aa5fa3185791aac71c9172d4fda3e8729164b5d1.\nThe semantic patch for this change is:\n\n// \u003csmpl\u003e\n@@\nstruct xt_target_param *par;\n@@\n-par-\u003etarget-\u003efamily\n+par-\u003efamily\n\n@@\nstruct xt_tgchk_param *par;\n@@\n-par-\u003etarget-\u003efamily\n+par-\u003efamily\n\n@@\nstruct xt_tgdtor_param *par;\n@@\n-par-\u003etarget-\u003efamily\n+par-\u003efamily\n// \u003c/smpl\u003e\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "2c46cd8163b25bf6f38e612e9f1d162f0357c8f1",
      "tree": "12d374e94a183af8729273d314b5a70f4226a1e8",
      "parents": [
        "1159683ef48469de71dc26f0ee1a9c30d131cf89"
      ],
      "author": {
        "name": "Zhitong Wang",
        "email": "zhitong.wangzt@alibaba-inc.com",
        "time": "Fri Mar 19 16:04:10 2010 +0100"
      },
      "committer": {
        "name": "Patrick McHardy",
        "email": "kaber@trash.net",
        "time": "Fri Mar 19 16:04:10 2010 +0100"
      },
      "message": "netfilter: remove unused headers in net/ipv4/netfilter/nf_nat_h323.c\n\nRemove unused headers in net/ipv4/netfilter/nf_nat_h323.c\n\nSigned-off-by: Zhitong Wang \u003czhitong.wangzt@alibaba-inc.com\u003e\nSigned-off-by: Patrick McHardy \u003ckaber@trash.net\u003e\n"
    },
    {
      "commit": "1159683ef48469de71dc26f0ee1a9c30d131cf89",
      "tree": "3e9c5aba8d6b8cdfca3f571ad690e6b09e6af881",
      "parents": [
        "8bee4bad03c5b601bd6cea123c31025680587ccc"
      ],
      "author": {
        "name": "Zhitong Wang",
        "email": "zhitong.wangzt@alibaba-inc.com",
        "time": "Fri Mar 19 16:01:54 2010 +0100"
      },
      "committer": {
        "name": "Patrick McHardy",
        "email": "kaber@trash.net",
        "time": "Fri Mar 19 16:01:54 2010 +0100"
      },
      "message": "netfilter: remove unused headers in net/ipv6/netfilter/ip6t_LOG.c\n\nRemove unused headers in net/ipv6/netfilter/ip6t_LOG.c\n\nSigned-off-by: Zhitong Wang \u003czhitong.wangzt@alibaba-inc.com\u003e\nSigned-off-by: Patrick McHardy \u003ckaber@trash.net\u003e\n"
    },
    {
      "commit": "8bee4bad03c5b601bd6cea123c31025680587ccc",
      "tree": "d3eb075492251d8ee16ac1282722b7fa66f9368c",
      "parents": [
        "be91fd5e323b46450ca82f6828e933e3791fb2f2"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Wed Mar 17 16:04:40 2010 +0100"
      },
      "committer": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 18 14:20:07 2010 +0100"
      },
      "message": "netfilter: xt extensions: use pr_\u003clevel\u003e\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "be91fd5e323b46450ca82f6828e933e3791fb2f2",
      "tree": "1a664fb7887e8a0d7f1507780d3533e669e1c3a3",
      "parents": [
        "85bc3f38147c5d3fb1eb9ca2236536389b592cae"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 18 02:22:32 2010 +0100"
      },
      "committer": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 18 14:20:07 2010 +0100"
      },
      "message": "netfilter: xtables: replace custom duprintf with pr_debug\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "85bc3f38147c5d3fb1eb9ca2236536389b592cae",
      "tree": "1e853e78c883c5a2dcf72e7d432e7ebf6be04973",
      "parents": [
        "f5c511c67aaec323c186543856cfddab31bed1d1"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 18 00:27:03 2010 +0100"
      },
      "committer": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 18 14:20:07 2010 +0100"
      },
      "message": "netfilter: xtables: do not print any messages on ENOMEM\n\nENOMEM is a very obvious error code (cf. EINVAL), so I think we do not\nreally need a warning message. Not to mention that if the allocation\nfails, the user is most likely going to get a stack trace from slab\nalready.\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "4f948db1915ff05e4ce0fd98e6323db6a3ec0fc0",
      "tree": "26960e5aa3ce14de1fbfcff6f0f602c0056f7869",
      "parents": [
        "16599786ae5e9d5f936706d2202d8c7224cd51ed"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 18 11:03:51 2010 +0100"
      },
      "committer": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 18 14:20:07 2010 +0100"
      },
      "message": "netfilter: xtables: remove almost-unused xt_match_param.data member\n\nThis member is taking up a \"long\" per match, yet is only used by one\nmodule out of the roughly 90 modules, ip6t_hbh. ip6t_hbh can be\nrestructured a little to accomodate for the lack of the .data member.\nThis variant uses checking the par-\u003ematch address, which should avoid\nhaving to add two extra functions, including calls, i.e.\n\n(hbh_mt6: call hbhdst_mt6(skb, par, NEXTHDR_OPT),\ndst_mt6: call hbhdst_mt6(skb, par, NEXTHDR_DEST))\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "aa5fa3185791aac71c9172d4fda3e8729164b5d1",
      "tree": "ed49f5c01d7bdb0e994243c3a0888b4a54bb6981",
      "parents": [
        "115bc8f2874078e6ac78d88652a91b58447d5f4d"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 18 00:44:52 2010 +0100"
      },
      "committer": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 18 14:20:06 2010 +0100"
      },
      "message": "netfilter: xtables: make use of caller family rather than match family\n\nThe matches can have .family \u003d NFPROTO_UNSPEC, and though that is not\nthe case for the touched modules, it seems better to just use the\nnfproto from the caller.\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "115bc8f2874078e6ac78d88652a91b58447d5f4d",
      "tree": "984a7352e6bea02df088b65e83e2de89bee32724",
      "parents": [
        "e5042a290097b7c2fc9b6a247585b6ed07b13026"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Tue Mar 16 20:06:55 2010 +0100"
      },
      "committer": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 18 14:20:06 2010 +0100"
      },
      "message": "netfilter: xtables: resort osf kconfig text\n\nRestore alphabetical ordering of the list and put the xt_osf option\ninto its \u0027right\u0027 place again.\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "e5042a290097b7c2fc9b6a247585b6ed07b13026",
      "tree": "b5eae5b4eb0c45c93fb4c752c164419c7e01535e",
      "parents": [
        "1d1c397db95f1c0cd95f6fa633c1e68acfaacec3"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Tue Mar 16 21:44:44 2010 +0100"
      },
      "committer": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 18 14:20:06 2010 +0100"
      },
      "message": "netfilter: xtables: limit xt_mac to ethernet devices\n\nI do not see a point of allowing the MAC module to work with devices\nthat don\u0027t possibly have one, e.g. various tunnel interfaces such as\ntun and sit.\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "1d1c397db95f1c0cd95f6fa633c1e68acfaacec3",
      "tree": "a73194780ee95ca32ceae75a8be425060b420169",
      "parents": [
        "7d5f7ed802507999c22949b84686d03987fe57ec"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Tue Mar 16 21:09:04 2010 +0100"
      },
      "committer": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 18 14:20:06 2010 +0100"
      },
      "message": "netfilter: xtables: clean up xt_mac match routine\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "7d5f7ed802507999c22949b84686d03987fe57ec",
      "tree": "2318dbfb05f02c258a05a8616a16cbfec10f65ab",
      "parents": [
        "e8a96f69383f3d88cdc06d8ccd450f70c48628a3"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Tue Mar 09 23:27:24 2010 +0100"
      },
      "committer": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 18 14:20:06 2010 +0100"
      },
      "message": "netfilter: xtables: do without explicit XT_ALIGN\n\nXT_ALIGN is already applied on matchsize/targetsize in x_tables.c,\nso it is not strictly needed in the extensions.\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "e8a96f69383f3d88cdc06d8ccd450f70c48628a3",
      "tree": "b8ce41ee20eb379731e7592d7b6fb17471918a61",
      "parents": [
        "c01ae818a3e3578747861d9a0c7fabe9641786c1",
        "1da05f50f6a766c7611102382f85183b4db96c2d"
      ],
      "author": {
        "name": "Patrick McHardy",
        "email": "kaber@trash.net",
        "time": "Thu Mar 18 12:55:50 2010 +0100"
      },
      "committer": {
        "name": "Patrick McHardy",
        "email": "kaber@trash.net",
        "time": "Thu Mar 18 12:55:50 2010 +0100"
      },
      "message": "Merge branch \u0027master\u0027 of ../nf-2.6\n"
    },
    {
      "commit": "c01ae818a3e3578747861d9a0c7fabe9641786c1",
      "tree": "ad82c1a2529db9533702a037061f74c1a23d77e8",
      "parents": [
        "606a9a02633c02d0e09fc96706f041053dbc57ee"
      ],
      "author": {
        "name": "Zhitong Wang",
        "email": "zhitong.wangzt@alibaba-inc.com",
        "time": "Wed Mar 17 16:28:25 2010 +0100"
      },
      "committer": {
        "name": "Patrick McHardy",
        "email": "kaber@trash.net",
        "time": "Wed Mar 17 16:28:25 2010 +0100"
      },
      "message": "netfilter: remove unused headers in net/netfilter/nfnetlink.c\n\nRemove unused headers in net/netfilter/nfnetlink.c\n\nSigned-off-by: Zhitong Wang \u003czhitong.wangzt@alibaba-inc.com\u003e\nSigned-off-by: Patrick McHardy \u003ckaber@trash.net\u003e\n"
    },
    {
      "commit": "606a9a02633c02d0e09fc96706f041053dbc57ee",
      "tree": "815148645d417a184479d9b83813c53441809e59",
      "parents": [
        "0079c5aee34880bcee7feee9960f0502c73dc5fa"
      ],
      "author": {
        "name": "Tim Gardner",
        "email": "tim.gardner@canonical.com",
        "time": "Wed Mar 17 16:18:56 2010 +0100"
      },
      "committer": {
        "name": "Patrick McHardy",
        "email": "kaber@trash.net",
        "time": "Wed Mar 17 16:18:56 2010 +0100"
      },
      "message": "netfilter: xt_recent: check for unsupported user space flags\n\nSigned-off-by: Tim Gardner \u003ctim.gardner@canonical.com\u003e\nSigned-off-by: Patrick McHardy \u003ckaber@trash.net\u003e\n"
    },
    {
      "commit": "0079c5aee34880bcee7feee9960f0502c73dc5fa",
      "tree": "a828b04c52f6650cbd654ca7b7de5ccdab5762c7",
      "parents": [
        "5be4a4f589841ef06fd79b241de3d5353a6c5efa"
      ],
      "author": {
        "name": "Tim Gardner",
        "email": "tim.gardner@canonical.com",
        "time": "Tue Mar 16 19:53:13 2010 +0100"
      },
      "committer": {
        "name": "Patrick McHardy",
        "email": "kaber@trash.net",
        "time": "Wed Mar 17 15:53:12 2010 +0100"
      },
      "message": "netfilter: xt_recent: add an entry reaper\n\nOne of the problems with the way xt_recent is implemented is that\nthere is no efficient way to remove expired entries. Of course,\none can write a rule \u0027-m recent --remove\u0027, but you have to know\nbeforehand which entry to delete. This commit adds reaper\nlogic which checks the head of the LRU list when a rule\nis invoked that has a \u0027--seconds\u0027 value and XT_RECENT_REAP set. If an\nentry ceases to accumulate time stamps, then it will eventually bubble\nto the top of the LRU list where it is then reaped.\n\nSigned-off-by: Tim Gardner \u003ctim.gardner@canonical.com\u003e\nSigned-off-by: Eric Dumazet \u003ceric.dumazet@gmail.com\u003e\nSigned-off-by: Patrick McHardy \u003ckaber@trash.net\u003e\n"
    },
    {
      "commit": "5be4a4f589841ef06fd79b241de3d5353a6c5efa",
      "tree": "d2c85b4a0d40087117fb75c548cdcc9b1d9ea81b",
      "parents": [
        "06bf514e3199150c715ab72e8e0e335ae8f99666"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Mon Mar 01 11:55:33 2010 +0100"
      },
      "committer": {
        "name": "Patrick McHardy",
        "email": "kaber@trash.net",
        "time": "Wed Mar 17 15:53:11 2010 +0100"
      },
      "message": "netfilter: xt_recent: remove old proc directory\n\nThe compat option was introduced in October 2008.\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "06bf514e3199150c715ab72e8e0e335ae8f99666",
      "tree": "10bf89c517bc00e90dea8006fd2d249b424ca565",
      "parents": [
        "8244f4baf5e1793a75a1d4409efc3e2d9d71c9cb"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Sun Feb 28 23:22:35 2010 +0100"
      },
      "committer": {
        "name": "Patrick McHardy",
        "email": "kaber@trash.net",
        "time": "Wed Mar 17 15:53:11 2010 +0100"
      },
      "message": "netfilter: xt_recent: update description\n\nIt had IPv6 for quite a while already :-)\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "8244f4baf5e1793a75a1d4409efc3e2d9d71c9cb",
      "tree": "60e4936fbda58f0f65336a09cde7ca6f7eaec032",
      "parents": [
        "408ffaa4a11ddd6f730be520479fd5cd890c57d3"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Sun Feb 28 23:22:04 2010 +0100"
      },
      "committer": {
        "name": "Patrick McHardy",
        "email": "kaber@trash.net",
        "time": "Wed Mar 17 15:53:11 2010 +0100"
      },
      "message": "netfilter: ebt_ip6: add principal maintainer in a MODULE_AUTHOR tag\n\nCc: Kuo-Lang Tseng \u003ckuo-lang.tseng@intel.com\u003e\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "408ffaa4a11ddd6f730be520479fd5cd890c57d3",
      "tree": "e8da2ffc78b8502856ca34794814ee71f880e160",
      "parents": [
        "0cb47ea24d2f72ca91bbe60e1c831f57e03efa20"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Sun Feb 28 23:19:52 2010 +0100"
      },
      "committer": {
        "name": "Patrick McHardy",
        "email": "kaber@trash.net",
        "time": "Wed Mar 17 15:53:10 2010 +0100"
      },
      "message": "netfilter: update my email address\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "b8f00ba27e4acc4a2224360ce3aa8a22354434c5",
      "tree": "60b9e536bc19ba6d4ddacd4bac5ebec1da9dc1d7",
      "parents": [
        "28b949885f80efb87d7cebdcf879c99db12c37bd"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Fri Feb 26 14:20:32 2010 +0100"
      },
      "committer": {
        "name": "Patrick McHardy",
        "email": "kaber@trash.net",
        "time": "Wed Mar 17 15:48:36 2010 +0100"
      },
      "message": "netfilter: xtables: merge xt_CONNMARK into xt_connmark\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "28b949885f80efb87d7cebdcf879c99db12c37bd",
      "tree": "f6c0acd5646a899c7eebb91fee856eebd8cbca83",
      "parents": [
        "44c5873199a90a45e9d64a86a1f54b1ccab21ec8"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Sat Feb 28 03:23:57 2009 +0100"
      },
      "committer": {
        "name": "Patrick McHardy",
        "email": "kaber@trash.net",
        "time": "Wed Mar 17 15:48:36 2010 +0100"
      },
      "message": "netfilter: xtables: merge xt_MARK into xt_mark\n\nTwo arguments for combining the two:\n- xt_mark is pretty useless without xt_MARK\n- the actual code is so small anyway that the kmod metadata and the module\n  in its loaded state totally outweighs the combined actual code size.\n\ni586-before:\n-rw-r--r-- 1 jengelh users 3821 Feb 10 01:01 xt_MARK.ko\n-rw-r--r-- 1 jengelh users 2592 Feb 10 00:04 xt_MARK.o\n-rw-r--r-- 1 jengelh users 3274 Feb 10 01:01 xt_mark.ko\n-rw-r--r-- 1 jengelh users 2108 Feb 10 00:05 xt_mark.o\n   text    data     bss     dec     hex filename\n    354     264       0     618     26a xt_MARK.o\n    223     176       0     399     18f xt_mark.o\nAnd the runtime size is like 14 KB.\n\ni586-after:\n-rw-r--r-- 1 jengelh users 3264 Feb 18 17:28 xt_mark.o\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "44c5873199a90a45e9d64a86a1f54b1ccab21ec8",
      "tree": "a8b831b960e7e3b68299413b3869bcbd197a5452",
      "parents": [
        "f76a47c83247b453f25629618056a6d2c1e39103"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Fri Feb 26 14:14:22 2010 +0100"
      },
      "committer": {
        "name": "Patrick McHardy",
        "email": "kaber@trash.net",
        "time": "Wed Mar 17 15:48:35 2010 +0100"
      },
      "message": "netfilter: xtables: add comment markers to Xtables Kconfig\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "f76a47c83247b453f25629618056a6d2c1e39103",
      "tree": "e64261ff64e89b4853e7c25519f150e93ff90106",
      "parents": [
        "076f7839dd30b379f3cd468b13cf513cdcd5cee7"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Fri Jun 05 15:22:15 2009 +0200"
      },
      "committer": {
        "name": "Patrick McHardy",
        "email": "kaber@trash.net",
        "time": "Wed Mar 17 15:48:35 2010 +0100"
      },
      "message": "netfilter: xt_NFQUEUE: consolidate v4/v6 targets into one\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "076f7839dd30b379f3cd468b13cf513cdcd5cee7",
      "tree": "5a40afcc0d50c9eb8f0489340e65f6495168b8a2",
      "parents": [
        "e50208a080a8abdfa6c85865362a1cf329e9fe31"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 11 00:38:44 2010 +0100"
      },
      "committer": {
        "name": "Patrick McHardy",
        "email": "kaber@trash.net",
        "time": "Wed Mar 17 15:48:35 2010 +0100"
      },
      "message": "netfilter: xt_CT: par-\u003efamily is an nfproto\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\n"
    },
    {
      "commit": "ff6e2163f28a1094fb5ca5950fe2b43c3cf6bc7a",
      "tree": "38673e8515a0948ed435dc0b9403c62269c7f8f4",
      "parents": [
        "0dc7d2b3cbfcf4ff20bdc68f563a2e52e6a2178f"
      ],
      "author": {
        "name": "Jiri Pirko",
        "email": "jpirko@redhat.com",
        "time": "Mon Mar 01 05:09:14 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 21:23:25 2010 -0700"
      },
      "message": "net: convert multiple drivers to use netdev_for_each_mc_addr, part7\n\nIn mlx4, using char * to store mc address in private structure instead.\n\nSigned-off-by: Jiri Pirko \u003cjpirko@redhat.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "ca50910185fcce694af0cc194de50d2374a7c7ef",
      "tree": "536680f779e146ba2f793c6139e569c8af8178d6",
      "parents": [
        "1a624832a06b465d0e5651901bcbc3680c78d374"
      ],
      "author": {
        "name": "Neil Horman",
        "email": "nhorman@tuxdriver.com",
        "time": "Mon Mar 15 07:58:45 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 21:23:24 2010 -0700"
      },
      "message": "tipc: Allow retransmission of cloned buffers\n\nForward port commit\nfc477e160af086f6e30c3d4fdf5f5c000d29beb5\nfrom git://tipc.cslab.ericsson.net/pub/git/people/allan/tipc.git\n\nOrigional commit message:\n\nAllow retransmission of cloned buffers\n\nThis patch fixes an issue with TIPC\u0027s message retransmission logic\nthat prevented retransmission of clone sk_buffs.  Originally intended\nas a means of avoiding wasted work in retransmitting messages that\nwere still on the driver\u0027s outbound queue, it also prevented TIPC\nfrom retransmitting messages through other means -- such as the\nsecondary bearer of the broadcast link, or another interface in a\nset of bonded interfaces.  This fix removes existing checks for\ncloned sk_buffs that prevented such retransmission.\n\nOrigionally-Signed-off-by: Allan Stephens \u003callan.stephens@windriver.com\u003e\nSigned-off-by: Neil Horman \u003cnhorman@tuxdriver.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "1a624832a06b465d0e5651901bcbc3680c78d374",
      "tree": "b8a4eb2917e5e02f410a9563a7fbf268fabc9d44",
      "parents": [
        "10708f37ae729baba9b67bd134c3720709d4ae62"
      ],
      "author": {
        "name": "Neil Horman",
        "email": "nhorman@tuxdriver.com",
        "time": "Mon Mar 15 08:02:24 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 21:23:23 2010 -0700"
      },
      "message": "tipc: Increase frequency of load distribution over broadcast link\n\nForward port commit 29eb572941501c40ac6e62dbc5043bf9ee76ee56\nfrom git://tipc.cslab.ericsson.net/pub/git/people/allan/tipc.git\n\nOrigional commit message:\nIncrease frequency of load distribution over broadcast link\n\nThis patch enhances the behavior of TIPC\u0027s broadcast link so that it\nalternates between redundant bearers (if available) after every\nmessage sent, rather than after every 10 messages.  This change helps\nto speed up delivery of retransmitted messages by ensuring that\nthey are not sent repeatedly over a bearer that is no longer working,\nbut not yet recognized as failed.\n\nTested by myself in the latest net-2.6 tree using the tipc sanity test suite\n\nOrigionally-signed-off-by: Allan Stephens \u003callan.stephens@windriver.com\u003e\nSigned-off-by: Neil Horman \u003cnhorman@tuxdriver.com\u003e\n\nbcast.c |   35 ++++++++++++++---------------------\n1 file changed, 14 insertions(+), 21 deletions(-)\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "10708f37ae729baba9b67bd134c3720709d4ae62",
      "tree": "fa3e20c31e7d6907668d45eee702d02d646cae8f",
      "parents": [
        "6ce1a6df6efbbeaa262a225a1a439ebc30a75d2e"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 11 09:57:29 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 21:23:22 2010 -0700"
      },
      "message": "net: core: add IFLA_STATS64 support\n\n`ip -s link` shows interface counters truncated to 32 bit. This is\nbecause interface statistics are transported only in 32-bit quantity\nto userspace. This commit adds a new IFLA_STATS64 attribute that\nexports them in full 64 bit.\n\nReferences: http://lkml.indiana.edu/hypermail/linux/kernel/0307.3/0215.html\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "6ce1a6df6efbbeaa262a225a1a439ebc30a75d2e",
      "tree": "0d16b7e04b3b5f9d58a74ba1d0ec9a1cc6540ca6",
      "parents": [
        "dd2acaa7bcb150dadac0b17c8eb654b0712a62ab"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 11 09:57:28 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 21:23:21 2010 -0700"
      },
      "message": "net: tcp: make veno selectable as default congestion module\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "dd2acaa7bcb150dadac0b17c8eb654b0712a62ab",
      "tree": "5abf928b75036f6c453cb213af2538d63d986eac",
      "parents": [
        "2fb3573dfbca0bd853ddc1e47617eb446fa3deae"
      ],
      "author": {
        "name": "Jan Engelhardt",
        "email": "jengelh@medozas.de",
        "time": "Thu Mar 11 09:57:27 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 21:23:20 2010 -0700"
      },
      "message": "net: tcp: make hybla selectable as default congestion module\n\nSigned-off-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "2fb3573dfbca0bd853ddc1e47617eb446fa3deae",
      "tree": "790601c538c5b9d1d80bb5f2779c77ebb54354db",
      "parents": [
        "14bb4789833a2e2610f30e2d3e1451701ac96ec1"
      ],
      "author": {
        "name": "Eric Dumazet",
        "email": "eric.dumazet@gmail.com",
        "time": "Tue Mar 09 20:03:38 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 21:23:19 2010 -0700"
      },
      "message": "net: remove rcu locking from fib_rules_event()\n\nWe hold RTNL at this point and dont use RCU variants of list traversals,\nwe dont need rcu_read_lock()/rcu_read_unlock()\n\nSigned-off-by: Eric Dumazet \u003ceric.dumazet@gmail.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "14bb4789833a2e2610f30e2d3e1451701ac96ec1",
      "tree": "992a40f1c885d22f6bce27d270e5839b1d8d121b",
      "parents": [
        "0a9627f2649a02bea165cfd529d7bcb625c2fcad"
      ],
      "author": {
        "name": "stephen hemminger",
        "email": "shemminger@vyatta.com",
        "time": "Tue Mar 02 13:32:09 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 21:23:19 2010 -0700"
      },
      "message": "bridge: per-cpu packet statistics (v3)\n\nThe shared packet statistics are a potential source of slow down\non bridged traffic. Convert to per-cpu array, but only keep those\nstatistics which change per-packet.\n\nSigned-off-by: Stephen Hemminger \u003cshemminger@vyatta.com\u003e\nSigned-off-by: Eric Dumazet \u003ceric.dumazet@gmail.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "0a9627f2649a02bea165cfd529d7bcb625c2fcad",
      "tree": "e5d4424b99208c78e2b2fe6ff5a158fc21bdf782",
      "parents": [
        "768bbedf9ca4cc4784eae2003f37abe0818fe0b0"
      ],
      "author": {
        "name": "Tom Herbert",
        "email": "therbert@google.com",
        "time": "Tue Mar 16 08:03:29 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 21:23:18 2010 -0700"
      },
      "message": "rps: Receive Packet Steering\n\nThis patch implements software receive side packet steering (RPS).  RPS\ndistributes the load of received packet processing across multiple CPUs.\n\nProblem statement: Protocol processing done in the NAPI context for received\npackets is serialized per device queue and becomes a bottleneck under high\npacket load.  This substantially limits pps that can be achieved on a single\nqueue NIC and provides no scaling with multiple cores.\n\nThis solution queues packets early on in the receive path on the backlog queues\nof other CPUs.   This allows protocol processing (e.g. IP and TCP) to be\nperformed on packets in parallel.   For each device (or each receive queue in\na multi-queue device) a mask of CPUs is set to indicate the CPUs that can\nprocess packets. A CPU is selected on a per packet basis by hashing contents\nof the packet header (e.g. the TCP or UDP 4-tuple) and using the result to index\ninto the CPU mask.  The IPI mechanism is used to raise networking receive\nsoftirqs between CPUs.  This effectively emulates in software what a multi-queue\nNIC can provide, but is generic requiring no device support.\n\nMany devices now provide a hash over the 4-tuple on a per packet basis\n(e.g. the Toeplitz hash).  This patch allow drivers to set the HW reported hash\nin an skb field, and that value in turn is used to index into the RPS maps.\nUsing the HW generated hash can avoid cache misses on the packet when\nsteering it to a remote CPU.\n\nThe CPU mask is set on a per device and per queue basis in the sysfs variable\n/sys/class/net/\u003cdevice\u003e/queues/rx-\u003cn\u003e/rps_cpus.  This is a set of canonical\nbit maps for receive queues in the device (numbered by \u003cn\u003e).  If a device\ndoes not support multi-queue, a single variable is used for the device (rx-0).\n\nGenerally, we have found this technique increases pps capabilities of a single\nqueue device with good CPU utilization.  Optimal settings for the CPU mask\nseem to depend on architectures and cache hierarcy.  Below are some results\nrunning 500 instances of netperf TCP_RR test with 1 byte req. and resp.\nResults show cumulative transaction rate and system CPU utilization.\n\ne1000e on 8 core Intel\n   Without RPS: 108K tps at 33% CPU\n   With RPS:    311K tps at 64% CPU\n\nforcedeth on 16 core AMD\n   Without RPS: 156K tps at 15% CPU\n   With RPS:    404K tps at 49% CPU\n\nbnx2x on 16 core AMD\n   Without RPS  567K tps at 61% CPU (4 HW RX queues)\n   Without RPS  738K tps at 96% CPU (8 HW RX queues)\n   With RPS:    854K tps at 76% CPU (4 HW RX queues)\n\nCaveats:\n- The benefits of this patch are dependent on architecture and cache hierarchy.\nTuning the masks to get best performance is probably necessary.\n- This patch adds overhead in the path for processing a single packet.  In\na lightly loaded server this overhead may eliminate the advantages of\nincreased parallelism, and possibly cause some relative performance degradation.\nWe have found that masks that are cache aware (share same caches with\nthe interrupting CPU) mitigate much of this.\n- The RPS masks can be changed dynamically, however whenever the mask is changed\nthis introduces the possibility of generating out of order packets.  It\u0027s\nprobably best not change the masks too frequently.\n\nSigned-off-by: Tom Herbert \u003ctherbert@google.com\u003e\n\n include/linux/netdevice.h |   32 ++++-\n include/linux/skbuff.h    |    3 +\n net/core/dev.c            |  335 +++++++++++++++++++++++++++++++++++++--------\n net/core/net-sysfs.c      |  225 ++++++++++++++++++++++++++++++-\n net/core/skbuff.c         |    2 +\n 5 files changed, 538 insertions(+), 59 deletions(-)\nSigned-off-by: Eric Dumazet \u003ceric.dumazet@gmail.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "768bbedf9ca4cc4784eae2003f37abe0818fe0b0",
      "tree": "8dbf42a46924c7403f29a530a09b371e5b9dd183",
      "parents": [
        "561c7df63e259203515509a7ad075382a42bff0c"
      ],
      "author": {
        "name": "Tina Yang",
        "email": "tina.yang@oracle.com",
        "time": "Thu Mar 11 13:50:07 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 21:17:02 2010 -0700"
      },
      "message": "RDS: Enable per-cpu workqueue threads\n\nCreate per-cpu workqueue threads instead of a single\nkrdsd thread. This is a step towards better scalability.\n\nSigned-off-by: Andy Grover \u003candy.grover@oracle.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "561c7df63e259203515509a7ad075382a42bff0c",
      "tree": "80d3d382ba155d4bced37b716dcac0e31062f2c5",
      "parents": [
        "450d06c0208ad195ccd74a7edd11321e316791ad"
      ],
      "author": {
        "name": "Andy Grover",
        "email": "andy.grover@oracle.com",
        "time": "Thu Mar 11 13:50:06 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 21:17:01 2010 -0700"
      },
      "message": "RDS: Do not call set_page_dirty() with irqs off\n\nset_page_dirty() unconditionally re-enables interrupts, so\nif we call it with irqs off, they will be on after the call,\nand that\u0027s bad. This patch moves the call after we\u0027ve re-enabled\ninterrupts in send_drop_to(), so it\u0027s safe.\n\nAlso, add BUG_ONs to let us know if we ever do call set_page_dirty\nwith interrupts off.\n\nSigned-off-by: Andy Grover \u003candy.grover@oracle.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "450d06c0208ad195ccd74a7edd11321e316791ad",
      "tree": "92abe1897ad7ab857e091475bcb84227af01962a",
      "parents": [
        "b98ba52f96e7cdb4dbe2b06bced83d95d94c9d02"
      ],
      "author": {
        "name": "Sherman Pun",
        "email": "sherman.pun@sun.com",
        "time": "Thu Mar 11 13:50:05 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 21:17:00 2010 -0700"
      },
      "message": "RDS: Properly unmap when getting a remote access error\n\nIf the RDMA op has aborted with a remote access error,\nin addition to what we already do (tell userspace it has\ncompleted with an error) also unmap it and put() the rm.\n\nOtherwise, hangs may occur on arches that track maps and\nwill not exit without proper cleanup.\n\nSigned-off-by: Andy Grover \u003candy.grover@oracle.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "b98ba52f96e7cdb4dbe2b06bced83d95d94c9d02",
      "tree": "72e22772c6326ff554bd030bda35abcb1526249e",
      "parents": [
        "550a8002e4340eaf3bc333e33b59427e9c20272d"
      ],
      "author": {
        "name": "Andy Grover",
        "email": "andy.grover@oracle.com",
        "time": "Thu Mar 11 13:50:04 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 21:16:59 2010 -0700"
      },
      "message": "RDS: only put sockets that have seen congestion on the poll_waitq\n\nrds_poll_waitq\u0027s listeners will be awoken if we receive a congestion\nnotification. Bad performance may result because *all* polled sockets\ncontend for this single lock. However, it should not be necessary to\nwake pollers when a congestion update arrives if they have never\nexperienced congestion, and not putting these on the waitq will\nhopefully greatly reduce contention.\n\nSigned-off-by: Andy Grover \u003candy.grover@oracle.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "550a8002e4340eaf3bc333e33b59427e9c20272d",
      "tree": "545fe5bccea8aa087233ccecd1dc18570d634d7e",
      "parents": [
        "97069788d6784ac92d050557a02f6e7bf4d1f53d"
      ],
      "author": {
        "name": "Tina Yang",
        "email": "tina.yang@oracle.com",
        "time": "Thu Mar 11 13:50:03 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 21:16:58 2010 -0700"
      },
      "message": "RDS: Fix locking in rds_send_drop_to()\n\nIt seems rds_send_drop_to() called\n__rds_rdma_send_complete(rs, rm, RDS_RDMA_CANCELED)\nwith only rds_sock lock, but not rds_message lock. It raced with\nother threads that is attempting to modify the rds_message as well,\nsuch as from within rds_rdma_send_complete().\n\nSigned-off-by: Tina Yang \u003ctina.yang@oracle.com\u003e\nSigned-off-by: Andy Grover \u003candy.grover@oracle.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "97069788d6784ac92d050557a02f6e7bf4d1f53d",
      "tree": "a1749dae883efd89777c031b18285f0570080b89",
      "parents": [
        "571c02fa81e43ebb4b793f626d6c7bf0fa18902b"
      ],
      "author": {
        "name": "Andy Grover",
        "email": "andy.grover@oracle.com",
        "time": "Thu Mar 11 13:50:02 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 21:16:57 2010 -0700"
      },
      "message": "RDS: Turn down alarming reconnect messages\n\nRDS\u0027s error messages when a connection goes down are a little\nextreme. A connection may go down, and it will be re-established,\nand everything is fine. This patch links these messages through\nrdsdebug(), instead of to printk directly.\n\nSigned-off-by: Andy Grover \u003candy.grover@oracle.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "571c02fa81e43ebb4b793f626d6c7bf0fa18902b",
      "tree": "08868b2379bc577d64654ea14047edd2eeaf55c7",
      "parents": [
        "048c15e641289d902f7ef9f1241068d8045e210c"
      ],
      "author": {
        "name": "Andy Grover",
        "email": "andy.grover@oracle.com",
        "time": "Thu Mar 11 13:50:01 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 21:16:56 2010 -0700"
      },
      "message": "RDS: Workaround for in-use MRs on close causing crash\n\nif a machine is shut down without closing sockets properly, and\nfreeing all MRs, then a BUG_ON will bring it down. This patch\nchanges these to WARN_ONs -- leaking MRs is not fatal (although\nnot ideal, and there is more work to do here for a proper fix.)\n\nSigned-off-by: Andy Grover \u003candy.grover@oracle.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "048c15e641289d902f7ef9f1241068d8045e210c",
      "tree": "f4e7f27a411b9310c98c41e82285e211abcbfbd7",
      "parents": [
        "2e7b3b994529d4760231a45a6b88950187bda877"
      ],
      "author": {
        "name": "Tina Yang",
        "email": "Tina.Yang@oracle.com",
        "time": "Thu Mar 11 13:50:00 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 21:16:55 2010 -0700"
      },
      "message": "RDS: Fix send locking issue\n\nFix a deadlock between rds_rdma_send_complete() and\nrds_send_remove_from_sock() when rds socket lock and\nrds message lock are acquired out-of-order.\n\nSigned-off-by: Tina Yang \u003cTina.Yang@oracle.com\u003e\nSigned-off-by: Andy Grover \u003candy.grover@oracle.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "2e7b3b994529d4760231a45a6b88950187bda877",
      "tree": "d073317ace5a9ef948a826aed32e8b35f21e2193",
      "parents": [
        "8e82376e5f72bb576504c8c6117685e56c1b97db"
      ],
      "author": {
        "name": "Andy Grover",
        "email": "andy.grover@oracle.com",
        "time": "Thu Mar 11 13:49:59 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 21:16:55 2010 -0700"
      },
      "message": "RDS: Fix congestion issues for loopback\n\nWe have two kinds of loopback: software (via loop transport)\nand hardware (via IB). sw is used for 127.0.0.1, and doesn\u0027t\nsupport rdma ops. hw is used for sends to local device IPs,\nand supports rdma. Both are used in different cases.\n\nFor both of these, when there is a congestion map update, we\nwant to call rds_cong_map_updated() but not actually send\nanything -- since loopback local and foreign congestion maps\npoint to the same spot, they\u0027re already in sync.\n\nThe old code never called sw loop\u0027s xmit_cong_map(),so\nrds_cong_map_updated() wasn\u0027t being called for it. sw loop\nports would not work right with the congestion monitor.\n\nFixing that meant that hw loopback now would send congestion maps\nto itself. This is also undesirable (racy), so we check for this\ncase in the ib-specific xmit code.\n\nSigned-off-by: Andy Grover \u003candy.grover@oracle.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "8e82376e5f72bb576504c8c6117685e56c1b97db",
      "tree": "8aa3e7a354620a0d67a403aedd056c9a58b4e57a",
      "parents": [
        "b075cfdb666d6fa90c55c8619186398a3c4fd865"
      ],
      "author": {
        "name": "Andy Grover",
        "email": "andy.grover@oracle.com",
        "time": "Thu Mar 11 13:49:58 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 21:16:55 2010 -0700"
      },
      "message": "RDS/TCP: Wait to wake thread when write space available\n\nInstead of waking the send thread whenever any send space is available,\nwait until it is at least half empty. This is modeled on how\nsock_def_write_space() does it, and may help to minimize context\nswitches.\n\nSigned-off-by: Andy Grover \u003candy.grover@oracle.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "b075cfdb666d6fa90c55c8619186398a3c4fd865",
      "tree": "a63ed941bccb9910978519350c1c14704706c58b",
      "parents": [
        "1123fd734df6ad82373a5a27f0f2ed3115555b9d"
      ],
      "author": {
        "name": "Andy Grover",
        "email": "andy.grover@oracle.com",
        "time": "Thu Mar 11 13:49:57 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 21:16:54 2010 -0700"
      },
      "message": "RDS: update copy_to_user state in tcp transport\n\nOther transports use rds_page_copy_user, which updates our\ns_copy_to_user counter. TCP doesn\u0027t, so it needs to explicity\ncall rds_stats_add().\n\nReported-by: Richard Frank \u003crichard.frank@oracle.com\u003e\nSigned-off-by: Andy Grover \u003candy.grover@oracle.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "1123fd734df6ad82373a5a27f0f2ed3115555b9d",
      "tree": "9f0348b2d603a4d18855f01bbd34249c2c2b3f72",
      "parents": [
        "735f61e62611161588123930823af6e6a9fd5c2c"
      ],
      "author": {
        "name": "Andy Grover",
        "email": "andy.grover@oracle.com",
        "time": "Thu Mar 11 13:49:56 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 21:16:54 2010 -0700"
      },
      "message": "RDS: sendmsg() should check sndtimeo, not rcvtimeo\n\nMost likely cut n paste error - sendmsg() was checking sock_rcvtimeo.\n\nSigned-off-by: Andy Grover \u003candy.grover@oracle.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "735f61e62611161588123930823af6e6a9fd5c2c",
      "tree": "d07e16026909daa692ddab9c7b0801cc418cb3bc",
      "parents": [
        "87faf3ccf1c939938600ab57c6c9ed5bd2e5f4cc"
      ],
      "author": {
        "name": "Andy Grover",
        "email": "andy.grover@oracle.com",
        "time": "Thu Mar 11 13:49:55 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 21:16:53 2010 -0700"
      },
      "message": "RDS: Do not BUG() on error returned from ib_post_send\n\nBUGging on a runtime error code should be avoided. This\npatch also eliminates all other BUG()s that have no real\nreason to exist.\n\nSigned-off-by: Andy Grover \u003candy.grover@oracle.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "87faf3ccf1c939938600ab57c6c9ed5bd2e5f4cc",
      "tree": "fdfec5682c7c5e4e1ac462ae25e0537a1b9d429c",
      "parents": [
        "32dec5dd0233ebffa9cae25ce7ba6daeb7df4467"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 14:37:47 2010 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 14:37:47 2010 -0700"
      },
      "message": "bridge: Make first arg to deliver_clone const.\n\nOtherwise we get a warning from the call in br_forward().\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "32dec5dd0233ebffa9cae25ce7ba6daeb7df4467",
      "tree": "b086e355e9afa2cb6ab51988175afd619787029b",
      "parents": [
        "858a18a6a2f74e8f0e5b2e9671d4b74694aba708"
      ],
      "author": {
        "name": "YOSHIFUJI Hideaki / 吉藤英明",
        "email": "yoshfuji@linux-ipv6.org",
        "time": "Mon Mar 15 21:51:18 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 14:34:23 2010 -0700"
      },
      "message": "bridge br_multicast: Don\u0027t refer to BR_INPUT_SKB_CB(skb)-\u003emrouters_only without IGMP snooping.\n\nWithout CONFIG_BRIDGE_IGMP_SNOOPING,\nBR_INPUT_SKB_CB(skb)-\u003emrouters_only is not appropriately\ninitialized, so we can see garbage.\n\nA clear option to fix this is to set it even without that\nconfig, but we cannot optimize out the branch.\n\nLet\u0027s introduce a macro that returns value of mrouters_only\nand let it return 0 without CONFIG_BRIDGE_IGMP_SNOOPING.\n\nSigned-off-by: YOSHIFUJI Hideaki \u003cyoshfuji@linux-ipv6.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "858a18a6a2f74e8f0e5b2e9671d4b74694aba708",
      "tree": "ccdb6cff136e02b47803b1fe5cec77821f6c7c9f",
      "parents": [
        "8440853bb70010f2f8edc26cb0f7af60da8b2c5a"
      ],
      "author": {
        "name": "Vitaliy Gusev",
        "email": "vgusev@openvz.org",
        "time": "Tue Mar 16 01:07:51 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 14:15:47 2010 -0700"
      },
      "message": "route: Fix caught BUG_ON during rt_secret_rebuild_oneshot()\n\nroute: Fix caught BUG_ON during rt_secret_rebuild_oneshot()\n\nCall rt_secret_rebuild can cause BUG_ON(timer_pending(\u0026net-\u003eipv4.rt_secret_timer)) in\nadd_timer as there is not any synchronization for call rt_secret_rebuild_oneshot()\nfor the same net namespace.\n\nAlso this issue affects to rt_secret_reschedule().\n\nThus use mod_timer enstead.\n\nSigned-off-by: Vitaliy Gusev \u003cvgusev@openvz.org\u003e\nAcked-by: Neil Horman \u003cnhorman@tuxdriver.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "8440853bb70010f2f8edc26cb0f7af60da8b2c5a",
      "tree": "d0f5098be166558deb5baf3292f770dee2d7e326",
      "parents": [
        "0ba8c9ec25465cd0680b80c0f5836f558e3b972d"
      ],
      "author": {
        "name": "YOSHIFUJI Hideaki / 吉藤英明",
        "email": "yoshfuji@linux-ipv6.org",
        "time": "Mon Mar 15 19:26:56 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 14:15:46 2010 -0700"
      },
      "message": "bridge br_multicast: Fix skb leakage in error path.\n\nSigned-off-by: YOSHIFUJI Hideaki \u003cyoshfuji@linux-ipv6.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "0ba8c9ec25465cd0680b80c0f5836f558e3b972d",
      "tree": "28de185348a076c79e1e28196099a04515d9b700",
      "parents": [
        "21edbb223ed2af88b090e7945af7d91d672e3aa6"
      ],
      "author": {
        "name": "YOSHIFUJI Hideaki / 吉藤英明",
        "email": "yoshfuji@linux-ipv6.org",
        "time": "Mon Mar 15 19:27:00 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 14:15:46 2010 -0700"
      },
      "message": "bridge br_multicast: Fix handling of Max Response Code in IGMPv3 message.\n\nSigned-off-by: YOSHIFUJI Hideaki \u003cyoshfuji@linux-ipv6.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "21edbb223ed2af88b090e7945af7d91d672e3aa6",
      "tree": "b159ba512fdbdfe92d896a77109e7c0dadd36f87",
      "parents": [
        "a2f46ee1ba5ee249ce2ca1ee7a7a0ac46529fb4f"
      ],
      "author": {
        "name": "Jiri Slaby",
        "email": "jslaby@suse.cz",
        "time": "Tue Mar 16 05:29:54 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 14:15:45 2010 -0700"
      },
      "message": "NET: netpoll, fix potential NULL ptr dereference\n\nStanse found that one error path in netpoll_setup dereferences npinfo\neven though it is NULL. Avoid that by adding new label and go to that\ninstead.\n\nSigned-off-by: Jiri Slaby \u003cjslaby@suse.cz\u003e\nCc: Daniel Borkmann \u003cdanborkmann@googlemail.com\u003e\nCc: David S. Miller \u003cdavem@davemloft.net\u003e\nAcked-by: chavey@google.com\nAcked-by: Matt Mackall \u003cmpm@selenic.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "a2f46ee1ba5ee249ce2ca1ee7a7a0ac46529fb4f",
      "tree": "a791769005885ab26a3353b70940c635b63b3e8d",
      "parents": [
        "c3259c8a7060d480e8eb2166da0a99d6879146b4"
      ],
      "author": {
        "name": "Neil Horman",
        "email": "nhorman@tuxdriver.com",
        "time": "Tue Mar 16 08:14:33 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 14:15:45 2010 -0700"
      },
      "message": "tipc: fix lockdep warning on address assignment\n\nSo in the forward porting of various tipc packages, I was constantly\ngetting this lockdep warning everytime I used tipc-config to set a network\naddress for the protocol:\n\n[ INFO: possible circular locking dependency detected ]\n2.6.33 #1\ntipc-config/1326 is trying to acquire lock:\n(ref_table_lock){+.-...}, at: [\u003cffffffffa0315148\u003e] tipc_ref_discard+0x53/0xd4 [tipc]\n\nbut task is already holding lock:\n(\u0026(\u0026entry-\u003elock)-\u003erlock#2){+.-...}, at: [\u003cffffffffa03150d5\u003e] tipc_ref_lock+0x43/0x63 [tipc]\n\nwhich lock already depends on the new lock.\n\nthe existing dependency chain (in reverse order) is:\n\n-\u003e #1 (\u0026(\u0026entry-\u003elock)-\u003erlock#2){+.-...}:\n[\u003cffffffff8107b508\u003e] __lock_acquire+0xb67/0xd0f\n[\u003cffffffff8107b78c\u003e] lock_acquire+0xdc/0x102\n[\u003cffffffff8145471e\u003e] _raw_spin_lock_bh+0x3b/0x6e\n[\u003cffffffffa03152b1\u003e] tipc_ref_acquire+0xe8/0x11b [tipc]\n[\u003cffffffffa031433f\u003e] tipc_createport_raw+0x78/0x1b9 [tipc]\n[\u003cffffffffa031450b\u003e] tipc_createport+0x8b/0x125 [tipc]\n[\u003cffffffffa030f221\u003e] tipc_subscr_start+0xce/0x126 [tipc]\n[\u003cffffffffa0308fb2\u003e] process_signal_queue+0x47/0x7d [tipc]\n[\u003cffffffff81053e0c\u003e] tasklet_action+0x8c/0xf4\n[\u003cffffffff81054bd8\u003e] __do_softirq+0xf8/0x1cd\n[\u003cffffffff8100aadc\u003e] call_softirq+0x1c/0x30\n[\u003cffffffff810549f4\u003e] _local_bh_enable_ip+0xb8/0xd7\n[\u003cffffffff81054a21\u003e] local_bh_enable_ip+0xe/0x10\n[\u003cffffffff81454d31\u003e] _raw_spin_unlock_bh+0x34/0x39\n[\u003cffffffffa0308eb8\u003e] spin_unlock_bh.clone.0+0x15/0x17 [tipc]\n[\u003cffffffffa0308f47\u003e] tipc_k_signal+0x8d/0xb1 [tipc]\n[\u003cffffffffa0308dd9\u003e] tipc_core_start+0x8a/0xad [tipc]\n[\u003cffffffffa01b1087\u003e] 0xffffffffa01b1087\n[\u003cffffffff8100207d\u003e] do_one_initcall+0x72/0x18a\n[\u003cffffffff810872fb\u003e] sys_init_module+0xd8/0x23a\n[\u003cffffffff81009b42\u003e] system_call_fastpath+0x16/0x1b\n\n-\u003e #0 (ref_table_lock){+.-...}:\n[\u003cffffffff8107b3b2\u003e] __lock_acquire+0xa11/0xd0f\n[\u003cffffffff8107b78c\u003e] lock_acquire+0xdc/0x102\n[\u003cffffffff81454836\u003e] _raw_write_lock_bh+0x3b/0x6e\n[\u003cffffffffa0315148\u003e] tipc_ref_discard+0x53/0xd4 [tipc]\n[\u003cffffffffa03141ee\u003e] tipc_deleteport+0x40/0x119 [tipc]\n[\u003cffffffffa0316e35\u003e] release+0xeb/0x137 [tipc]\n[\u003cffffffff8139dbf4\u003e] sock_release+0x1f/0x6f\n[\u003cffffffff8139dc6b\u003e] sock_close+0x27/0x2b\n[\u003cffffffff811116f6\u003e] __fput+0x12a/0x1df\n[\u003cffffffff811117c5\u003e] fput+0x1a/0x1c\n[\u003cffffffff8110e49b\u003e] filp_close+0x68/0x72\n[\u003cffffffff8110e552\u003e] sys_close+0xad/0xe7\n[\u003cffffffff81009b42\u003e] system_call_fastpath+0x16/0x1b\n\nFinally decided I should fix this.  Its a straightforward inversion,\ntipc_ref_acquire takes two locks in this order:\nref_table_lock\nentry-\u003elock\n\nwhile tipc_deleteport takes them in this order:\nentry-\u003elock (via tipc_port_lock())\nref_table_lock (via tipc_ref_discard())\n\nwhen the same entry is referenced, we get the above warning.  The fix is equally\nstraightforward.  Theres no real relation between the entry-\u003elock and the\nref_table_lock (they just are needed at the same time), so move the entry-\u003elock\naquisition in tipc_ref_acquire down, after we unlock ref_table_lock (this is\nsafe since the ref_table_lock guards changes to the reference table, and we\u0027ve\nalready claimed a slot there.  I\u0027ve tested the below fix and confirmed that it\nclears up the lockdep issue\n\nSigned-off-by: Neil Horman \u003cnhorman@tuxdriver.com\u003e\nCC: Allan Stephens \u003callan.stephens@windriver.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "7f7708f0055e49e331f267700aa8b2ee879f004c",
      "tree": "385da7d1b722232c3c9003af52079318aa51326e",
      "parents": [
        "0821ec55bb1382dd3b9476dc15d5dbbb19f0c3fd"
      ],
      "author": {
        "name": "Michael Braun",
        "email": "michael-dev@fami-braun.de",
        "time": "Tue Mar 16 00:26:22 2010 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Tue Mar 16 00:26:22 2010 -0700"
      },
      "message": "bridge: Fix br_forward crash in promiscuous mode\n\nFrom: Michael Braun \u003cmichael-dev@fami-braun.de\u003e\n\nbridge: Fix br_forward crash in promiscuous mode\n\nIt\u0027s a linux-next kernel from 2010-03-12 on an x86 system and it\nOOPs in the bridge module in br_pass_frame_up (called by\nbr_handle_frame_finish) because brdev cannot be dereferenced (its set to\na non-null value).\n\nAdding some BUG_ON statements revealed that\n BR_INPUT_SKB_CB(skb)-\u003ebrdev \u003d\u003d br-dev\n(as set in br_handle_frame_finish first)\nonly holds until br_forward is called.\nThe next call to br_pass_frame_up then fails.\n\nDigging deeper it seems that br_forward either frees the skb or passes\nit to NF_HOOK which will in turn take care of freeing the skb. The\nsame is holds for br_pass_frame_ip. So it seems as if two independent\nskb allocations are required. As far as I can see, commit\nb33084be192ee1e347d98bb5c9e38a53d98d35e2 (\"bridge: Avoid unnecessary\nclone on forward path\") removed skb duplication and so likely causes\nthis crash. This crash does not happen on 2.6.33.\n\nI\u0027ve therefore modified br_forward the same way br_flood has been\nmodified so that the skb is not freed if skb0 is going to be used\nand I can confirm that the attached patch resolves the issue for me.\n\nSigned-off-by: Herbert Xu \u003cherbert@gondor.apana.org.au\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "0821ec55bb1382dd3b9476dc15d5dbbb19f0c3fd",
      "tree": "f5698d42aa24da271ec6a9a5eef8d6b89e5b4e2c",
      "parents": [
        "d00561a2f64b381aefb41f4a140ff5dc373b52e7"
      ],
      "author": {
        "name": "Herbert Xu",
        "email": "herbert@gondor.apana.org.au",
        "time": "Mon Mar 15 20:38:25 2010 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Mar 15 20:38:25 2010 -0700"
      },
      "message": "bridge: Move NULL mdb check into br_mdb_ip_get\n\nSince all callers of br_mdb_ip_get need to check whether the\nhash table is NULL, this patch moves the check into the function.\n\nThis fixes the two callers (query/leave handler) that didn\u0027t\ncheck it.\n\nReported-by: Michael Braun \u003cmichael-dev@fami-braun.de\u003e\nSigned-off-by: Herbert Xu \u003cherbert@gondor.apana.org.au\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "4961e02f1999e1c3468c09b2669c94d7c3ae82a8",
      "tree": "44c15abb09d7ba5e17a9aba95ee246648b1c1a8a",
      "parents": [
        "d14a0ebda7d3daede1a99c01527affb9ceaa4c22",
        "a3d3203e4bb40f253b1541e310dc0f9305be7c84"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Mar 15 16:23:54 2010 -0700"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Mar 15 16:23:54 2010 -0700"
      },
      "message": "Merge branch \u0027master\u0027 of /home/davem/src/GIT/linux-2.6/\n"
    },
    {
      "commit": "d14a0ebda7d3daede1a99c01527affb9ceaa4c22",
      "tree": "8bee27033c0e771a9df0c3e8cc3f1dc1091587f0",
      "parents": [
        "b8d689743106bab5c49dda87080e76aa78db8a56"
      ],
      "author": {
        "name": "Gerrit Renker",
        "email": "gerrit@erg.abdn.ac.uk",
        "time": "Sun Mar 14 20:13:19 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Mar 15 16:00:50 2010 -0700"
      },
      "message": "net-2.6 [Bug-Fix][dccp]: fix oops caused after failed initialisation\n\ndccp: fix panic caused by failed initialisation\n\nThis fixes a kernel panic reported thanks to Andre Noll:\n\nif DCCP is compiled into the kernel and any out of the initialisation\nsteps in net/dccp/proto.c:dccp_init() fail, a subsequent attempt to create\na SOCK_DCCP socket will panic, since inet{,6}_create() are not prevented\nfrom creating DCCP sockets.\n\nThis patch fixes the problem by propagating a failure in dccp_init() to\ndccp_v{4,6}_init_net(), and from there to dccp_v{4,6}_init(), so that the\nDCCP protocol is not made available if its initialisation fails.\n\nSigned-off-by: Gerrit Renker \u003cgerrit@erg.abdn.ac.uk\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "a1ca14ac54675d3bf48d442b5a7b9eba133f1888",
      "tree": "4c140c289bf166b99f716cc685a34097520681d0",
      "parents": [
        "f28f9e43b3d81d1e69da0ebf77c8a6780cb5e0c8"
      ],
      "author": {
        "name": "Akinobu Mita",
        "email": "akinobu.mita@gmail.com",
        "time": "Thu Mar 11 12:07:49 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Mar 15 16:00:47 2010 -0700"
      },
      "message": "phonet: use for_each_set_bit()\n\nReplace open-coded loop with for_each_set_bit().\n\nSigned-off-by: Akinobu Mita \u003cakinobu.mita@gmail.com\u003e\nCc: \"David S. Miller\" \u003cdavem@davemloft.net\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nAcked-by: Rémi Denis-Courmont \u003cremi.denis-courmont@nokia.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "1da05f50f6a766c7611102382f85183b4db96c2d",
      "tree": "e0302f2d210a474b70d49c03a877c005a757095d",
      "parents": [
        "7b4df05537f4e6c0c3524055ece7f99b5c98cc87"
      ],
      "author": {
        "name": "Joe Perches",
        "email": "joe@perches.com",
        "time": "Mon Mar 15 18:03:05 2010 +0100"
      },
      "committer": {
        "name": "Patrick McHardy",
        "email": "kaber@trash.net",
        "time": "Mon Mar 15 18:03:05 2010 +0100"
      },
      "message": "netfilter: net/netfilter/ipvs/ip_vs_ftp.c: Remove use of NIPQUAD\n\nNIPQUAD has very few uses left.\n\nRemove this use and make the code have the identical form of the only\nother use of \"%u,%u,%u,%u,%u,%u\" in net/ipv4/netfilter/nf_nat_ftp.c\n\nSigned-off-by: Joe Perches \u003cjoe@perches.com\u003e\nAcked-by: Simon Horman \u003chorms@verge.net.au\u003e\nSigned-off-by: Patrick McHardy \u003ckaber@trash.net\u003e\n"
    },
    {
      "commit": "ceb804cd0f63b0e0a87b81913b66add6de03043d",
      "tree": "179d3050a8ea5fe5b8406efec64b5c391499d4d4",
      "parents": [
        "3474cbd11df8cdd6413781ea95bd51dd469098ff",
        "f78233dd44a110c574fe760ad6f9c1e8741a0d00"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sun Mar 14 11:11:08 2010 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sun Mar 14 11:11:08 2010 -0700"
      },
      "message": "Merge branch \u0027for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs\n\n* \u0027for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs:\n  9p: Skip check for mandatory locks when unlocking\n  9p: Fixes a simple bug enabling writes beyond 2GB.\n  9p: Change the name of new protocol from 9p2010.L to 9p2000.L\n  fs/9p: re-init the wstat in readdir loop\n  net/9p: Add sysfs mount_tag file for virtio 9P device\n  net/9p: Use the tag name in the config space for identifying mount point\n"
    },
    {
      "commit": "d89b218b801fd93ea95880f1c7fde348cbcc51c5",
      "tree": "cd3c34e1811f9b2bc10ecfb957bf26cbd04c677e",
      "parents": [
        "80a186074e72e2cd61f6716d90cf32ce54981a56",
        "bec68ff1637ca00bb1585a03a7be8a13380084de"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sat Mar 13 14:50:18 2010 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Sat Mar 13 14:50:18 2010 -0800"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6\n\n* git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6: (108 commits)\n  bridge: ensure to unlock in error path in br_multicast_query().\n  drivers/net/tulip/eeprom.c: fix bogus \"(null)\" in tulip init messages\n  sky2: Avoid rtnl_unlock without rtnl_lock\n  ipv6: Send netlink notification when DAD fails\n  drivers/net/tg3.c: change the field used with the TG3_FLAG_10_100_ONLY constant\n  ipconfig: Handle devices which take some time to come up.\n  mac80211: Fix memory leak in ieee80211_if_write()\n  mac80211: Fix (dynamic) power save entry\n  ipw2200: use kmalloc for large local variables\n  ath5k: read eeprom IQ calibration values correctly for G mode\n  ath5k: fix I/Q calibration (for real)\n  ath5k: fix TSF reset\n  ath5k: use fixed antenna for tx descriptors\n  libipw: split ieee-\u003enetworks into small pieces\n  mac80211: Fix sta_mtx unlocking on insert STA failure path\n  rt2x00: remove KSEG1ADDR define from rt2x00soc.h\n  net: add ColdFire support to the smc91x driver\n  asix: fix setting mac address for AX88772\n  ipv6 ip6_tunnel: eliminate unused recursion field from ip6_tnl{}.\n  net: Fix dev_mc_add()\n  ...\n"
    },
    {
      "commit": "bec68ff1637ca00bb1585a03a7be8a13380084de",
      "tree": "2e1f14359ab479d1429bbdfcecb2897b5fa4e667",
      "parents": [
        "c251c7f738cd94eb3a1febda318078c661eccb4d"
      ],
      "author": {
        "name": "YOSHIFUJI Hideaki",
        "email": "yoshfuji@linux-ipv6.org",
        "time": "Sat Mar 13 12:27:21 2010 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Sat Mar 13 12:27:21 2010 -0800"
      },
      "message": "bridge: ensure to unlock in error path in br_multicast_query().\n\nSigned-off-by: YOSHIFUJI Hideaki \u003cyoshfuji@linux-ipv6.org\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "e2577a065832f2c6d108de2e027891bdb2d78924",
      "tree": "e7d2d4f8c853fad7a896da5d3b7f8b6202d9e8a1",
      "parents": [
        "3f07d1295191cfa41125e4e61ee2064790070071"
      ],
      "author": {
        "name": "Herbert Xu",
        "email": "herbert@gondor.apana.org.au",
        "time": "Sat Mar 13 12:23:29 2010 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Sat Mar 13 12:23:29 2010 -0800"
      },
      "message": "ipv6: Send netlink notification when DAD fails\n\nIf we are managing IPv6 addresses using DHCP, it would be nice\nfor user-space to be notified if an address configured through\nDHCP fails DAD.  Otherwise user-space would have to poll to see\nwhether DAD succeeds.\n\nThis patch uses the existing notification mechanism and simply\nhooks it into the DAD failure code path.\n\nSigned-off-by: Herbert Xu \u003cherbert@gondor.apana.org.au\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "a003460b21323ddb29479505d9555f0985b8b2f1",
      "tree": "c8c7f2e70d5fdfc91f0ae2b1bd4b7a27913eb1d2",
      "parents": [
        "964ad81cbd933e5fa310faeec1e923c14651284b",
        "dee60269f0fe90927ce5095eef3a8723bbb9c53e"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Sat Mar 13 12:17:09 2010 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Sat Mar 13 12:17:09 2010 -0800"
      },
      "message": "Merge branch \u0027master\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6\n"
    },
    {
      "commit": "45bc21edb52fa71dbb1324c6f573aa880e95519d",
      "tree": "adee2b59a562679241f874c978162739e1df78bb",
      "parents": [
        "fae4528b2341f2ab0c86c191e24d9cdd93624c60"
      ],
      "author": {
        "name": "Sripathi Kodi",
        "email": "sripathik@in.ibm.com",
        "time": "Mon Mar 08 17:33:04 2010 +0000"
      },
      "committer": {
        "name": "Eric Van Hensbergen",
        "email": "ericvh@gmail.com",
        "time": "Sat Mar 13 08:57:29 2010 -0600"
      },
      "message": "9p: Change the name of new protocol from 9p2010.L to 9p2000.L\n\nThis patch changes the name of the new 9P protocol from 9p2010.L to\n9p2000.u. This is because we learnt that the name 9p2010 is already\nbeing used by others.\n\nSigned-off-by: Sripathi Kodi \u003csripathik@in.ibm.com\u003e\nSigned-off-by: Eric Van Hensbergen \u003cericvh@gmail.com\u003e\n"
    },
    {
      "commit": "86c8437383acd85c05ec7c9a004f59fe7ac9821a",
      "tree": "05c2b805162f0aaf8f7d52e0b7fab4e12f8dcb75",
      "parents": [
        "97ee9b0257402f4731b55dfea42f24d26d793ddf"
      ],
      "author": {
        "name": "Aneesh Kumar K.V",
        "email": "aneesh.kumar@linux.vnet.ibm.com",
        "time": "Sat Mar 06 04:44:15 2010 +0000"
      },
      "committer": {
        "name": "Eric Van Hensbergen",
        "email": "ericvh@gmail.com",
        "time": "Sat Mar 13 08:57:29 2010 -0600"
      },
      "message": "net/9p: Add sysfs mount_tag file for virtio 9P device\n\nThis adds a new file for virtio 9P device. The file\ncontain details of the mount device name that should\nbe used to mount the 9P file system.\n\nEx: /sys/devices/virtio-pci/virtio1/mount_tag  file now\ncontian the tag name to be used to mount the 9P file system.\n\nSigned-off-by: Aneesh Kumar K.V \u003caneesh.kumar@linux.vnet.ibm.com\u003e\nSigned-off-by: Eric Van Hensbergen \u003cericvh@gmail.com\u003e\n"
    },
    {
      "commit": "97ee9b0257402f4731b55dfea42f24d26d793ddf",
      "tree": "191e6b08fd882862ede97925a0584f408f6e6e1c",
      "parents": [
        "daf9fe2ee9a203c4fc555cfe5c5f3d9f660e743c"
      ],
      "author": {
        "name": "Aneesh Kumar K.V",
        "email": "aneesh.kumar@linux.vnet.ibm.com",
        "time": "Sat Mar 06 04:44:14 2010 +0000"
      },
      "committer": {
        "name": "Eric Van Hensbergen",
        "email": "ericvh@gmail.com",
        "time": "Sat Mar 13 08:57:28 2010 -0600"
      },
      "message": "net/9p: Use the tag name in the config space for identifying mount point\n\nThis patch use the tag name in the config space to identify the\nmount device. The the virtio device name depend on the enumeration\norder of the device and may not remain the same across multiple boots\nSo we use the tag name which is set via qemu option to uniquely identify\nthe mount device\n\nSigned-off-by: Aneesh Kumar K.V \u003caneesh.kumar@linux.vnet.ibm.com\u003e\nSigned-off-by: Eric Van Hensbergen \u003cericvh@gmail.com\u003e\n"
    },
    {
      "commit": "c32da02342b7521df25fefc2ef20aee0e61cf887",
      "tree": "7e38f664fa3e13602c357d37f77d8adcf82fccc2",
      "parents": [
        "dca1d9f6d7ae428c193f32bd3e9a4ca13176648b",
        "318ae2edc3b29216abd8a2510f3f80b764f06858"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Mar 12 16:04:50 2010 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Mar 12 16:04:50 2010 -0800"
      },
      "message": "Merge branch \u0027for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial\n\n* \u0027for-linus\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial: (56 commits)\n  doc: fix typo in comment explaining rb_tree usage\n  Remove fs/ntfs/ChangeLog\n  doc: fix console doc typo\n  doc: cpuset: Update the cpuset flag file\n  Fix of spelling in arch/sparc/kernel/leon_kernel.c no longer needed\n  Remove drivers/parport/ChangeLog\n  Remove drivers/char/ChangeLog\n  doc: typo - Table 1-2 should refer to \"status\", not \"statm\"\n  tree-wide: fix typos \"ass?o[sc]iac?te\" -\u003e \"associate\" in comments\n  No need to patch AMD-provided drivers/gpu/drm/radeon/atombios.h\n  devres/irq: Fix devm_irq_match comment\n  Remove reference to kthread_create_on_cpu\n  tree-wide: Assorted spelling fixes\n  tree-wide: fix \u0027lenght\u0027 typo in comments and code\n  drm/kms: fix spelling in error message\n  doc: capitalization and other minor fixes in pnp doc\n  devres: typo fix s/dev/devm/\n  Remove redundant trailing semicolons from macros\n  fix typo \"definetly\" -\u003e \"definitely\" in comment\n  tree-wide: s/widht/width/g typo in comments\n  ...\n\nFix trivial conflict in Documentation/laptops/00-INDEX\n"
    },
    {
      "commit": "964ad81cbd933e5fa310faeec1e923c14651284b",
      "tree": "35b2be921745d6a3077cb363d96eceea68eb318d",
      "parents": [
        "717ea4b3474852057b1ce2c639ce219f4f8d3a8d"
      ],
      "author": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Fri Mar 12 00:00:17 2010 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Fri Mar 12 00:00:17 2010 -0800"
      },
      "message": "ipconfig: Handle devices which take some time to come up.\n\nSome network devices, particularly USB ones, take several seconds to\nfully init and appear in the device list.\n\nIf the user turned ipconfig on, they are using it for NFS root or some\nother early booting purpose.  So it makes no sense to just flat out\nfail immediately if the device isn\u0027t found.\n\nIt also doesn\u0027t make sense to just jack up the initial wait to\nsomething crazy like 10 seconds.\n\nInstead, poll immediately, and then periodically once a second,\nwaiting for a usable device to appear.  Fail after 12 seconds.\n\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\nTested-by: Christian Pellegrin \u003cchripell@fsfe.org\u003e\n"
    },
    {
      "commit": "51f5f8ca446d4c59041b9b6995821e13208897ea",
      "tree": "871e000936610452e975788cce836e7253b477e3",
      "parents": [
        "2a13052fe495948e572839e514e0e0cd236c50b0"
      ],
      "author": {
        "name": "Eric Dumazet",
        "email": "eric.dumazet@gmail.com",
        "time": "Wed Mar 10 17:13:36 2010 +0100"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 10 16:29:11 2010 -0500"
      },
      "message": "mac80211: Fix memory leak in ieee80211_if_write()\n\nFix memory leak and use kmalloc() instead of kzalloc() as we are going\nto overwrite the allocated buffer.\n\nSigned-off-by: Eric Dumazet \u003ceric.dumazet@gmail.com\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "2a13052fe495948e572839e514e0e0cd236c50b0",
      "tree": "7a15b095d5dc57fb21ea789439851205e2865349",
      "parents": [
        "41093167ec6c1854903a4bc38a37b5740c028984"
      ],
      "author": {
        "name": "Juuso Oikarinen",
        "email": "juuso.oikarinen@nokia.com",
        "time": "Tue Mar 09 14:25:02 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 10 16:29:10 2010 -0500"
      },
      "message": "mac80211: Fix (dynamic) power save entry\n\nCurrently hardware with !IEEE80211_HW_PS_NULLFUNC_STACK and\nIEEE80211_HW_REPORTS_TX_ACK_STATUS will never enter PSM due to the\nconditions in the power save entry functions.\n\nFix those conditions.\n\nSigned-off-by: Juuso Oikarinen \u003cjuuso.oikarinen@nokia.com\u003e\nCc: stable@kernel.org\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "38a679a52be13d5a0c766597ab823e06688d6e8e",
      "tree": "56e6e769ff0dd38264bbb1462562761824701925",
      "parents": [
        "e5a9a35cb9c0d92d7c986cb3696fb794be100087"
      ],
      "author": {
        "name": "Jouni Malinen",
        "email": "j@w1.fi",
        "time": "Sat Mar 06 18:35:08 2010 +0200"
      },
      "committer": {
        "name": "John W. Linville",
        "email": "linville@tuxdriver.com",
        "time": "Wed Mar 10 16:16:54 2010 -0500"
      },
      "message": "mac80211: Fix sta_mtx unlocking on insert STA failure path\n\nCommit 34e895075e21be3e21e71d6317440d1ee7969ad0 introduced sta_mtx\nlocking into sta_info_insert() (now sta_info_insert_rcu), but forgot\nto unlock this mutex on one of the error paths. Fix this by adding\nthe missing mutex_unlock() call for the case where STA insert fails\ndue to an entry existing already. This may happen at least in AP mode\nwhen a STA roams between two BSSes (vifs).\n\nSigned-off-by: Jouni Malinen \u003cj@w1.fi\u003e\nSigned-off-by: John W. Linville \u003clinville@tuxdriver.com\u003e\n"
    },
    {
      "commit": "3041f5170751e3522aa1bd6e8ca5d98e846720b0",
      "tree": "f692b5193501ff8d3f6895321f936895980e6761",
      "parents": [
        "0a141509ede48ac33ef756ac1640f4d3f46fa2db"
      ],
      "author": {
        "name": "Eric Dumazet",
        "email": "eric.dumazet@gmail.com",
        "time": "Tue Mar 09 19:09:08 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Wed Mar 10 07:32:28 2010 -0800"
      },
      "message": "net: Fix dev_mc_add()\n\nCommit 6e17d45a (net: add addr len check to dev_mc_add)\nadded a bug in dev_mc_add(), since it can now exit with a lock\nimbalance.\n\nSigned-off-by: Eric Dumazet \u003ceric.dumazet@gmail.com\u003e\nCC: Jiri Pirko \u003cjpirko@redhat.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "0a141509ede48ac33ef756ac1640f4d3f46fa2db",
      "tree": "c53ca916f6b61fc72d216d0bb77c02f5cad97a55",
      "parents": [
        "bb134d5d9580fc7b945e3bca3c4b263947022966"
      ],
      "author": {
        "name": "Eric Dumazet",
        "email": "eric.dumazet@gmail.com",
        "time": "Tue Mar 09 19:40:54 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Wed Mar 10 07:32:28 2010 -0800"
      },
      "message": "net: Annotates neigh_invalidate()\n\nAnnotates neigh_invalidate() with __releases() and __acquires() for\nsparse sake.\n\nSigned-off-by: Eric Dumazet \u003ceric.dumazet@gmail.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "bb134d5d9580fc7b945e3bca3c4b263947022966",
      "tree": "65f68dd2c96566c507854e4145af1b533e30833d",
      "parents": [
        "fe234f0e5cbb880792d2d1ac0743cf8c07e9dde3"
      ],
      "author": {
        "name": "Eric Dumazet",
        "email": "eric.dumazet@gmail.com",
        "time": "Tue Mar 09 05:55:56 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Wed Mar 10 07:32:27 2010 -0800"
      },
      "message": "tcp: Fix tcp_v4_rcv()\n\nCommit d218d111 (tcp: Generalized TTL Security Mechanism) added a bug\nfor TIMEWAIT sockets. We should not test min_ttl for TW sockets.\n\nReported-by: Tetsuo Handa \u003cpenguin-kernel@I-love.SAKURA.ne.jp\u003e\nSigned-off-by: Eric Dumazet \u003ceric.dumazet@gmail.com\u003e\nAcked-by: Stephen Hemminger \u003cshemminger@vyatta.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "de5865714621e23d65c52955ca2125dbb074c242",
      "tree": "07ecadd177e67119bc0906e011bfb3a1e3666418",
      "parents": [
        "d88dca79d3852a3623f606f781e013d61486828a"
      ],
      "author": {
        "name": "Neil Horman",
        "email": "nhorman@tuxdriver.com",
        "time": "Mon Mar 08 12:43:56 2010 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Mar 08 12:43:56 2010 -0800"
      },
      "message": "tipc: filter out messages not intended for this host\n\nPort commit 20deb48d16fdd07ce2fdc8d03ea317362217e085\nfrom git://tipc.cslab.ericsson.net/pub/git/people/allan/tipc.git\n\nPart of the large effort I\u0027m trying to help with getting all the downstreamed\ncode from windriver forward ported to the upstream tree\n\nOrigional commit message\nRestore check to filter out inadverdently received messages\nThis patch reimplements a check that allows TIPC to discard messages\nthat are not intended for it.  This check was present in TIPC 1.5/1.6,\nbut was removed by accident during the development of TIPC 1.7; it has\nnow been updated to account for new features present in TIPC 1.7 and\nreinserted into TIPC.  The main benefit of this check is to filter\nout messages arriving from orphaned link endpoints, which can arise\nwhen a node exits the network and then re-enters it with a different\nTIPC network address (i.e. \u003cZ.C.N\u003e value).\n\nSigned-off-by: Neil Horman \u003cnhorman@tuxdriver.com\u003e\nOrigionally-authored-by: Allan Stephens \u003callan.stephens@windriver.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "d88dca79d3852a3623f606f781e013d61486828a",
      "tree": "078cc78a5f0f6da441fa2942a2933ec0dcbab260",
      "parents": [
        "f5c445ed4148434f142be0263a8ad7cb58503e8a"
      ],
      "author": {
        "name": "Neil Horman",
        "email": "nhorman@tuxdriver.com",
        "time": "Mon Mar 08 12:20:58 2010 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Mar 08 12:20:58 2010 -0800"
      },
      "message": "tipc: fix endianness on tipc subscriber messages\n\nRemove htohl implementation from tipc\n\nI was working on forward porting the downstream commits for TIPC and ran accross this one:\nhttp://tipc.cslab.ericsson.net/cgi-bin/gitweb.cgi?p\u003dpeople/allan/tipc.git;a\u003dcommitdiff;h\u003d894279b9437b63cbb02405ad5b8e033b51e4e31e\n\nI was going to just take it, when I looked closer and noted what it was doing.\nThis is basically a routine to byte swap fields of data in sent/received packets\nfor tipc, dependent upon the receivers guessed endianness of the peer when a\nconnection is established.  Asside from just seeming silly to me, it appears to\nviolate the latest RFC draft for tipc:\nhttp://tipc.sourceforge.net/doc/draft-spec-tipc-02.txt\nWhich, according to section 4.2 and 4.3.3, requires that all fields of all\ncommands be sent in network byte order.  So instead of just taking this patch,\ninstead I\u0027m removing the htohl function and replacing the calls with calls to\nntohl in the rx path and htonl in the send path.\n\nAs part of this fix, I\u0027m also changing the subscr_cancel function, which\nsearches the list of subscribers, using a memcmp of the entire subscriber list,\nfor the entry to tear down.  unfortunately it memcmps the entire tipc_subscr\nstructure which has several bits that are private to the local side, so nothing\nwill ever match.  section 5.2 of the draft spec indicates the \u003ctype,upper,lower\u003e\ntuple should uniquely identify a subscriber, so convert subscr_cancel to just\nmatch on those fields (properly endian swapped).\n\nI\u0027ve tested this using the tipc test suite, and its passed without issue.\n\nSigned-off-by: Neil Horman \u003cnhorman@tuxdriver.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "f5c445ed4148434f142be0263a8ad7cb58503e8a",
      "tree": "7e3b87503eb416261dcb5424cc269b2de77e4616",
      "parents": [
        "81160e66cca3d3a16b7d88e0e2dccfc5c76f36f9"
      ],
      "author": {
        "name": "Eric Dumazet",
        "email": "eric.dumazet@gmail.com",
        "time": "Mon Mar 08 12:17:04 2010 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Mar 08 12:17:04 2010 -0800"
      },
      "message": "ethtool: Use noinline_for_stack\n\nUse self documenting noinline_for_stack instead of duplicated comments.\n\nSigned-off-by: Eric Dumazet \u003ceric.dumazet@gmail.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "81160e66cca3d3a16b7d88e0e2dccfc5c76f36f9",
      "tree": "4bd45b3b0870989ab742a318dd2940b94ca1f80f",
      "parents": [
        "fc0b579168cbe737c83c6b9bbfe265d3ae6baca6"
      ],
      "author": {
        "name": "Joe Perches",
        "email": "joe@perches.com",
        "time": "Mon Mar 08 12:15:59 2010 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Mar 08 12:15:59 2010 -0800"
      },
      "message": "net/sunrpc: Convert (void)snprintf to snprintf\n\n(Applies on top of \"Remove uses of NIPQUAD, use %pI4\")\n\nCasts to void of snprintf are most uncommon in kernel source.\n9 use casts, 1301 do not.\n\nRemove the remaining uses in net/sunrpc/\n\nSigned-off-by: Joe Perches \u003cjoe@perches.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "fc0b579168cbe737c83c6b9bbfe265d3ae6baca6",
      "tree": "a9818961a11c7322cb585b03859ebf497e8db62f",
      "parents": [
        "e9dcd1613f0ac0b3573b7d813a2c5672cd8302eb"
      ],
      "author": {
        "name": "Joe Perches",
        "email": "joe@perches.com",
        "time": "Mon Mar 08 12:15:28 2010 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Mar 08 12:15:28 2010 -0800"
      },
      "message": "net/sunrpc: Remove uses of NIPQUAD, use %pI4\n\nOriginally submitted Jan 1, 2010\nhttp://patchwork.kernel.org/patch/71221/\n\nConvert NIPQUAD to the %pI4 format extension where possible\nConvert %02x%02x%02x%02x/NIPQUAD to %08x/ntohl\n\nSigned-off-by: Joe Perches \u003cjoe@perches.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "28b2774a0d5852236dab77a4147b8b88548110f1",
      "tree": "909580f2a71dcda319bc961d0ce24171020f44fd",
      "parents": [
        "9837638727488922727b0cfd438039fa73364183"
      ],
      "author": {
        "name": "Eric Dumazet",
        "email": "eric.dumazet@gmail.com",
        "time": "Mon Mar 08 11:32:01 2010 -0800"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Mar 08 11:32:01 2010 -0800"
      },
      "message": "tcp: Fix tcp_make_synack()\n\nCommit 4957faad (TCPCT part 1g: Responder Cookie \u003d\u003e Initiator), part\nof TCP_COOKIE_TRANSACTION implementation, forgot to correctly size\nsynack skb in case user data must be included.\n\nMany thanks to Mika Pentillä for spotting this error.\n\nReported-by: Penttillä Mika \u003cmika.penttila@ixonos.com\u003e\nSigned-off-by: Eric Dumazet \u003ceric.dumazet@gmail.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "9837638727488922727b0cfd438039fa73364183",
      "tree": "608b2cf6415553a06dfc09b6981f816b285622c8",
      "parents": [
        "1515faf2f995add976d4428bbc1583a4a0c81e5f"
      ],
      "author": {
        "name": "Eric Dumazet",
        "email": "eric.dumazet@gmail.com",
        "time": "Mon Mar 08 03:20:00 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Mar 08 10:45:31 2010 -0800"
      },
      "message": "net: fix route cache rebuilds\n\nWe added an automatic route cache rebuilding in commit 1080d709fb9d8cd43\nbut had to correct few bugs. One of the assumption of original patch,\nwas that entries where kept sorted in a given way.\n\nThis assumption is known to be wrong (commit 1ddbcb005c395518 gave an\nexplanation of this and corrected a leak) and expensive to respect.\n\nPaweł Staszewski reported to me one of his machine got its routing cache\ndisabled after few messages like :\n\n[ 2677.850065] Route hash chain too long!\n[ 2677.850080] Adjust your secret_interval!\n[82839.662993] Route hash chain too long!\n[82839.662996] Adjust your secret_interval!\n[155843.731650] Route hash chain too long!\n[155843.731664] Adjust your secret_interval!\n[155843.811881] Route hash chain too long!\n[155843.811891] Adjust your secret_interval!\n[155843.858209] vlan0811: 5 rebuilds is over limit, route caching\ndisabled\n[155843.858212] Route hash chain too long!\n[155843.858213] Adjust your secret_interval!\n\nThis is because rt_intern_hash() might be fooled when computing a chain\nlength, because multiple entries with same keys can differ because of\nTOS (or mark/oif) bits.\n\nIn the rare case the fast algorithm see a too long chain, and before\ntaking expensive path, we call a helper function in order to not count\nduplicates of same routes, that only differ with tos/mark/oif bits. This\nhelper works with data already in cpu cache and is not be very\nexpensive, despite its O(N^2) implementation.\n\nPaweł Staszewski sucessfully tested this patch on his loaded router.\n\nReported-and-tested-by: Paweł Staszewski \u003cpstaszewski@itcare.pl\u003e\nSigned-off-by: Eric Dumazet \u003ceric.dumazet@gmail.com\u003e\nAcked-by: Neil Horman \u003cnhorman@tuxdriver.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "6cce09f87a04797fae5b947ef2626c14a78f0b49",
      "tree": "a1d7638f9571a29db9bc5c5d8e0baee19597d59e",
      "parents": [
        "4045635318538d3ddd2007720412fdc4b08f6a62"
      ],
      "author": {
        "name": "Eric Dumazet",
        "email": "eric.dumazet@gmail.com",
        "time": "Sun Mar 07 23:21:57 2010 +0000"
      },
      "committer": {
        "name": "David S. Miller",
        "email": "davem@davemloft.net",
        "time": "Mon Mar 08 10:45:27 2010 -0800"
      },
      "message": "tcp: Add SNMP counters for backlog and min_ttl drops\n\nCommit 6b03a53a (tcp: use limited socket backlog) added the possibility\nof dropping frames when backlog queue is full.\n\nCommit d218d111 (tcp: Generalized TTL Security Mechanism) added the\npossibility of dropping frames when TTL is under a given limit.\n\nThis patch adds new SNMP MIB entries, named TCPBacklogDrop and\nTCPMinTTLDrop, published in /proc/net/netstat in TcpExt: line\n\nnetstat -s | egrep \"TCPBacklogDrop|TCPMinTTLDrop\"\n    TCPBacklogDrop: 0\n    TCPMinTTLDrop: 0\n\nSigned-off-by: Eric Dumazet \u003ceric.dumazet@gmail.com\u003e\nSigned-off-by: David S. Miller \u003cdavem@davemloft.net\u003e\n"
    },
    {
      "commit": "318ae2edc3b29216abd8a2510f3f80b764f06858",
      "tree": "ce595adde342f57f379d277b25e4dd206988a052",
      "parents": [
        "25cf84cf377c0aae5dbcf937ea89bc7893db5176",
        "3e58974027b04e84f68b964ef368a6cd758e2f84"
      ],
      "author": {
        "name": "Jiri Kosina",
        "email": "jkosina@suse.cz",
        "time": "Mon Mar 08 16:55:37 2010 +0100"
      },
      "committer": {
        "name": "Jiri Kosina",
        "email": "jkosina@suse.cz",
        "time": "Mon Mar 08 16:55:37 2010 +0100"
      },
      "message": "Merge branch \u0027for-next\u0027 into for-linus\n\nConflicts:\n\tDocumentation/filesystems/proc.txt\n\tarch/arm/mach-u300/include/mach/debug-macro.S\n\tdrivers/net/qlge/qlge_ethtool.c\n\tdrivers/net/qlge/qlge_main.c\n\tdrivers/net/typhoon.c\n"
    },
    {
      "commit": "0898f99a267f89a7dc72cc687955f17613a711b8",
      "tree": "8ebc2c7abc1d8ede457f5690778ca2a596d558ca",
      "parents": [
        "63e690caf24e8f43ba019fe1107669746b072d80"
      ],
      "author": {
        "name": "YOSHIFUJI Hideaki",
        "email": "yoshfuji@linux-ipv6.org",
        "time": "Mon Mar 08 13:15:59 2010 +0100"
      },
      "committer": {
        "name": "Patrick McHardy",
        "email": "kaber@trash.net",
        "time": "Mon Mar 08 13:15:59 2010 +0100"
      },
      "message": "netfilter: ebt_ip6: Use ipv6_masked_addr_cmp()\n\nSigned-off-by: YOSHIFUJI Hideaki \u003cyoshfuji@linux-ipv6.org\u003e\nSigned-off-by: Bart De Schuymer \u003cbdschuym@pandora.be\u003e\nSigned-off-by: Patrick McHardy \u003ckaber@trash.net\u003e\n"
    }
  ],
  "next": "52cf25d0ab7f78eeecc59ac652ed5090f69b619e"
}
