~ubuntu-branches/ubuntu/hardy/silo/hardy-updates

« back to all changes in this revision

Viewing changes to second/file.h

  • Committer: Bazaar Package Importer
  • Author(s): Fabio M. Di Nitto
  • Date: 2007-10-25 09:28:08 UTC
  • mfrom: (15.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20071025092808-1yhj12t7s4zqsfu5
Tags: 1.4.13a+git20070930-1ubuntu1
* Merge from debian unstable, remaining changes:
  - Build with -fno-stack-protector.
  - Change silo.postinst to automatically update the boot block without
    invoking siloconfig and keep asking questions on upgrades.
  - Convert silo.conf to use /dev/disk/by-uuid.
  - Ubuntu maintainer foobar.
  - Fix debian/rules call to dh_installdocs.
  - Drop the requirement of gcc-4.1 and start using default gcc.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Exported filesystem related stuff
 
2
 
 
3
   Copyright (C) 2001 Ben Collins
 
4
 
 
5
   This program is free software; you can redistribute it and/or modify
 
6
   it under the terms of the GNU General Public License as published by
 
7
   the Free Software Foundation; either version 2 of the License, or
 
8
   (at your option) any later version.
 
9
 
 
10
   This program is distributed in the hope that it will be useful,
 
11
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
   GNU General Public License for more details.
 
14
 
 
15
   You should have received a copy of the GNU General Public License
 
16
   along with this program; if not, write to the Free Software
 
17
   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
 
18
   USA.  */
 
19
 
 
20
typedef int FILE;
 
21
#include <linux/types.h>
 
22
#include <ext2fs/ext2_fs.h>
 
23
#include <ext2fs/ext2fs.h>
 
24
 
 
25
extern unsigned int bs;                 /* Block Size */
 
26
extern io_manager silo_io_manager;      /* The Filesystem I/O Manager */
 
27
extern void *filebuffer;
 
28
extern ext2_filsys fs;                  /* Generic filesystem */
 
29
extern ino_t root, cwd;                 /* root and cwd for current fs */
 
30
extern int solaris;
 
31
 
 
32
extern int dump_block (blk_t *, int);
 
33
extern int dump_finish (void);
 
34
extern void register_silo_inode (unsigned int, unsigned int,
 
35
                                 unsigned int, unsigned int,
 
36
                                 unsigned int, const char *,
 
37
                                 const char *);
 
38
 
 
39
/* Filesystem operations provided by each module */
 
40
struct fs_ops {
 
41
    char *name;
 
42
    int (*open)         (char *);
 
43
    int (*ls)           (void);
 
44
    int (*dump)         (void);
 
45
    int (*ino_size)     (void);
 
46
    int (*namei_follow) (const char *);
 
47
    void (*print_error) (int);
 
48
    void (*close)       (void);
 
49
    int have_inode;
 
50
};