Merge tag 'stable/for-linus-3.4' of git://git.kernel.org/pub/scm/linux/kernel/git...
authorLinus Torvalds <torvalds@linux-foundation.org>
Fri, 23 Mar 2012 02:52:47 +0000 (19:52 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 23 Mar 2012 02:52:47 +0000 (19:52 -0700)
Pull cleancache changes from Konrad Rzeszutek Wilk:
 "This has some patches for the cleancache API that should have been
  submitted a _long_ time ago.  They are basically cleanups:

   - rename of flush to invalidate

   - moving reporting of statistics into debugfs

   - use __read_mostly as necessary.

  Oh, and also the MAINTAINERS file change.  The files (except the
  MAINTAINERS file) have been in #linux-next for months now.  The late
  addition of MAINTAINERS file is a brain-fart on my side - didn't
  realize I needed that just until I was typing this up - and I based
  that patch on v3.3 - so the tree is on top of v3.3."

* tag 'stable/for-linus-3.4' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/mm:
  MAINTAINERS: Adding cleancache API to the list.
  mm: cleancache: Use __read_mostly as appropiate.
  mm: cleancache: report statistics via debugfs instead of sysfs.
  mm: zcache/tmem/cleancache: s/flush/invalidate/
  mm: cleancache: s/flush/invalidate/

1  2 
Documentation/vm/cleancache.txt
MAINTAINERS
drivers/staging/zcache/zcache-main.c
fs/super.c
mm/filemap.c
mm/truncate.c

@@@ -90,9 -91,9 +91,9 @@@ can be measured (across all filesystems
  succ_gets     - number of gets that were successful
  failed_gets   - number of gets that failed
  puts          - number of puts attempted (all "succeed")
- flushes               - number of flushes attempted
+ invalidates   - number of invalidates attempted
  
 -A backend implementatation may provide additional metrics.
 +A backend implementation may provide additional metrics.
  
  FAQ
  
diff --cc MAINTAINERS
Simple merge
Simple merge
diff --cc fs/super.c
Simple merge
diff --cc mm/filemap.c
Simple merge
diff --cc mm/truncate.c
Simple merge