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

« back to all changes in this revision

Viewing changes to fs/notify/group.c

  • Committer: Package Import Robot
  • Author(s): Alessio Igor Bogani
  • Date: 2011-10-26 11:13:05 UTC
  • Revision ID: package-import@ubuntu.com-20111026111305-04kado7d1u2er2rl
Tags: 3.2.0-16.25
Add new lowlatency kernel flavour

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#include <linux/srcu.h>
23
23
#include <linux/rculist.h>
24
24
#include <linux/wait.h>
 
25
#include <linux/module.h>
25
26
 
26
27
#include <linux/fsnotify_backend.h>
27
28
#include "fsnotify.h"
70
71
        if (atomic_dec_and_test(&group->refcnt))
71
72
                fsnotify_destroy_group(group);
72
73
}
 
74
EXPORT_SYMBOL(fsnotify_put_group);
73
75
 
74
76
/*
75
77
 * Create a new fsnotify_group and hold a reference for the group returned.
102
104
 
103
105
        return group;
104
106
}
 
107
EXPORT_SYMBOL(fsnotify_alloc_group);