On Fri, May 7, 2010 at 5:16 PM, Nitin Gupta <ngupta@vflare.org> wrote:
I am not sure about effects on the speed, that needs to be seen.
But here are points against using a new flag....
a) Defining a new flag hogs up precious real-estate of remaining just 2 bits
(apparently the new flags are to go before SWP_SCANNING)
b) Over time, some dependent code might evolve to depend upon this flag, while
others might use the indirection to deduct if it is block device
or not. That
will make it complicated to make any relevant change in future as we'll have
to keep track of more than one way to check the status. Creating a new
macro doesn't create a new path to reach the status, but a FLAG does.
--