mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-04 20:19:47 +08:00
Fixing checkpatch.pl issues in befs header files:
WARNING: Missing a blank line after declarations
+ befs_inode_addr iaddr;
+ iaddr.allocation_group = blockno >> BEFS_SB(sb)->ag_shift;
WARNING: space prohibited between function name and open parenthesis '('
+ return BEFS_SB(sb)->block_size / sizeof (befs_disk_inode_addr);
ERROR: "foo * bar" should be "foo *bar"
+ const char *key, befs_off_t * value);
ERROR: Macros with complex values should be enclosed in parentheses
+#define PACKED __attribute__ ((__packed__))
Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com>
20 lines
536 B
C
20 lines
536 B
C
/*
|
|
* datastream.h
|
|
*
|
|
*/
|
|
|
|
struct buffer_head *befs_read_datastream(struct super_block *sb,
|
|
const befs_data_stream *ds,
|
|
befs_off_t pos, uint *off);
|
|
|
|
int befs_fblock2brun(struct super_block *sb, const befs_data_stream *data,
|
|
befs_blocknr_t fblock, befs_block_run *run);
|
|
|
|
size_t befs_read_lsymlink(struct super_block *sb, const befs_data_stream *data,
|
|
void *buff, befs_off_t len);
|
|
|
|
befs_blocknr_t befs_count_blocks(struct super_block *sb,
|
|
const befs_data_stream *ds);
|
|
|
|
extern const befs_inode_addr BAD_IADDR;
|