| 1 | /* | 
|---|
| 2 | * devfs/devfs-private.h - devfs internal functions and data types | 
|---|
| 3 | * | 
|---|
| 4 | * Copyright (c) 2008,2009,2010,2011,2012 Ghassan Almaless | 
|---|
| 5 | * Copyright (c) 2011,2012 UPMC Sorbonne Universites | 
|---|
| 6 | * | 
|---|
| 7 | * This file is part of ALMOS-kernel. | 
|---|
| 8 | * | 
|---|
| 9 | * ALMOS-kernel is free software; you can redistribute it and/or modify it | 
|---|
| 10 | * under the terms of the GNU General Public License as published by | 
|---|
| 11 | * the Free Software Foundation; version 2.0 of the License. | 
|---|
| 12 | * | 
|---|
| 13 | * ALMOS-kernel is distributed in the hope that it will be useful, but | 
|---|
| 14 | * WITHOUT ANY WARRANTY; without even the implied warranty of | 
|---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU | 
|---|
| 16 | * General Public License for more details. | 
|---|
| 17 | * | 
|---|
| 18 | * You should have received a copy of the GNU General Public License | 
|---|
| 19 | * along with ALMOS-kernel; if not, write to the Free Software Foundation, | 
|---|
| 20 | * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | 
|---|
| 21 | */ | 
|---|
| 22 |  | 
|---|
| 23 | #ifndef _DEVFS_PRIVATE_H_ | 
|---|
| 24 | #define _DEVFS_PRIVATE_H_ | 
|---|
| 25 |  | 
|---|
| 26 | #include <spinlock.h> | 
|---|
| 27 | #include <metafs.h> | 
|---|
| 28 |  | 
|---|
| 29 | struct devfs_db_s | 
|---|
| 30 | { | 
|---|
| 31 | spinlock_t lock; | 
|---|
| 32 | struct metafs_s root; | 
|---|
| 33 | }; | 
|---|
| 34 |  | 
|---|
| 35 | extern struct devfs_db_s devfs_db; | 
|---|
| 36 |  | 
|---|
| 37 | struct devfs_file_s | 
|---|
| 38 | { | 
|---|
| 39 | struct metafs_iter_s iter; | 
|---|
| 40 | struct device_s *dev; | 
|---|
| 41 | struct devfs_context_s *ctx; | 
|---|
| 42 | }; | 
|---|
| 43 |  | 
|---|
| 44 | const struct vfs_inode_op_s devfs_i_op; | 
|---|
| 45 | const struct vfs_file_op_s devfs_f_op; | 
|---|
| 46 |  | 
|---|
| 47 | #endif  /* _DEVFS_PRIVATE_H_ */ | 
|---|