Re: [PATCH 2/6] Use one zonelist that is filtered instead of multiplezonelists

From: Christoph Lameter
Date: Fri Aug 17 2007 - 16:59:36 EST


On Fri, 17 Aug 2007, Mel Gorman wrote:

> +/* Returns the first zone at or below highest_zoneidx in a zonelist */
> +static inline struct zone **first_zones_zonelist(struct zonelist *zonelist,
> + enum zone_type highest_zoneidx)
> +{
> + struct zone **z;
> + for (z = zonelist->zones; zone_idx(*z) > highest_zoneidx; z++);
> + return z;
> +}

The formatting above is a bit confusing. Add requires empty lines and put
the ; on a separate line.


> +/* Returns the next zone at or below highest_zoneidx in a zonelist */
> +static inline struct zone **next_zones_zonelist(struct zone **z,
> + enum zone_type highest_zoneidx)
> +{
> + for (++z; zone_idx(*z) > highest_zoneidx; z++);

Looks weird too.

++z on an earlier line and then

for ( ; zone_idx(*z) ...)

?
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/