[PATCH 10/16 v3] powerpc: iommu enablement for CMO

Paul Mackerras paulus at samba.org
Tue Jul 22 14:57:24 EST 2008


Robert Jennings writes:

> To support Cooperative Memory Overcommitment (CMO), we need to check
> for failure from some of the tce hcalls.

This patch runs into context mismatches because of changes made by
Michael Ellerman's patch "Fix sparse warnings in
arch/powerpc/platforms/pseries" (now in Linus' tree), which changed
code like

	if (condition)
		return function_returning_void(args);

into

	if (condition) {
		function_returning_void(args);
		return;
	}

which will cause problems for your patch.  Please check if any of
these changes need to be undone again.

Paul.



More information about the Linuxppc-dev mailing list