)]}'
{
  "log": [
    {
      "commit": "3ddfbcf19b15ccd25a0b4b2dc2e38000e08de739",
      "tree": "ca77158ab291453ed39e87f2d81beef9e8d1a560",
      "parents": [
        "f6d3577da14e877b79517c883d1139ee6ad7da45"
      ],
      "author": {
        "name": "David Gibson",
        "email": "david@gibson.dropbear.id.au",
        "time": "Thu Nov 10 12:56:55 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Thu Nov 10 13:10:38 2005 +1100"
      },
      "message": "[PATCH] powerpc: Consolidate asm compatibility macros\n\nThis patch consolidates macros used to generate assembly for\ncompatibility across different CPUs or configs.  A new header,\nasm-powerpc/asm-compat.h contains the main compatibility macros.  It\nuses some preprocessor magic to make the macros suitable both for use\nin .S files, and in inline asm in .c files.  Headers (bitops.h,\nuaccess.h, atomic.h, bug.h) which had their own such compatibility\nmacros are changed to use asm-compat.h.\n\nppc_asm.h is now for use in .S files *only*, and a #error enforces\nthat.  As such, we\u0027re a lot more careless about namespace pollution\nhere than in asm-compat.h.\n\nWhile we\u0027re at it, this patch adds a call to the PPC405_ERR77 macro in\nfutex.h which should have had it already, but didn\u0027t.\n\nBuilt and booted on pSeries, Maple and iSeries (ARCH\u003dpowerpc).  Built\nfor 32-bit powermac (ARCH\u003dpowerpc) and Walnut (ARCH\u003dppc).\n\nSigned-off-by: David Gibson \u003cdwg@au1.ibm.com\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "104dd65fef378773ec0510c788bd4b5ad6ea1121",
      "tree": "e72d3f0c80d73366f8341f321c9fbb9e7f78ba6f",
      "parents": [
        "b5ca71a58bacb5f1d563a0fe51525b6006618e82"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Nov 02 15:19:47 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Nov 02 15:19:47 2005 +1100"
      },
      "message": "powerpc: clean up bug.h further\n\nThis simplifies the macros which are different between 32-bit and\n64-bit.  It also fixes a couple of printks on the bug-\u003eline element,\nwhich is now a long.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "f2cad7a8cdbe66d313059824d61ef1f455031566",
      "tree": "2eeadc87ded22e3581ebcc418e83107911f21a06",
      "parents": [
        "2ff2ae7a0d7bfd813325663dc6353d034db7473d"
      ],
      "author": {
        "name": "Al Viro",
        "email": "viro@ftp.linux.org.uk",
        "time": "Wed Nov 02 03:10:43 2005 +0000"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Nov 02 15:01:30 2005 +1100"
      },
      "message": "[PATCH] ppc bug.h namespace pollution\n\nDATA_TYPE is really not a good thing to put into header that\ngets included all over the tree...\n\nJust make the cast always (long) and get rid of DATA_TYPE altogether.\n\nSigned-off-by: Al Viro \u003cviro@zeniv.linux.org.uk\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "89003ebf9e6a9ccb2327caf72955edd86b274c14",
      "tree": "b4e7ff84b1b0aa0adccfac237981e45ea371553a",
      "parents": [
        "a0e60b2033b30a6bb8479629001cf98e58e4079a"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Tue Nov 01 21:54:38 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Tue Nov 01 21:54:38 2005 +1100"
      },
      "message": "powerpc: Fix BUG/WARN macros for 64-bit\n\nThe bug_entry struct had an int in the middle of pointers and unsigned\nlongs, and the inline asm that generated the bug table entries didn\u0027t\ninsert the necessary padding, so the fields following it didn\u0027t get\ninitialized properly and an oops resulted.  This changes the int field\n(the line number) to a long so that all the fields are the same size\nand no padding is required.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "25433b123ce1a3da78ddd9b848484bca91cbb7a1",
      "tree": "259ee758b3770894160dd8a732fddd4067ea8699",
      "parents": [
        "3e57615bb5a8b6208627049884ee441f6d05905e"
      ],
      "author": {
        "name": "Becky Bruce",
        "email": "bgill@freescale.com",
        "time": "Mon Sep 19 17:01:54 2005 -0500"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Sep 21 19:21:09 2005 +1000"
      },
      "message": "[PATCH] powerpc: Merge bug.h\n\nppc32/ppc64: Merge bug.h into include/asm-powerpc\n\nThis patch merges bug.h into include/asm-powerpc.  Changed the data\nstructure for bug_entry such that line is always an int on both 32 and\n64-bit platforms; removed casts to int from the 64-bit trap code to\nreflect this.\n\nSigned-off-by: Kumar Gala \u003ckumar.gala@freescale.com\u003e\nSigned-off-by: Becky Bruce \u003cBecky.Bruce@freescale.com\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "32818c2eb6b83ea5065c89e0c3cf774abc4dc02b",
      "tree": "909eed391340511798a80a4e693b401b61ef1e50",
      "parents": [
        "212d6d2237f60bc28c1518f8abf9d3ed6c17574a"
      ],
      "author": {
        "name": "Anton Blanchard",
        "email": "anton@samba.org",
        "time": "Fri Aug 26 18:34:07 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Fri Aug 26 19:37:11 2005 -0700"
      },
      "message": "[PATCH] ppc64: Fix issue with gcc 4.0 compiled kernels\n\nI recently had a BUG_ON() go off spuriously on a gcc 4.0 compiled kernel.\nIt turns out gcc-4.0 was removing a sign extension while earlier gcc\nversions would not.  Thinking this to be a compiler bug, I submitted a\nreport:\n\nhttp://gcc.gnu.org/bugzilla/show_bug.cgi?id\u003d23422\n\nIt turns out we need to cast the input in order to tell gcc to sign extend\nit.\n\nThanks to Andrew Pinski for his help on this bug.\n\nSigned-off-by: Anton Blanchard \u003canton@samba.org\u003e\nCc: Paul Mackerras \u003cpaulus@samba.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "c8538a7aa5527d02c7191ac5da124efadf6a2827",
      "tree": "6a2fae8be308d38ed1abe1d5c7539db29238ae61",
      "parents": [
        "e43379f10b42194b8a6e1de342cfb44463c0f6da"
      ],
      "author": {
        "name": "Matt Mackall",
        "email": "mpm@selenic.com",
        "time": "Sun May 01 08:59:01 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@ppc970.osdl.org",
        "time": "Sun May 01 08:59:01 2005 -0700"
      },
      "message": "[PATCH] remove all kernel BUGs\n\nThis patch eliminates all kernel BUGs, trims about 35k off the typical\nkernel, and makes the system slightly faster.\n\nSigned-off-by: Matt Mackall \u003cmpm@selenic.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "1da177e4c3f41524e886b7f1b8a0c1fc7321cac2",
      "tree": "0bba044c4ce775e45a88a51686b5d9f90697ea9d",
      "parents": [],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@ppc970.osdl.org",
        "time": "Sat Apr 16 15:20:36 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@ppc970.osdl.org",
        "time": "Sat Apr 16 15:20:36 2005 -0700"
      },
      "message": "Linux-2.6.12-rc2\n\nInitial git repository build. I\u0027m not bothering with the full history,\neven though we have it. We can create a separate \"historical\" git\narchive of that later if we want to, and in the meantime it\u0027s about\n3.2GB when imported into git - space that would just make the early\ngit days unnecessarily complicated, when we don\u0027t have a lot of good\ninfrastructure for it.\n\nLet it rip!\n"
    }
  ]
}
