Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * fs/bfs/bfs.h |
Tigran Aivazian | d187715 | 2019-01-03 15:28:14 -0800 | [diff] [blame] | 4 | * Copyright (C) 1999-2018 Tigran Aivazian <aivazian.tigran@gmail.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | */ |
| 6 | #ifndef _FS_BFS_BFS_H |
| 7 | #define _FS_BFS_BFS_H |
| 8 | |
| 9 | #include <linux/bfs_fs.h> |
| 10 | |
Tigran Aivazian | d187715 | 2019-01-03 15:28:14 -0800 | [diff] [blame] | 11 | /* In theory BFS supports up to 512 inodes, numbered from 2 (for /) up to 513 inclusive. |
| 12 | In actual fact, attempting to create the 512th inode (i.e. inode No. 513 or file No. 511) |
| 13 | will fail with ENOSPC in bfs_add_entry(): the root directory cannot contain so many entries, counting '..'. |
| 14 | So, mkfs.bfs(8) should really limit its -N option to 511 and not 512. For now, we just print a warning |
| 15 | if a filesystem is mounted with such "impossible to fill up" number of inodes */ |
| 16 | #define BFS_MAX_LASTI 513 |
| 17 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | /* |
| 19 | * BFS file system in-core superblock info |
| 20 | */ |
| 21 | struct bfs_sb_info { |
| 22 | unsigned long si_blocks; |
| 23 | unsigned long si_freeb; |
| 24 | unsigned long si_freei; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | unsigned long si_lf_eblk; |
| 26 | unsigned long si_lasti; |
Tigran Aivazian | d187715 | 2019-01-03 15:28:14 -0800 | [diff] [blame] | 27 | DECLARE_BITMAP(si_imap, BFS_MAX_LASTI+1); |
Dmitri Vorobiev | 3f165e4 | 2008-07-25 19:44:54 -0700 | [diff] [blame] | 28 | struct mutex bfs_lock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | }; |
| 30 | |
| 31 | /* |
| 32 | * BFS file system in-core inode info |
| 33 | */ |
| 34 | struct bfs_inode_info { |
| 35 | unsigned long i_dsk_ino; /* inode number from the disk, can be 0 */ |
| 36 | unsigned long i_sblock; |
| 37 | unsigned long i_eblock; |
| 38 | struct inode vfs_inode; |
| 39 | }; |
| 40 | |
| 41 | static inline struct bfs_sb_info *BFS_SB(struct super_block *sb) |
| 42 | { |
| 43 | return sb->s_fs_info; |
| 44 | } |
| 45 | |
| 46 | static inline struct bfs_inode_info *BFS_I(struct inode *inode) |
| 47 | { |
Dmitri Vorobiev | f433dc5 | 2007-11-14 16:59:47 -0800 | [diff] [blame] | 48 | return container_of(inode, struct bfs_inode_info, vfs_inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | } |
| 50 | |
| 51 | |
| 52 | #define printf(format, args...) \ |
Harvey Harrison | 8e24eea | 2008-04-30 00:55:09 -0700 | [diff] [blame] | 53 | printk(KERN_ERR "BFS-fs: %s(): " format, __func__, ## args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
David Howells | e33ab08 | 2008-02-07 00:15:32 -0800 | [diff] [blame] | 55 | /* inode.c */ |
| 56 | extern struct inode *bfs_iget(struct super_block *sb, unsigned long ino); |
Fabian Frederick | 1da85fd | 2014-08-08 14:22:29 -0700 | [diff] [blame] | 57 | extern void bfs_dump_imap(const char *, struct super_block *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
| 59 | /* file.c */ |
Arjan van de Ven | 754661f | 2007-02-12 00:55:38 -0800 | [diff] [blame] | 60 | extern const struct inode_operations bfs_file_inops; |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 61 | extern const struct file_operations bfs_file_operations; |
Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 62 | extern const struct address_space_operations bfs_aops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
| 64 | /* dir.c */ |
Arjan van de Ven | 754661f | 2007-02-12 00:55:38 -0800 | [diff] [blame] | 65 | extern const struct inode_operations bfs_dir_inops; |
Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 66 | extern const struct file_operations bfs_dir_operations; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | |
| 68 | #endif /* _FS_BFS_BFS_H */ |