mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00:00
fs: udf: Optimize udf_free_in_core_inode and udf_find_fileset function
These two functions perform the following optimizations. 1. Delete the type cast of foo pointer. Void * does not need to convert the type. 2. Delete the initialization assignment of bh variable, which is assigned first. Signed-off-by: Li zeming <zeming@nfschina.com> Signed-off-by: Jan Kara <jack@suse.cz> Link: https://lore.kernel.org/r/20221012104235.3331-1-zeming@nfschina.com
This commit is contained in:
parent
247f34f7b8
commit
0dafb7e671
@ -162,7 +162,7 @@ static void udf_free_in_core_inode(struct inode *inode)
|
||||
|
||||
static void init_once(void *foo)
|
||||
{
|
||||
struct udf_inode_info *ei = (struct udf_inode_info *)foo;
|
||||
struct udf_inode_info *ei = foo;
|
||||
|
||||
ei->i_data = NULL;
|
||||
inode_init_once(&ei->vfs_inode);
|
||||
@ -820,7 +820,7 @@ static int udf_find_fileset(struct super_block *sb,
|
||||
struct kernel_lb_addr *fileset,
|
||||
struct kernel_lb_addr *root)
|
||||
{
|
||||
struct buffer_head *bh = NULL;
|
||||
struct buffer_head *bh;
|
||||
uint16_t ident;
|
||||
int ret;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user