Subversion Repositories shark

Rev

Rev 3 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 pj 1
/*
2
 * Project: S.Ha.R.K.
3
 *
4
 * Coordinators:
5
 *   Giorgio Buttazzo    <giorgio@sssup.it>
6
 *   Paolo Gai           <pj@gandalf.sssup.it>
7
 *
8
 * Authors     :
9
 *   Paolo Gai           <pj@gandalf.sssup.it>
10
 *   Massimiliano Giorgi <massy@gandalf.sssup.it>
11
 *   Luca Abeni          <luca@gandalf.sssup.it>
12
 *   (see the web pages for full authors list)
13
 *
14
 * ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy)
15
 *
16
 * http://www.sssup.it
17
 * http://retis.sssup.it
18
 * http://shark.sssup.it
19
 */
20
 
21
 
22
/*
23
 * Copyright (C) 1999 Massimiliano Giorgi
24
 *
25
 * This program is free software; you can redistribute it and/or modify
26
 * it under the terms of the GNU General Public License as published by
27
 * the Free Software Foundation; either version 2 of the License, or
28
 * (at your option) any later version.
29
 *
30
 * This program is distributed in the hope that it will be useful,
31
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
32
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
33
 * GNU General Public License for more details.
34
 *
35
 * You should have received a copy of the GNU General Public License
36
 * along with this program; if not, write to the Free Software
37
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
38
 *
39
 */
40
 
41
/*
42
 * CVS :        $Id: bdev.h,v 1.1.1.1 2002-03-29 14:12:49 pj Exp $
43
 *
44
 * File:        $File$
45
 * Revision:    $Revision: 1.1.1.1 $
46
 * Last update: $Date: 2002-03-29 14:12:49 $
47
 */
48
 
49
#ifndef __BDEV_H__
50
#define __BDEV_H__
51
 
52
#include "glue.h"
53
#include <fs/bdevinit.h>
54
#include <fs/bdev.h>
55
 
56
#define MAXBLOCKDEVICE 8
57
 
58
struct block_device {
59
 
60
#ifdef _PARANOIA
61
  __uint32_t magic;
62
#endif
63
 
64
  char       *bd_name;
65
  int        bd_sectorsize;
66
 
67
  __uint32_t bd_flag_used:1;
68
 
69
  struct block_device_operations *bd_op;
70
};
71
 
72
#define MAXBLOCKDEVICEMINOR 16
73
 
74
struct block_device_minor {
75
 
76
#ifdef _PARANOIA
77
  __uint32_t magic;
78
#endif
79
 
80
  __dev_t              bdm_device;
81
  __uint8_t            bdm_fsind;
82
#define MAXDEVICENAME 16
83
  char                 bdm_name[MAXDEVICENAME+1];
84
};
85
 
86
struct block_device_operations {
87
  int (*_trylock)(__dev_t device);
88
  int (*_tryunlock)(__dev_t device);
89
  int (*read)(__dev_t device, __blkcnt_t blocknum, __uint8_t *buffer);
90
  int (*seek)(__dev_t device, __blkcnt_t blocknum);
91
  int (*write)(__dev_t device, __blkcnt_t blocknum, __uint8_t *buffer);
92
};
93
 
94
#define TRYLOCK_OK     BDEV_OK
95
#define TRYLOCK_CANT   BDEV_FAIL
96
#define TRYLOCK_ERR    BDEV_ERROR
97
#define TRYUNLOCK_OK   TRYLOCK_OK 
98
#define TRYUNLOCK_CANT TRYLOCK_CANT
99
#define TRYUNLOCK_ERR  TRYLOCK_ERR
100
 
101
int bdev_register(__dev_t major,char *name,struct block_device *);
102
int bdev_register_minor(__dev_t device, char *name,__uint8_t fsind);
103
 
104
int bdev_read(__dev_t dev, __blkcnt_t blocknum, __uint8_t *buffer);
105
int bdev_seek(__dev_t dev, __blkcnt_t blocknum);
106
int bdev_write(__dev_t dev, __blkcnt_t blocknum, __uint8_t *buffer);
107
 
108
#endif