Re: [RFC][PATCH] introduce SIZE_MAX

From: Xi Wang
Date: Fri Apr 20 2012 - 23:00:17 EST


On Apr 20, 2012, at 7:03 PM, Andrew Morton wrote:

> Will we need something for ssize_t also?

Did you mean something like SSIZE_MAX for replacing LONG_MAX? That's
a good question since we have ssize_t.

I tried to grep `LONG_MAX' and `size'. The only place I have found
so far is the following:

fs/xfs/xfs_aops.c:1247, in __xfs_get_blocks()

if (mapping_size > LONG_MAX)
mapping_size = LONG_MAX;

bh_result->b_size = mapping_size;

Not sure if SSIZE_MAX works better here (`b_size' is size_t).

- xi
--
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/