)]}'
{
  "log": [
    {
      "commit": "6fbe85f914ad08cc43408a40ad18a561222e1b93",
      "tree": "320da01ba20dcbf6d31d80d35b1217193d663814",
      "parents": [
        "a9a5cd5d2a57fb76dbae2115450f777b69beccf7",
        "f39224a8c1828bdd327539da72a53d8a13595838"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Apr 18 10:34:24 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Apr 18 10:34:24 2006 -0700"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc-merge\n\n* git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc-merge:\n  powerpc: Use correct sequence for putting CPU into nap mode\n  [PATCH] spufs: fix context-switch decrementer code\n  [PATCH] powerpc32: Set cpu explicitly in kernel compiles\n  [PATCH] powerpc/pseries: bugfix: balance calls to pci_device_put\n  [PATCH] powerpc: Fix machine detection in prom_init.c\n  [PATCH] ppc32: Fix string comparing in platform_notify_map\n  [PATCH] powerpc: Avoid __initcall warnings\n  [PATCH] powerpc: Ensure runlatch is off in the idle loop\n  powerpc: Fix CHRP booting - needs a define_machine call\n  powerpc: iSeries has only 256 IRQs\n"
    },
    {
      "commit": "f39224a8c1828bdd327539da72a53d8a13595838",
      "tree": "cc9e9139e2e7e2e36774e5c52a5311439160633c",
      "parents": [
        "183b73ae7c9e4e19fa95d88e1778481899a65210"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Tue Apr 18 21:49:11 2006 +1000"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Tue Apr 18 21:49:11 2006 +1000"
      },
      "message": "powerpc: Use correct sequence for putting CPU into nap mode\n\nWe weren\u0027t using the recommended sequence for putting the CPU into\nnap mode.  When I changed the idle loop, for some reason 7447A cpus\nstarted hanging when we put them into nap mode.  Changing to the\nrecommended sequence fixes that.\n\nThe complexity here is that the recommended sequence is a loop that\nkeeps putting the cpu back into nap mode.  Clearly we need some way\nto break out of the loop when an interrupt (external interrupt,\ndecrementer, performance monitor) occurs.  Here we use a bit in\nthe thread_info struct to indicate that we need this, and the exception\nentry code notices this and arranges for the exception to return\nto the value in the link register, thus breaking out of the loop.\nWe use a new `local_flags\u0027 field in the thread_info which we can\nalter without needing to use an atomic update sequence.\n\nThe PPC970 has the same recommended sequence, so we do the same thing\nthere too.\n\nThis also fixes a bug in the kernel stack overflow handling code on\n32-bit, since it was causing a value that we needed in a register to\nget trashed.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "c80d79d746cc48bd94b0ce4f6d4f3c90cd403aaf",
      "tree": "5aa8d1590d95f8fd820ad797fe03a063b592e9bf",
      "parents": [
        "653edba1a8b2ed018bdfb078131324dfbfe1dd6a"
      ],
      "author": {
        "name": "Yasunori Goto",
        "email": "y-goto@jp.fujitsu.com",
        "time": "Mon Apr 10 22:53:53 2006 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Tue Apr 11 06:18:39 2006 -0700"
      },
      "message": "[PATCH] Configurable NODES_SHIFT\n\nCurrent implementations define NODES_SHIFT in include/asm-xxx/numnodes.h for\neach arch.  Its definition is sometimes configurable.  Indeed, ia64 defines 5\nNODES_SHIFT values in the current git tree.  But it looks a bit messy.\n\nSGI-SN2(ia64) system requires 1024 nodes, and the number of nodes already has\nbeen changeable by config.  Suitable node\u0027s number may be changed in the\nfuture even if it is other architecture.  So, I wrote configurable node\u0027s\nnumber.\n\nThis patch set defines just default value for each arch which needs multi\nnodes except ia64.  But, it is easy to change to configurable if necessary.\n\nOn ia64 the number of nodes can be already configured in generic ia64 and SN2\nconfig.  But, NODES_SHIFT is defined for DIG64 and HP\u0027S machine too.  So, I\nchanged it so that all platforms can be configured via CONFIG_NODES_SHIFT.  It\nwould be simpler.\n\nSee also: http://marc.theaimsgroup.com/?l\u003dlinux-kernel\u0026m\u003d114358010523896\u0026w\u003d2\n\nSigned-off-by: Yasunori Goto \u003cy-goto@jp.fujitsu.com\u003e\nCc: Hirokazu Takata \u003ctakata@linux-m32r.org\u003e\nCc: \"Luck, Tony\" \u003ctony.luck@intel.com\u003e\nCc: Andi Kleen \u003cak@muc.de\u003e\nCc: Paul Mackerras \u003cpaulus@samba.org\u003e\nCc: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nCc: Ivan Kokshaysky \u003cink@jurassic.park.msu.ru\u003e\nCc: Richard Henderson \u003crth@twiddle.net\u003e\nCc: Kyle McMartin \u003ckyle@mcmartin.ca\u003e\nCc: Russell King \u003crmk@arm.linux.org.uk\u003e\nCc: Ralf Baechle \u003cralf@linux-mips.org\u003e\nCc: Jack Steiner \u003csteiner@sgi.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "9b781727fd1062671afa144b93e8c69b14bcac4d",
      "tree": "1cec35f0cedc664394b15165d96944019b8e1ff2",
      "parents": [
        "0eb4cb9b16aba6d610a0716503b96d299b308d44"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Mon Mar 27 19:15:26 2006 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Mon Mar 27 19:15:26 2006 +1100"
      },
      "message": "powerpc: Move cpu_setup_6xx.S and temp.c over to arch/powerpc\n\nAlso renamed temp.c to tau_6xx.c (for thermal assist unit) and updated\nthe Kconfig option description and help text for CONFIG_TAU.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "e779b2f95f3786cd9cfc804cd6f04f7267d75541",
      "tree": "19d53822cc6c711ee5fa56be2eb8462dd0bc7d70",
      "parents": [
        "59e18a2e1c8f6642c307032939daaf474c16344e"
      ],
      "author": {
        "name": "Akinobu Mita",
        "email": "mita@miraclelinux.com",
        "time": "Sun Mar 26 01:39:33 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Mar 26 08:57:14 2006 -0800"
      },
      "message": "[PATCH] bitops: powerpc: use generic bitops\n\n- remove __{,test_and_}{set,clear,change}_bit() and test_bit()\n- remove generic_fls64()\n- remove generic_hweight{64,32,16,8}()\n- remove sched_find_first_bit()\n\nSigned-off-by: Akinobu Mita \u003cmita@miraclelinux.com\u003e\nCc: Paul Mackerras \u003cpaulus@samba.org\u003e\nCc: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "23dd64011285010ac291f7dddf6e287bdb43a0ad",
      "tree": "0e4f4569d38d82f4dceb4150d5ad940e0fd5f24f",
      "parents": [
        "516450179454de9e689e0a53ed8f34b896e8651c",
        "485ff09990416c75ae9593ddc71619939ab9dd51"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Mar 17 12:01:19 2006 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Mar 17 12:01:19 2006 +1100"
      },
      "message": "Merge ../linux-2.6\n"
    },
    {
      "commit": "cd9c99d7e5f75e137c2ea0cf693773d63c8d945c",
      "tree": "217101478b3afddc9d163dfea7447caa66216cf6",
      "parents": [
        "e2c552cc89287e31b0b2472866a69a44b150acd2"
      ],
      "author": {
        "name": "Michael Ellerman",
        "email": "michael@ellerman.id.au",
        "time": "Fri Mar 10 15:01:08 2006 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Thu Mar 16 16:55:00 2006 +1100"
      },
      "message": "[PATCH] powerpc: Clarify wording for CRASH_DUMP Kconfig option\n\nThe wording of the CRASH_DUMP Kconfig option is not very clear. It gives you a\nkernel that can be used _as_ the kdump kernel, not a kernel that can boot into\na kdump kernel.\n\nSigned-off-by: Michael Ellerman \u003cmichael@ellerman.id.au\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "6749c5507388f3fc3719f57a54b540ee83f6661a",
      "tree": "c069f990f86b020a14b50759d0c75475eedde186",
      "parents": [
        "2cf82c0256b198ae28c465f2c4d7c12c836ea5ea",
        "56ec6462af9cba56a04439154e5768672d6f390f"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Tue Feb 28 16:35:24 2006 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Tue Feb 28 16:35:24 2006 +1100"
      },
      "message": "Merge ../powerpc-merge\n"
    },
    {
      "commit": "add2b6fdae9d7fc251c229e76252f731917094c4",
      "tree": "b800f38c2b8e7e498b85bfa8a8ecba2aaf906b77",
      "parents": [
        "e18f9b4be430189d79a01a75734bf7cfdc22cc3f"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@evo.osdl.org",
        "time": "Sun Feb 26 20:24:40 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@evo.osdl.org",
        "time": "Sun Feb 26 20:24:40 2006 -0800"
      },
      "message": "Make Kprobes depend on modules\n\nCommit 9ec4b1f356b3bad928ae8e2aa9caebfa737d52df made kprobes not compile\nwithout module support, so just make that clear in the Kconfig file.\n\nAlso, since it\u0027s marked EXPERIMENTAL, make that dependency explicit too.\n\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "c6622f63db86fcbd41bf6fe05ddf2e00c1e51ced",
      "tree": "102f3ea0a891212603a3722fece337d6a74d450c",
      "parents": [
        "a00428f5b149e36b8225b2a0812742a6dfb07b8c"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Feb 24 10:06:59 2006 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Feb 24 14:05:56 2006 +1100"
      },
      "message": "powerpc: Implement accurate task and CPU time accounting\n\nThis implements accurate task and cpu time accounting for 64-bit\npowerpc kernels.  Instead of accounting a whole jiffy of time to a\ntask on a timer interrupt because that task happened to be running at\nthe time, we now account time in units of timebase ticks according to\nthe actual time spent by the task in user mode and kernel mode.  We\nalso count the time spent processing hardware and software interrupts\naccurately.  This is conditional on CONFIG_VIRT_CPU_ACCOUNTING.  If\nthat is not set, we do tick-based approximate accounting as before.\n\nTo get this accurate information, we read either the PURR (processor\nutilization of resources register) on POWER5 machines, or the timebase\non other machines on\n\n* each entry to the kernel from usermode\n* each exit to usermode\n* transitions between process context, hard irq context and soft irq\n  context in kernel mode\n* context switches.\n\nOn POWER5 systems with shared-processor logical partitioning we also\nread both the PURR and the timebase at each timer interrupt and\ncontext switch in order to determine how much time has been taken by\nthe hypervisor to run other partitions (\"steal\" time).  Unfortunately,\nsince we need values of the PURR on both threads at the same time to\naccurately calculate the steal time, and since we can only calculate\nsteal time on a per-core basis, the apportioning of the steal time\nbetween idle time (time which we ceded to the hypervisor in the idle\nloop) and actual stolen time is somewhat approximate at the moment.\n\nThis is all based quite heavily on what s390 does, and it uses the\ngeneric interfaces that were added by the s390 developers,\ni.e. account_system_time(), account_user_time(), etc.\n\nThis patch doesn\u0027t add any new interfaces between the kernel and\nuserspace, and doesn\u0027t change the units in which time is reported to\nuserspace by things such as /proc/stat, /proc/\u003cpid\u003e/stat, getrusage(),\ntimes(), etc.  Internally the various task and cpu times are stored in\ntimebase units, but they are converted to USER_HZ units (1/100th of a\nsecond) when reported to userspace.  Some precision is therefore lost\nbut there should not be any accumulating error, since the internal\naccumulation is at full precision.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "00adbf62bd16f6527e046b422349a54d783a3d86",
      "tree": "e4b2a94f51dc23fec090f845e62f53b2c09bbe28",
      "parents": [
        "ad71f123a9e9b809f6c829db1222ce0423a1153c"
      ],
      "author": {
        "name": "Kumar Gala",
        "email": "galak@gate.crashing.org",
        "time": "Mon Jan 16 10:53:22 2006 -0600"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Feb 10 17:15:01 2006 +1100"
      },
      "message": "[PATCH] powerpc: Add CONFIG_DEFAULT_UIMAGE for embedded boards\n\nEmbedded boards that u-boot require a kernel image in the uImage format.\nThis allows a given board to specify it wants a uImage built by default.\n\nThis also fixes a warning at config time, as this symbol is referred\nto in arch/powerpc/platforms/83xx/Kconfig.\n\nSigned-off-by: Kumar Gala \u003cgalak@kernel.crashing.org\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "f4fc4a5b74cff2a487222f05704a2bd01953d250",
      "tree": "fc46b28c23e498662263c929376dbf605d5faca6",
      "parents": [
        "0ce928e1b2ad4309fae6c4324b9e9e433fbf62a2"
      ],
      "author": {
        "name": "Kumar Gala",
        "email": "galak@gate.crashing.org",
        "time": "Mon Jan 16 10:53:22 2006 -0600"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Jan 20 16:13:36 2006 +1100"
      },
      "message": "[PATCH] powerpc: Add CONFIG_DEFAULT_UIMAGE to build a uImage by default for a board\n\nEmbedded boards that u-boot require a kernel image in the uImage format.\nThis allows a given board to specify it wants a uImage built by default.\n\nSigned-off-by: Kumar Gala \u003cgalak@kernel.crashing.org\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "63dafe5728e7354bc3f15bd49f13f1f9a433e8fb",
      "tree": "51ca2135b5c5952d79a636e91f9db9efde9bfe43",
      "parents": [
        "837e9594fc3cb9a06bddd7ecf66151334a2e13d2"
      ],
      "author": {
        "name": "Becky Bruce",
        "email": "bgill@freescale.com",
        "time": "Sat Jan 14 16:57:39 2006 -0600"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Jan 20 16:11:06 2006 +1100"
      },
      "message": "[PATCH] powerpc: Updated Initial MPC8540 ADS port with OF Flat Dev\n\nUpdated patch for support for mpc8540_ads in arch/powerpc with a\nflat OF device tree. This patch does not yet support PCI or I2C.\n\nSigned-off-by: Becky Bruce \u003cbecky.bruce@freescale.com\u003e\nSigned-off-by: Jon Loeliger \u003cjdl@freescale.com\u003e\nSigned-off-by: Kumar Gala \u003cgalak@kernel.crashing.org\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "e8625d463560198cff7cb3eb22886c47d728d501",
      "tree": "091fe29965fd745d9614efff76bf1e7322a11e44",
      "parents": [
        "4683b54c1dae749a0fb8d8ec46d84dd4fefe41d3"
      ],
      "author": {
        "name": "Haren Myneni",
        "email": "haren@us.ibm.com",
        "time": "Sat Jan 14 13:48:25 2006 -0800"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Sun Jan 15 16:50:04 2006 +1100"
      },
      "message": "[PATCH] powerpc: Kconfig changes for CRASH_DUMP\n\nNoticed in 2.6.15-git9 that CRASH_DUMP option is moved to top level.\nMoved CRASH_DUMP into \"kernel options\" next to KEXEC and this config\noption supports only for PPC64 at this time.\n\nSigned-off-by: Haren Myneni \u003charen@us.ibm.com\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "08264cbc9f4ded253e063ed4a804226b195e067c",
      "tree": "b97359a4f12887c5226994068379aafe03b63044",
      "parents": [
        "7f52eb009306b8047031eaf64169a7ce437a26e7"
      ],
      "author": {
        "name": "Kumar Gala",
        "email": "galak@gate.crashing.org",
        "time": "Tue Jan 10 21:43:56 2006 -0600"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Jan 11 15:35:29 2006 +1100"
      },
      "message": "[PATCH] powerpc: Updated Kconfig and Makefiles for 83xx support\n\nUpdated Kconfig \u0026 Makefiles in prep for adding support for the Freescale\nMPC83xx family of processors to arch/powerpc.  Moved around some config\noptions that are more globally applicable to other PowerPC processors.\nAdded a temporary config option (83xx) to match existing arch/ppc support\nfor the MPC83xx line.\n\nSigned-off-by: Kumar Gala \u003cgalak@kernel.crashing.org\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "3b212db9217d02e623eaa12f41c9b5f8c6a99535",
      "tree": "5cf49bb1286da21e43439bb37f555dba0bf7d35a",
      "parents": [
        "9d17a5c611a7462a41b06c75f661f4106d380a86"
      ],
      "author": {
        "name": "David Woodhouse",
        "email": "dwmw2@infradead.org",
        "time": "Tue Jan 10 05:16:22 2006 +0000"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Tue Jan 10 16:49:20 2006 +1100"
      },
      "message": "[PATCH] powerpc: Some ppc compile fixes...\n\nThis gets most of the Fedora rawhide RPM building again, as long as I\ndisable CHRP.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "13b8a272297b29870d5bf5f8db7a381dd9e82382",
      "tree": "7abd516728d53f2d096d757412d6e9cd17819382",
      "parents": [
        "0f17574a651884c721e1a33051719e59deb13c18"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Tue Jan 10 16:19:05 2006 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Tue Jan 10 16:19:05 2006 +1100"
      },
      "message": "powerpc: Introduce a new config symbol to control 16550 early debug code\n\nThe previous change by Kumar Gala in this area led to legacy_serial.c\nand udbg_16550.c being built as modules when CONFIG_SERIAL_8250\u003dm.\nFix this by introducing a new symbol, CONFIG_PPC_UDBG_16550, to\ncontrol whether these files get built, and arrange for it to be selected\nfor those platforms that need it.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "6150c32589d1976ca8a5c987df951088c05a7542",
      "tree": "94073696576323ff966e365d8c47b8ecd8372f97",
      "parents": [
        "44637a12f80b80157d9c1bc5b7d6ef09c9e05713",
        "be42d5fa3772241b8ecebd443f1fb36247959c54"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 09 10:03:44 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Jan 09 10:03:44 2006 -0800"
      },
      "message": "Merge git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc-merge\n"
    },
    {
      "commit": "0a498d96a3324c16add35da0435bc7c13b6c6f3f",
      "tree": "0fb383f555534ffc7a7796f58c1aba8b2ca5a887",
      "parents": [
        "bce6c5fd8cc5d3f8d02fd34a24b591fc3e23a775"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Mon Jan 09 20:17:01 2006 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Mon Jan 09 20:17:01 2006 +1100"
      },
      "message": "powerpc: set CONFIG_PPC_OF\u003dy always for ARCH\u003dpowerpc\n\nThe CONFIG_PPC_OF symbol is used to mean that the firmware device tree\naccess functions are available.  Since we always have a device tree\nwith ARCH\u003dpowerpc, make CONFIG_PPC_OF always Y for ARCH\u003dpowerpc.\n\nThis fixes some compile errors reported by Kumar Gala, but in a\ndifferent way to his patch.  This also makes prom_parse.o be compiled\nonly if CONFIG_PPC_OF so that non-OF ARCH\u003dppc platforms will compile.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "e585e47031751f4e393e10ffd922885508b958dd",
      "tree": "08a641dab000aacb25c6b7331c32271e4109535f",
      "parents": [
        "22c4e3084eb8b88288a622a57d8b35c450a439f2"
      ],
      "author": {
        "name": "Matt Mackall",
        "email": "mpm@selenic.com",
        "time": "Sun Jan 08 01:05:24 2006 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Jan 08 20:14:11 2006 -0800"
      },
      "message": "[PATCH] tiny: Make *[ug]id16 support optional\n\nConfigurable 16-bit UID and friends support\n\nThis allows turning off the legacy 16 bit UID interfaces on embedded platforms.\n\n   text    data     bss     dec     hex filename\n3330172  529036  190556 4049764  3dcb64 vmlinux-baseline\n3328268  529040  190556 4047864  3dc3f8 vmlinux\n\nFrom: Adrian Bunk \u003cbunk@stusta.de\u003e\n\n    UID16 was accidentially disabled for !EMBEDDED.\n\nSigned-off-by: Matt Mackall \u003cmpm@selenic.com\u003e\nSigned-off-by: Adrian Bunk \u003cbunk@stusta.de\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "1beb6a7d6cbed3ac03500ce9b5b9bb632c512039",
      "tree": "727aa76da5a82fca449dadf3cebbadc414ad6555",
      "parents": [
        "cd0c7f06803be06a5cf4564aa5a900f4b6aea603"
      ],
      "author": {
        "name": "Benjamin Herrenschmidt",
        "email": "benh@kernel.crashing.org",
        "time": "Wed Dec 14 13:10:10 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Mon Jan 09 15:03:17 2006 +1100"
      },
      "message": "[PATCH] powerpc: Experimental support for new G5 Macs (#2)\n\nThis adds some very basic support for the new machines, including the\nQuad G5 (tested), and other new dual core based machines and iMac G5\niSight (untested). This is still experimental !  There is no thermal\ncontrol yet, there is no proper handing of MSIs, etc.. but it\nboots, I have all 4 cores up on my machine. Compared to the previous\nversion of this patch, this one adds DART IOMMU support for the U4\nchipset and thus should work fine on setups with more than 2Gb of RAM.\n\nSigned-off-by: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "398ab1fcb960ea0800f40a9c36355855e3e23389",
      "tree": "eb7eda3afffb3c99fc57b1064c7501e0ee2cf931",
      "parents": [
        "4693c09a47203d79a9adb69acaf3b3bb3dcf9390"
      ],
      "author": {
        "name": "Michael Ellerman",
        "email": "michael@ellerman.id.au",
        "time": "Sun Dec 04 18:39:23 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Mon Jan 09 14:52:14 2006 +1100"
      },
      "message": "[PATCH] powerpc: Add CONFIG_CRASH_DUMP\n\nThis patch adds a Kconfig variable, CONFIG_CRASH_DUMP, which configures the\nbuilt kernel for use as a Kdump kernel.\n\nCurrently \"all\" this involves is changing the value of KERNELBASE to 32 MB.\n\nSigned-off-by: Michael Ellerman \u003cmichael@ellerman.id.au\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "9100b205fdc70b300894954ebebbf2709c5ed525",
      "tree": "fa205423dcb6c67798f2d4688e242690eda636a9",
      "parents": [
        "7b653cafcbf187c6d86ee3551e4d73a610f18d27"
      ],
      "author": {
        "name": "Andy Whitcroft",
        "email": "apw@shadowen.org",
        "time": "Tue Nov 29 19:20:55 2005 +0000"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Mon Jan 09 14:51:40 2006 +1100"
      },
      "message": "[PATCH] powerpc32: clean up available memory models\n\nClean up the currently available memory models for ppc32 under\nthe powerpc architecture.  We need FLATMEM for ppc32: enable it.\nSPARSEMEM is not parameterised for ppc32 so disable that.  Take this\nopportunity to clean up white space for FLATMEM_ENABLE.\n\nSigned-off-by: Andy Whitcroft \u003capw@shadowen.org\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "51d3082fe6e55aecfa17113dbe98077c749f724c",
      "tree": "9a1e2355d5988d8cc1ca511d53c1bb24b0baa17f",
      "parents": [
        "463ce0e103f419f51b1769111e73fe8bb305d0ec"
      ],
      "author": {
        "name": "Benjamin Herrenschmidt",
        "email": "benh@kernel.crashing.org",
        "time": "Wed Nov 23 17:57:25 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Mon Jan 09 14:49:54 2006 +1100"
      },
      "message": "[PATCH] powerpc: Unify udbg (#2)\n\nThis patch unifies udbg for both ppc32 and ppc64 when building the\nmerged achitecture. xmon now has a single \"back end\". The powermac udbg\nstuff gets enriched with some ADB capabilities and btext output. In\naddition, the early_init callback is now called on ppc32 as well,\napprox. in the same order as ppc64 regarding device-tree manipulations.\nThe init sequences of ppc32 and ppc64 are getting closer, I\u0027ll unify\nthem in a later patch.\n\nFor now, you can force udbg to the scc using \"sccdbg\" or to btext using\n\"btextdbg\" on powermacs. I\u0027ll implement a cleaner way of forcing udbg\noutput to something else than the autodetected OF output device in a\nlater patch.\n\nSigned-off-by: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "67207b9664a8d603138ef1556141e6d0a102bea7",
      "tree": "e98886778be65aeb6625a5f516873bbc5beeb978",
      "parents": [
        "d7a301033f1990188f65abf4fe8e5b90ef0e3888"
      ],
      "author": {
        "name": "Arnd Bergmann",
        "email": "arnd@arndb.de",
        "time": "Tue Nov 15 15:53:48 2005 -0500"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Mon Jan 09 14:49:12 2006 +1100"
      },
      "message": "[PATCH] spufs: The SPU file system, base\n\nThis is the current version of the spu file system, used\nfor driving SPEs on the Cell Broadband Engine.\n\nThis release is almost identical to the version for the\n2.6.14 kernel posted earlier, which is available as part\nof the Cell BE Linux distribution from\nhttp://www.bsc.es/projects/deepcomputing/linuxoncell/.\n\nThe first patch provides all the interfaces for running\nspu application, but does not have any support for\ndebugging SPU tasks or for scheduling. Both these\nfunctionalities are added in the subsequent patches.\n\nSee Documentation/filesystems/spufs.txt on how to use\nspufs.\n\nSigned-off-by: Arnd Bergmann \u003carndb@de.ibm.com\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "d7a301033f1990188f65abf4fe8e5b90ef0e3888",
      "tree": "5df64f9e06049e6006e6a124dc6fa4953d6e42b9",
      "parents": [
        "401d1f029bebb7153ca704997772113dc36d9527"
      ],
      "author": {
        "name": "Heiko J Schick",
        "email": "schihei@de.ibm.com",
        "time": "Wed Nov 16 08:56:43 2005 +0100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Mon Jan 09 14:49:06 2006 +1100"
      },
      "message": "[PATCH] powerpc: IBMEBUS bus support\n\nThis patch adds the necessary core bus support used by device drivers\nthat sit on the IBM GX bus on modern pSeries machines like the Galaxy\ninfiniband for example. It provide transparent DMA ops (the low level\ndriver works with virtual addresses directly) along with a simple bus\nlayer using the Open Firmware matching routines.\n\nSigned-off-by: Heiko J Schick \u003cschickhj@de.ibm.com\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "e8a167accb47de528d2ffddc0f13f8e84eaa71de",
      "tree": "43d1e4bc078910584ce94b5e2bf542586974282a",
      "parents": [
        "cc8b5c96a7ac7d695c2887427b1003bd33ec9c97"
      ],
      "author": {
        "name": "Olaf Hering",
        "email": "olh@suse.de",
        "time": "Thu Dec 01 21:10:10 2005 +0100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Dec 02 14:51:35 2005 +1100"
      },
      "message": "[PATCH] powerpc: correct the NR_CPUS description text\n\nUpdate the help text to match the allowed range.\n\nSigned-off-by: Olaf Hering \u003colh@suse.de\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "f62859bb6871c5e4a8e591c60befc8caaf54db8c",
      "tree": "765fdc15c121d2b61754f33f98c750f2a728c7b4",
      "parents": [
        "5daf9071b527089b1bd5d9cb3a5354b83121550e"
      ],
      "author": {
        "name": "Mike Kravetz",
        "email": "kravetz@us.ibm.com",
        "time": "Mon Nov 14 16:12:49 2005 -0800"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 18 14:45:54 2005 +1100"
      },
      "message": "[PATCH] Remove SPAN_OTHER_NODES config definition\n\nThe config option SPAN_OTHER_NODES was created so that we could\nmake pSeries numa layouts work within the DISCONTIG memory model.\nNow that DISCONTIG has been replaced by SPARSEMEM, we can eliminate\nthis option.\n\nI\u0027ll be sending a separate patch to Andrew to remove the arch\nindependent code as pSeries was the only arch that needed this.\n\nSigned-off-by: Mike Kravetz \u003ckravetz@us.ibm.com\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "5be396b00ca0f2f769c55cf69bbd7c77451c925e",
      "tree": "3e6d9d85fdb985be3a70aeb76d61f29f631260ce",
      "parents": [
        "1dfc6772097ef4eadd39a10ce44557c782d5058e"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Mon Nov 14 17:31:55 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Mon Nov 14 17:31:55 2005 +1100"
      },
      "message": "powerpc: Mark PREP and embedded as broken for now\n\nThese machines don\u0027t have working ARCH\u003dpowerpc support yet, so make\nthem depend on BROKEN so people don\u0027t enable them inadvertently and\nget compile errors.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "7568cb4ef6c507164b65b01f972a3bd026898ae1",
      "tree": "ba608f4c84d8765d5a1491c345f6dc265b5ec4ea",
      "parents": [
        "c55377ee73f6efeb373ae06f6e918d87660b4852"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Mon Nov 14 17:30:17 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Mon Nov 14 17:30:17 2005 +1100"
      },
      "message": "powerpc: Move most remaining ppc64 files over to arch/powerpc\n\nAlso deletes files in arch/ppc64 that are no longer used now that\nwe don\u0027t compile with ARCH\u003dppc64 any more.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "45fb6cea09443b2066016f895937f9c2647a1507",
      "tree": "8abd2e14c0e096d583e6dc5151d0669db9227359",
      "parents": [
        "3e66c4def14aa64ee6d1d4ef077d789abc30125d"
      ],
      "author": {
        "name": "Anton Blanchard",
        "email": "anton@samba.org",
        "time": "Fri Nov 11 14:22:35 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 11 22:21:11 2005 +1100"
      },
      "message": "[PATCH] ppc64: Convert NUMA to sparsemem (3)\n\nConvert to sparsemem and remove all the discontigmem code in the\nprocess. This has a few advantages:\n\n- The old numa_memory_lookup_table can go away\n- All the arch specific discontigmem magic can go away\n\nWe also remove the triple pass of memory properties and instead create a\nlist of per node extents that we iterate through. A final cleanup would\nbe to change our lmb code to store extents per node, then we can reuse\nthat information in the numa code.\n\nSigned-off-by: Anton Blanchard \u003canton@samba.org\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "7e9191daf643255c24893427f966795e4167ca2c",
      "tree": "ece13c7bc2a924bf5ec57dd004fd6e11662c763c",
      "parents": [
        "82dd26a971848efafc6c8f12803ae012d268d2eb"
      ],
      "author": {
        "name": "Mike Kravetz",
        "email": "kravetz@us.ibm.com",
        "time": "Mon Nov 07 09:39:48 2005 -0800"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Tue Nov 08 15:17:38 2005 +1100"
      },
      "message": "[PATCH] Memory Add Fixes for ppc64\n\nppc64 needs a special sysfs probe file for adding new memory.\n\nSigned-off-by: Mike Kravetz \u003ckravetz@us.ibm.com\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "0286486783a75ef991df3ee250917efb55df75b3",
      "tree": "067d186c3e1f79f44d9ac729cf67c898d329f2ab",
      "parents": [
        "570142ca37248291c03df9852a5a0ce97f756464"
      ],
      "author": {
        "name": "Mike Kravetz",
        "email": "kravetz@us.ibm.com",
        "time": "Mon Nov 07 13:48:59 2005 -0800"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Tue Nov 08 11:20:00 2005 +1100"
      },
      "message": "[PATCH] Memory Add Fixes for ppc64\n\nOn Tue, Nov 08, 2005 at 08:12:56AM +1100, Benjamin Herrenschmidt wrote:\n\u003e Yes, the MAX_ORDER should be different indeed. But can Kconfig do that ?\n\u003e That is have the default value be different based on a Kconfig option ?\n\u003e I don\u0027t see that ... We may have to do things differently here...\n\nThis seems to be done in other parts of the Kconfig file.  Using those\nas an example, this should keep the MAX_ORDER block size at 16MB.\n\nSigned-off-by: Mike Kravetz \u003ckravetz@us.ibm.com\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "4350147a816b9c5b40fa59e4fa23f17490630b79",
      "tree": "c333986047de60aa90809d669895726610c0c3e5",
      "parents": [
        "a82765b6eee3d1267ded3320ca67b39fe1844599"
      ],
      "author": {
        "name": "Benjamin Herrenschmidt",
        "email": "benh@kernel.crashing.org",
        "time": "Mon Nov 07 14:27:33 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Tue Nov 08 11:17:34 2005 +1100"
      },
      "message": "[PATCH] ppc64: SMU based macs cpufreq support\n\nCPU freq support using 970FX powertune facility for iMac G5 and SMU\nbased single CPU desktop.\n\nSigned-off-by: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "cd6b0762a04978baf48412456a687842de97e381",
      "tree": "86978ae5a1e00c6ab6d0a3f58e37f85de079a2b8",
      "parents": [
        "78512ece148992a5c00c63fbf4404f3cde635016"
      ],
      "author": {
        "name": "Prasanna S Panchamukhi",
        "email": "prasanna@in.ibm.com",
        "time": "Mon Nov 07 00:59:14 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Nov 07 07:53:35 2005 -0800"
      },
      "message": "[PATCH] Move Kprobes and Oprofile to \"Instrumentation Support\" menu\n\nAndrew Morton suggested to move kprobes from kernel hacking menu, since\nkernel hacking menu is in-appropriate for the Kprobes.  This patch moves\nKprobes and Oprofile under instrumentation menu.\n\n(akpm: it\u0027s not a natural fit, but things like djprobes and the s390 guys\u0027\nstatistics library need a home)\n\nSigned-of-by: Prasanna S Panchamukhi \u003cprasanna@in.ibm.com\u003e\nCc: Philippe Elie \u003cphil.el@wanadoo.fr\u003e\nCc: John Levon \u003clevon@movementarian.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "863c84b97cb660dbb949398e196c0b1bbe4ed39f",
      "tree": "2942dd6318ec8d9dfb1a3dd9037c00c5700beeac",
      "parents": [
        "c8e3c8b21bd7a317d071ab8cf478880e7a4f92d6"
      ],
      "author": {
        "name": "Benjamin Herrenschmidt",
        "email": "benh@kernel.crashing.org",
        "time": "Mon Nov 07 00:57:58 2005 -0800"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Mon Nov 07 07:53:23 2005 -0800"
      },
      "message": "[PATCH] ppc: Fix ppc32 build after 64K pages\n\nOops, some last minute changes caused the 64K pages patch to break ppc32\nbuild, this fixes it.\n\nSigned-off-by: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "3c726f8dee6f55e96475574e9f645327e461884c",
      "tree": "f67c381e8f57959aa4a94bda4c68e24253cd8171",
      "parents": [
        "f912696ab330bf539231d1f8032320f2a08b850f"
      ],
      "author": {
        "name": "Benjamin Herrenschmidt",
        "email": "benh@kernel.crashing.org",
        "time": "Mon Nov 07 11:06:55 2005 +1100"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@g5.osdl.org",
        "time": "Sun Nov 06 16:56:47 2005 -0800"
      },
      "message": "[PATCH] ppc64: support 64k pages\n\nAdds a new CONFIG_PPC_64K_PAGES which, when enabled, changes the kernel\nbase page size to 64K.  The resulting kernel still boots on any\nhardware.  On current machines with 4K pages support only, the kernel\nwill maintain 16 \"subpages\" for each 64K page transparently.\n\nNote that while real 64K capable HW has been tested, the current patch\nwill not enable it yet as such hardware is not released yet, and I\u0027m\nstill verifying with the firmware architects the proper to get the\ninformation from the newer hypervisors.\n\nSigned-off-by: Benjamin Herrenschmidt \u003cbenh@kernel.crashing.org\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@osdl.org\u003e\n"
    },
    {
      "commit": "8ad200d7b7c8fac77cf705831e90e889360d7030",
      "tree": "c954352ca3cd8c64e913ceb4a5a082ce7e98f8cd",
      "parents": [
        "d3ab57ebdc6457543b346255fa47b0ecd7671136"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 04 13:28:58 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Fri Nov 04 13:28:58 2005 +1100"
      },
      "message": "powerpc: Merge smp-tbsync.c (the generic timebase sync routine)\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "f4fcbbe9a7fdf11305fea657202b954bdc2228ec",
      "tree": "d3f6a54b82b6d28f7e78cebd8043df2d9b596b5a",
      "parents": [
        "398382999bcff46ec1c7e7ab7574b10b087481c7"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Thu Nov 03 14:41:19 2005 +1100"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Thu Nov 03 14:41:19 2005 +1100"
      },
      "message": "powerpc: Merge remaining RTAS code\n\nThis moves rtas-proc.c and rtas_flash.c into arch/powerpc/kernel, since\ncell wants them as well as pseries (and chrp can use rtas-proc.c too,\nat least in principle).  rtas_fw.c is gone, with its bits moved into\nrtas_flash.c and rtas.c.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "edf03c1ee84e5095e8f4a4b8ad6e0784118cb176",
      "tree": "2b86e57df3cfd2767fffb55ccf4b04e4d28c5c75",
      "parents": [
        "e9add2eeb182e2bf1863c548f7a8173c45b4b92f"
      ],
      "author": {
        "name": "Arnd Bergmann",
        "email": "arndb@de.ibm.com",
        "time": "Mon Oct 31 20:08:40 2005 -0500"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Tue Nov 01 21:03:04 2005 +1100"
      },
      "message": "[PATCH] powerpc: move mmio_nvram.c over to arch/powerpc\n\nThe nvram code formally known as bpa_nvram.c is rather\ngeneric really, so it is quite likely to be useful to\nfuture boards not based on cell.\n\nThis patch puts it into arch/powerpc/sysdev.\n\nSigned-off-by: Arnd Bergmann \u003carndb@de.ibm.com\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "e9add2eeb182e2bf1863c548f7a8173c45b4b92f",
      "tree": "25d7a07a37750f0956f1922dae624c6898ec8e1d",
      "parents": [
        "19fe04755aca56e7d143f7f95b41008138619c5c"
      ],
      "author": {
        "name": "Arnd Bergmann",
        "email": "arndb@de.ibm.com",
        "time": "Mon Oct 31 20:08:39 2005 -0500"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Tue Nov 01 21:02:59 2005 +1100"
      },
      "message": "[PATCH] powerpc: move rtas_fw.c out of platforms/pseries\n\nCell uses the same code as pSeries for flashing the firmware\nthrough rtas, so the implementation should not be part of\nplatforms/pseries.\n\nPut it into arch/powerpc/kernel instead.\n\nSigned-off-by: Arnd Bergmann \u003carndb@de.ibm.com\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "f3f66f599db131ea57dc567ffd931d269dbc690e",
      "tree": "c98f9253baa90e07e241bd88863bd69ff70cf4b0",
      "parents": [
        "3c4cf5ee5a9224a800a74b5dfcb435550ed30737"
      ],
      "author": {
        "name": "Arnd Bergmann",
        "email": "arndb@de.ibm.com",
        "time": "Mon Oct 31 20:08:37 2005 -0500"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Tue Nov 01 21:02:44 2005 +1100"
      },
      "message": "[PATCH] powerpc: Rename BPA to Cell\n\nThe official name for BPA is now CBEA (Cell Broadband\nEngine Architecture). This patch renames all occurences\nof the term BPA to \u0027Cell\u0027 for easier recognition.\n\nSigned-off-by: Arnd Bergmann \u003carndb@de.ibm.com\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "ffa27b6bc61c3be76a756100f777372768bcc3ab",
      "tree": "e4c65417db61080f69c4a057cdb2e06ae7dc1bd3",
      "parents": [
        "ea6526605a60cf9a6f758605f73062fac6d974cf"
      ],
      "author": {
        "name": "Andy Whitcroft",
        "email": "apw@shadowen.org",
        "time": "Fri Oct 28 17:46:58 2005 -0700"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Sat Oct 29 15:27:39 2005 +1000"
      },
      "message": "[PATCH] ppc64 memory model depends on NUMA\n\nCurrently when we first select memory model (FLAT, DISCONTIG, SPARSE) then\nselect whether the machine is NUMA.  However NUMA systems may not be FLAT.\nThis constraint it not honoured and we may configure a NUMA/FLAT system.\n\nReorder the configuration such that we choose NUMA first which allows us to\nonly list the memory models which are valid.  We now default NUMA for known\nNUMA systems.  Note that this new order also matches that used in x86.\n\nSigned-off-by: Andy Whitcroft \u003capw@shadowen.org\u003e\nSigned-off-by: Joel Schopp \u003cjschopp@austin.ibm.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@osdl.org\u003e\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "b6a4ce526a87bd8a99a396ac993240d6d3239852",
      "tree": "a1ad8472e9195da61b1427324815d201e4379047",
      "parents": [
        "bd561c79dce9036c9efb17420b6cf8763c8c9de3"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Oct 26 22:54:17 2005 +1000"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Oct 26 22:54:17 2005 +1000"
      },
      "message": "powerpc: 32-bit powermac needs the mpc106 code\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "bbd0abda9cc689a54df509aae00000bbb2a1a7d1",
      "tree": "d04e8f196f65f5598300485e654e5e90a6160aa6",
      "parents": [
        "303d72a0006c65bb8d16199c75a26338ce723811"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Oct 26 21:45:56 2005 +1000"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Oct 26 21:45:56 2005 +1000"
      },
      "message": "powerpc: Merge 32-bit CHRP support.\n\nSMP still needs more work but UP gets as far as starting userspace\nat least.  This uses the 64-bit-style code for spinning up the cpus.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "830825d6c37a28061c0b6ca538a6411001cf3b2a",
      "tree": "99ead002881c53e0eda644175ba43d4a166fa26e",
      "parents": [
        "03501dab035ab7da5e1373f5e130cfd6346d3f21"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Oct 26 17:16:38 2005 +1000"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Oct 26 17:16:38 2005 +1000"
      },
      "message": "powerpc: Pull out MPC106 (grackle) initialization code into its own file\n\nThis is so that the 32-bit CHRP code can use it.  The MPC106\ninitialization code is now in arch/powerpc/sysdev/grackle.c and\nis controlled by CONFIG_PPC_MPC106.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "033ef338b6e007dc081c6282a4f2a9dd761f8cd2",
      "tree": "3c77fad71c3d9ba04ddcdaea33063aaf7520ddb0",
      "parents": [
        "f9bd170a87948a9e077149b70fb192c563770fdf"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Oct 26 17:05:24 2005 +1000"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Oct 26 17:05:24 2005 +1000"
      },
      "message": "powerpc: Merge rtas.c into arch/powerpc/kernel\n\nThis splits arch/ppc64/kernel/rtas.c into arch/powerpc/kernel/rtas.c,\nwhich contains generic RTAS functions useful on any CHRP platform,\nand arch/powerpc/platforms/pseries/rtas-fw.[ch], which contain\nsome pSeries-specific firmware flashing bits.  The parts of rtas.c\nthat are to do with pSeries-specific error logging are protected\nby a new CONFIG_RTAS_ERROR_LOGGING symbol.  The inclusion of rtas.o\nis controlled by the CONFIG_PPC_RTAS symbol, and the relevant\nplatforms select that.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "f9bd170a87948a9e077149b70fb192c563770fdf",
      "tree": "c759b57b67ab41a859e19f7dcee571504b368202",
      "parents": [
        "25635c71e44111a6bd48f342e144e2fc02d0a314"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Oct 26 16:47:42 2005 +1000"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Oct 26 16:47:42 2005 +1000"
      },
      "message": "powerpc: Merge i8259.c into arch/powerpc/sysdev\n\nThis changes the parameters for i8259_init so that it takes two\nparameters: a physical address for generating an interrupt\nacknowledge cycle, and an interrupt number offset.  i8259_init\nnow sets the irq_desc[] for its interrupts; all the callers\nwere doing this, and that code is gone now.  This also defines\na CONFIG_PPC_I8259 symbol to select i8259.o for inclusion, and\nmakes the platforms that need it select that symbol.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "25635c71e44111a6bd48f342e144e2fc02d0a314",
      "tree": "794b0428a72fefa53a0d9d709247a60a5b4527da",
      "parents": [
        "d9953105ce000abcfa988d0c160b2662186f5879"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Oct 26 16:36:55 2005 +1000"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Wed Oct 26 16:36:55 2005 +1000"
      },
      "message": "ppc: Use the indirect_pci.c from arch/powerpc/sysdev\n\nThis defines a CONFIG_INDIRECT_PCI symbol to control whether it\ngets used or not, and fixes the Kconfig to select that symbol for\nplatforms that need it.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "35499c0195e46f479cf6ac16ad8d3f394b5fcc10",
      "tree": "25660acd2425de5236a1eff7a25dc931e6f86492",
      "parents": [
        "b6ba92819dc1304a4e5a0bf06b297c657b58168a"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Sat Oct 22 16:02:39 2005 +1000"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Sat Oct 22 16:02:39 2005 +1000"
      },
      "message": "powerpc: Merge in 64-bit powermac support.\n\nThis brings in a lot of changes from arch/ppc64/kernel/pmac_*.c to\narch/powerpc/platforms/powermac/*.c and makes various minor tweaks\nelsewhere.  On the powermac we now initialize ppc_md by copying\nthe whole pmac_md structure into it, which required some changes in\nthe ordering of initializations of individual fields of it.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "5f2967553394d01f4bafd03398777a42e8344d28",
      "tree": "b4504f072ca945da545fde9f0360a8528bd7c11f",
      "parents": [
        "dd184343b45e94fd3b0d4d0865070924bc6195ab"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Mon Oct 17 20:14:59 2005 +1000"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Mon Oct 17 20:14:59 2005 +1000"
      },
      "message": "powerpc: Make CONFIG_PROC_DEVICETREE independent of CONFIG_PPC_OF\n\n... since all platforms will have a device tree.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "3a5f8c5f788d68e325d9fe3c26f4df5a5aee838a",
      "tree": "ad0bb508722bb54baca8ad830c569a476f345233",
      "parents": [
        "f255f0dd1b4ef7af0e48f5603d1f27ee4bad5848"
      ],
      "author": {
        "name": "Stephen Rothwell",
        "email": "sfr@canb.auug.org.au",
        "time": "Tue Oct 11 19:40:20 2005 +1000"
      },
      "committer": {
        "name": "Stephen Rothwell",
        "email": "sfr@canb.auug.org.au",
        "time": "Wed Oct 12 10:58:00 2005 +1000"
      },
      "message": "powerpc: make iSeries boot again\n\nOn ARCH\u003dppc64 we were getting htab_hash_mask recalculated\nto the correct value for our particular machine by accident.\nIn the merge tree, that code was commented out, so htab_hash_mask\nwas being corrupted.\n\nWe now set ppc64_pft_size instead which gets htab_has_mask\ncalculated correctly for us later.  We should put an\nibm,pft-size property in the device tree at some point.\n\nAlso set -mno-minimal-toc in some makefiles.\nAllow iSeries to configure PROC_DEVICETREE.\n\nSigned-off-by: Stephen Rothwell \u003csfr@canb.auug.org.au\u003e\n"
    },
    {
      "commit": "187a00679ad51dfb3d3e74620217417102784218",
      "tree": "86791b7ff7ec55160dd9c2daed1b53d3730e5a29",
      "parents": [
        "7c8c6b9776fb41134d87ef50706a777a45d61cd4"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Thu Oct 06 12:49:05 2005 +1000"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Thu Oct 06 12:49:05 2005 +1000"
      },
      "message": "powerpc: Remove 64-bit cpu support from ppc32.\n\nThese days there is no good reason to run a ppc32 kernel on a 64-bit\ncpu, rather than a ppc64 kernel, so remove the config option and a\nbunch of code (and ifdefs) from head.S.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    },
    {
      "commit": "eeb2d21806123a67d957783c4a0c8b020a378cf0",
      "tree": "e19cc71b40592efa308018c42691dcdec4850f65",
      "parents": [
        "cabb558714945e92000f627dda562aa5e86a31af"
      ],
      "author": {
        "name": "Stephen Rothwell",
        "email": "sfr@canb.auug.org.au",
        "time": "Fri Sep 30 17:24:15 2005 +1000"
      },
      "committer": {
        "name": "Stephen Rothwell",
        "email": "sfr@canb.auug.org.au",
        "time": "Sat Oct 01 18:52:26 2005 +1000"
      },
      "message": "powerpc: make iSeries boot\n\nNow that we use the device tree, it helps to build it in.\nIt helps to links the kernel at the correct address.\n\nSigned-off-by: Stephen Rothwell \u003csfr@canb.auug.org.au\u003e\n"
    },
    {
      "commit": "cabb558714945e92000f627dda562aa5e86a31af",
      "tree": "595cd75dad072224041260afb220d7fce3164e53",
      "parents": [
        "bd142b70a6bd5522f7d95f0cec06091b93bb0715"
      ],
      "author": {
        "name": "Stephen Rothwell",
        "email": "sfr@canb.auug.org.au",
        "time": "Fri Sep 30 16:16:52 2005 +1000"
      },
      "committer": {
        "name": "Stephen Rothwell",
        "email": "sfr@canb.auug.org.au",
        "time": "Sat Oct 01 18:52:10 2005 +1000"
      },
      "message": "powerpc: make iSeries build\n\nMerge vmlinux.lds.S.\nAlso remove arch/powerpc/kernel/vmlinux.lds which is a\ngenerated file.\n\nSigned-off-by: Stephen Rothwell \u003csfr@canb.auug.org.au\u003e\n"
    },
    {
      "commit": "dc1c1ca3dcd94c545c5e01d7c06b46824d43f4d0",
      "tree": "fa088ac3eae8709dd379deda6f31d5b29197d4c9",
      "parents": [
        "d96024c688b59d4d1e60dbb0e226964eb758aa01"
      ],
      "author": {
        "name": "Stephen Rothwell",
        "email": "sfr@canb.auug.org.au",
        "time": "Sat Oct 01 18:43:42 2005 +1000"
      },
      "committer": {
        "name": "Stephen Rothwell",
        "email": "sfr@canb.auug.org.au",
        "time": "Sat Oct 01 18:43:42 2005 +1000"
      },
      "message": "powerpc: merge idle_power4.S and trapc.s\n\nUse idle_power4.S from ppc64 as we are not going to support\n32 bit power4 in the merged tree.\n\nMerge ppc64 traps.c into powerpc traps.c:\n\tuse ppc64 versions of exception routine names\n\t\t(as they don\u0027t have StudlyCaps)\n\tmake all the versions if die() have the same\n\t\tprototype\n\nSigned-off-by: Stephen Rothwell \u003csfr@canb.auug.org.au\u003e\n"
    },
    {
      "commit": "14cf11af6cf608eb8c23e989ddb17a715ddce109",
      "tree": "271a97ce73e265f39c569cb159c195c5b4bb3f8c",
      "parents": [
        "e5baa396af7560382d2cf3f0871d616b61fc284c"
      ],
      "author": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Mon Sep 26 16:04:21 2005 +1000"
      },
      "committer": {
        "name": "Paul Mackerras",
        "email": "paulus@samba.org",
        "time": "Mon Sep 26 16:04:21 2005 +1000"
      },
      "message": "powerpc: Merge enough to start building in arch/powerpc.\n\nThis creates the directory structure under arch/powerpc and a bunch\nof Kconfig files.  It does a first-cut merge of arch/powerpc/mm,\narch/powerpc/lib and arch/powerpc/platforms/powermac.  This is enough\nto build a 32-bit powermac kernel with ARCH\u003dpowerpc.\n\nFor now we are getting some unmerged files from arch/ppc/kernel and\narch/ppc/syslib, or arch/ppc64/kernel.  This makes some minor changes\nto files in those directories and files outside arch/powerpc.\n\nThe boot directory is still not merged.  That\u0027s going to be interesting.\n\nSigned-off-by: Paul Mackerras \u003cpaulus@samba.org\u003e\n"
    }
  ]
}
