1. 10 1月, 2012 1 次提交
    • A
      logfs: rename functions starting with mtd_ · 48d36102
      Artem Bityutskiy 提交于
      We are going to re-work the MTD interface and change 'mtd->write()' to
      'mtd_write()', 'mtd->read()' to 'mtd_read()' and so forth for all functions
      in the 'struct mtd_info' structure.
      
      However, logfs has its own 'mtd_read()', 'mtd_write()', etc functions
      which collide with our changes. This patch renames these logfs functions
      to 'logfs_mtd_read()', 'logfs_mtd_write()', etc.
      
      Additionally, to make the 'fs/logfs/dev_mtd.c' file look consistent, rename
      similarly all the other functions starting with 'mtd_'.
      
      Cc: Jörn Engel <joern@logfs.org>
      Signed-off-by: NArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
      Signed-off-by: NDavid Woodhouse <David.Woodhouse@intel.com>
      48d36102
  2. 31 3月, 2011 1 次提交
  3. 29 10月, 2010 4 次提交
  4. 08 5月, 2010 1 次提交
  5. 07 5月, 2010 1 次提交
  6. 05 3月, 2010 1 次提交
    • J
      [LogFS] Fix bdev erases · 9421502b
      Joern Engel 提交于
      Erases for block devices were always just emulated by writing 0xff.
      Some time back the write was removed and only the page cache was
      changed to 0xff.  Superficialy a good idea with two problems:
      1. Touching the page cache isn't necessary either.
      2. However, writing out 0xff _is_ necessary for the journal.  As the
         journal is scanned linearly, an old non-overwritten commit entry
         can be used on next mount and cause havoc.
      
      This should fix both aspects.
      9421502b
  7. 21 11月, 2009 1 次提交