~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/fs/bfs/bfs.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /*
  3  *      fs/bfs/bfs.h
  4  *      Copyright (C) 1999-2018 Tigran Aivazian <aivazian.tigran@gmail.com>
  5  */
  6 #ifndef _FS_BFS_BFS_H
  7 #define _FS_BFS_BFS_H
  8 
  9 #include <linux/bfs_fs.h>
 10 
 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 
 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;
 25         unsigned long si_lf_eblk;
 26         unsigned long si_lasti;
 27         DECLARE_BITMAP(si_imap, BFS_MAX_LASTI+1);
 28         struct mutex bfs_lock;
 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 {
 48         return container_of(inode, struct bfs_inode_info, vfs_inode);
 49 }
 50 
 51 
 52 #define printf(format, args...) \
 53         printk(KERN_ERR "BFS-fs: %s(): " format, __func__, ## args)
 54 
 55 /* inode.c */
 56 extern struct inode *bfs_iget(struct super_block *sb, unsigned long ino);
 57 extern void bfs_dump_imap(const char *, struct super_block *);
 58 
 59 /* file.c */
 60 extern const struct inode_operations bfs_file_inops;
 61 extern const struct file_operations bfs_file_operations;
 62 extern const struct address_space_operations bfs_aops;
 63 
 64 /* dir.c */
 65 extern const struct inode_operations bfs_dir_inops;
 66 extern const struct file_operations bfs_dir_operations;
 67 
 68 #endif /* _FS_BFS_BFS_H */
 69 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php