~ubuntu-branches/ubuntu/vivid/aufs/vivid

« back to all changes in this revision

Viewing changes to fs/aufs25/sysrq.c

  • Committer: Bazaar Package Importer
  • Author(s): Julian Andres Klode
  • Date: 2008-08-21 14:58:54 UTC
  • mfrom: (1.1.8 upstream) (4.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080821145854-4b49x09r4zmvlk5o
Tags: 0+20080719-4
01_vserver_apparmor.dpatch: [UPDATE] Disable vserver patches on kernel 
2.6.26, because they are not needed anymore. (Closes: #495921)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (C) 2008 Junjiro Okajima
 
2
 * Copyright (C) 2005-2008 Junjiro Okajima
3
3
 *
4
4
 * This program, aufs is free software; you can redistribute it and/or modify
5
5
 * it under the terms of the GNU General Public License as published by
19
19
/*
20
20
 * magic sysrq hanlder
21
21
 *
22
 
 * $Id: sysrq.c,v 1.6 2008/06/02 02:38:50 sfjro Exp $
 
22
 * $Id: sysrq.c,v 1.8 2008/07/07 01:12:39 sfjro Exp $
23
23
 */
24
24
 
25
25
#include <linux/fs.h>
67
67
        struct kobject *kobj;
68
68
        struct au_sbinfo *sbinfo;
69
69
 
70
 
        /* spin_lock(&au_kset.list_lock); */
71
 
        list_for_each_entry(kobj, &au_kset.list, entry) {
 
70
        /* spin_lock(&au_kset->list_lock); */
 
71
        list_for_each_entry(kobj, &au_kset->list, entry) {
72
72
                sbinfo = container_of(kobj, struct au_sbinfo, si_kobj);
73
73
                sysrq_sb(sbinfo->si_sb);
74
74
        }
75
 
        /* spin_unlock(&au_kset.list_lock); */
 
75
        /* spin_unlock(&au_kset->list_lock); */
76
76
}
77
77
 
78
78
static struct sysrq_key_op au_sysrq_op = {