linux/fs/befs/inode.c

// SPDX-License-Identifier: GPL-2.0
/*
 * inode.c
 *
 * Copyright (C) 2001 Will Dyson <[email protected]>
 */

#include <linux/fs.h>

#include "befs.h"
#include "inode.h"

/*
 * Validates the correctness of the befs inode
 * Returns BEFS_OK if the inode should be used, otherwise
 * returns BEFS_BAD_INODE
 */
int
befs_check_inode(struct super_block *sb, befs_inode *raw_inode,
		 befs_blocknr_t inode)
{}