summaryrefslogtreecommitdiffstats
path: root/fs/quota/dquot.c
Commit message (Collapse)AuthorAgeFilesLines
* quota: Remove superfluous inlinesJan Kara2009-03-261-6/+7
| | | | | | | Remove inlines of large functions to decrease code size (saved 1543 bytes). Signed-off-by: Jan Kara <jack@suse.cz>
* quota: Remove NODQUOT macroJan Kara2009-03-261-34/+36
| | | | | | | Remove this macro which is just a definition of NULL. Fix a few coding style issues along the way. Signed-off-by: Jan Kara <jack@suse.cz>
* quota: Make global quota locks cacheline alignedJan Kara2009-03-261-3/+3
| | | | | | | | | | Andrew Morton has suggested that three global quota locks can end up in the same cacheline which can result in bad cacheline ping-pong on SMP machines. Make locks cacheline aligned so that we avoid this problem (thanks goes to Andrew for the idea). Signed-off-by: Jan Kara <jack@suse.cz> CC: Andrew Morton <akpm@linux-foundation.org>
* quota: Move quota files into separate directoryJan Kara2009-03-261-0/+2564
Quota subsystem has more and more files. It's time to create a dir for it. Signed-off-by: Jan Kara <jack@suse.cz>