pjd f097c06091 Close body of the VFS_UNLOCK_GIANT() macro into do { } while (0) loop,
so it can be used in code like this:

	if (cond)
		VFS_UNLOCK_GIANT(vfslocked);
	else
		; /* Do something else. */

Before the change, compiler couldn't decide on its own if else should be
applied to the 'if (cond)' or to the if statement inside VFS_UNLOCK_GIANT()
macro.
2010-12-21 21:59:21 +00:00
..
2010-12-06 10:24:06 +00:00
2010-11-27 15:41:44 +00:00
2010-12-21 19:30:24 +00:00
2010-12-19 18:06:20 +00:00
2010-11-09 10:59:09 +00:00
2010-12-05 10:15:23 +00:00
2010-12-14 20:57:40 +00:00