~ubuntu-branches/ubuntu/quantal/linux-lowlatency/quantal-proposed

« back to all changes in this revision

Viewing changes to fs/ext2/xattr.c

  • Committer: Package Import Robot
  • Author(s): Andy Whitcroft, Andy Whitcroft
  • Date: 2012-06-21 09:16:38 UTC
  • Revision ID: package-import@ubuntu.com-20120621091638-gubhv4nox8xez1ct
Tags: 3.5.0-1.1
[ Andy Whitcroft]

* Rebuild lowlatency against Ubuntu-3.5.0-1.1
* All new configuration system to allow configuration deltas to be
  exposed via debian.lowlatency/config-delta

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
 */
55
55
 
56
56
#include <linux/buffer_head.h>
57
 
#include <linux/module.h>
58
57
#include <linux/init.h>
59
58
#include <linux/slab.h>
60
59
#include <linux/mbcache.h>
340
339
        spin_lock(&EXT2_SB(sb)->s_lock);
341
340
        EXT2_SET_COMPAT_FEATURE(sb, EXT2_FEATURE_COMPAT_EXT_ATTR);
342
341
        spin_unlock(&EXT2_SB(sb)->s_lock);
343
 
        sb->s_dirt = 1;
344
342
        mark_buffer_dirty(EXT2_SB(sb)->s_sbh);
345
343
}
346
344