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

« back to all changes in this revision

Viewing changes to fs/aufs25/opts.h

  • 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:
19
19
/*
20
20
 * mount options/flags
21
21
 *
22
 
 * $Id: opts.h,v 1.4 2008/06/02 02:39:11 sfjro Exp $
 
22
 * $Id: opts.h,v 1.5 2008/06/16 00:14:28 sfjro Exp $
23
23
 */
24
24
 
25
25
#ifndef __AUFS_OPTS_H__
228
228
#define au_opt_set_coo(flags, name) do { \
229
229
        (flags) &= ~AuOptMask_COO; \
230
230
        ((flags) |= AuOpt_##name); \
231
 
} while(0)
 
231
} while (0)
232
232
 
233
233
#define au_opt_set_udba(flags, name) do { \
234
234
        (flags) &= ~AuOptMask_UDBA; \
235
235
        ((flags) |= AuOpt_##name); \
236
 
} while(0)
 
236
} while (0)
237
237
 
238
238
#define au_opt_clr(flags, name)         { ((flags) &= ~AuOpt_##name); }
239
239