main.c (65320fcedaa7affd1736cd7aa51f5e70b5c7e7f2) main.c (1ab6c4997e04a00c50c6d786c2f046adc0d1f5de)
1/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
4 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
7 * of the GNU General Public License version 2.
8 */

--- 18 unchanged lines hidden (view full) ---

27#include "glock.h"
28#include "quota.h"
29#include "recovery.h"
30#include "dir.h"
31
32struct workqueue_struct *gfs2_control_wq;
33
34static struct shrinker qd_shrinker = {
1/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
4 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
7 * of the GNU General Public License version 2.
8 */

--- 18 unchanged lines hidden (view full) ---

27#include "glock.h"
28#include "quota.h"
29#include "recovery.h"
30#include "dir.h"
31
32struct workqueue_struct *gfs2_control_wq;
33
34static struct shrinker qd_shrinker = {
35 .shrink = gfs2_shrink_qd_memory,
35 .count_objects = gfs2_qd_shrink_count,
36 .scan_objects = gfs2_qd_shrink_scan,
36 .seeks = DEFAULT_SEEKS,
37};
38
39static void gfs2_init_inode_once(void *foo)
40{
41 struct gfs2_inode *ip = foo;
42
43 inode_init_once(&ip->i_inode);

--- 201 unchanged lines hidden ---
37 .seeks = DEFAULT_SEEKS,
38};
39
40static void gfs2_init_inode_once(void *foo)
41{
42 struct gfs2_inode *ip = foo;
43
44 inode_init_once(&ip->i_inode);

--- 201 unchanged lines hidden ---