~ubuntu-branches/debian/stretch/jfsutils/stretch

« back to all changes in this revision

Viewing changes to include/jfs_filsys.h

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Hornburg (Racke)
  • Date: 2006-08-02 21:15:09 UTC
  • mfrom: (1.2.2 upstream) (2.1.3 breezy)
  • Revision ID: james.westby@ubuntu.com-20060802211509-eoqwjtlgla5tu9dt
* new upstream release fixing stack buffer overflow (Closes: #343638)
* keep only reference to GPL in debian/copyright
* mark udeb package as such properly and create dependencies 
  (Closes: #381245, thanks to Frans Pop <fjp@debian.org> for the patch)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 *
4
4
 *   This program 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
6
 
 *   the Free Software Foundation; either version 2 of the License, or 
 
6
 *   the Free Software Foundation; either version 2 of the License, or
7
7
 *   (at your option) any later version.
8
 
 * 
 
8
 *
9
9
 *   This program is distributed in the hope that it will be useful,
10
10
 *   but WITHOUT ANY WARRANTY;  without even the implied warranty of
11
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
12
12
 *   the GNU General Public License for more details.
13
13
 *
14
14
 *   You should have received a copy of the GNU General Public License
15
 
 *   along with this program;  if not, write to the Free Software 
 
15
 *   along with this program;  if not, write to the Free Software
16
16
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
17
 */
18
18
#ifndef _H_JFS_FILSYS
21
21
/*
22
22
 *      jfs_filsys.h
23
23
 *
24
 
 * file system (implementation-dependent) constants 
 
24
 * file system (implementation-dependent) constants
25
25
 *
26
 
 * refer to <limits.h> for system wide implementation-dependent constants 
 
26
 * refer to <limits.h> for system wide implementation-dependent constants
27
27
 */
28
28
 
29
29
#include "jfs_types.h"
50
50
#define JFS_COMMIT          0x00000f00  /* commit option mask */
51
51
#define JFS_GROUPCOMMIT 0x00000100      /* group (of 1) commit */
52
52
#define JFS_LAZYCOMMIT  0x00000200      /* lazy commit */
53
 
#define JFS_TMPFS           0x00000400  /* temporary file system - 
 
53
#define JFS_TMPFS           0x00000400  /* temporary file system -
54
54
                                         * do not log/commit:
55
55
                                         */
56
56
 
172
172
                                         * followed by 1st extent of map
173
173
                                         */
174
174
#define AITBL_OFF       (AIMAP_OFF + (SIZE_OF_MAP_PAGE << 1))
175
 
                                        /* 
 
175
                                        /*
176
176
                                         * 1st extent of aggregate inode table
177
177
                                         */
178
178
#define SUPER2_OFF      (AITBL_OFF + INODE_EXTENT_SIZE)
246
246
 */
247
247
#define FM_CLEAN 0x00000000     /* file system is unmounted and clean */
248
248
#define FM_MOUNT 0x00000001     /* file system is mounted cleanly */
249
 
#define FM_DIRTY 0x00000002     /* file system was not unmounted and clean 
250
 
                                 * when mounted or 
 
249
#define FM_DIRTY 0x00000002     /* file system was not unmounted and clean
 
250
                                 * when mounted or
251
251
                                 * commit failure occurred while being mounted:
252
 
                                 * fsck() must be run to repair 
 
252
                                 * fsck() must be run to repair
253
253
                                 */
254
254
#define FM_LOGREDO 0x00000004   /* log based recovery (logredo()) failed:
255
 
                                 * fsck() must be run to repair 
 
255
                                 * fsck() must be run to repair
256
256
                                 */
257
257
#define FM_EXTENDFS 0x00000008  /* file system extendfs() in progress */
258
258