dir.c (592ddec7578a33fb6b3e2ba78aed91614bbb30e2) dir.c (643fa9612bf1a29153eee46fd398117632f93cbe)
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * linux/fs/ext4/dir.c
4 *
5 * Copyright (C) 1992, 1993, 1994, 1995
6 * Remy Card (card@masi.ibp.fr)
7 * Laboratoire MASI - Institut Blaise Pascal
8 * Universite Pierre et Marie Curie (Paris VI)

--- 269 unchanged lines hidden (view full) ---

278 goto done;
279 brelse(bh);
280 bh = NULL;
281 offset = 0;
282 }
283done:
284 err = 0;
285errout:
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * linux/fs/ext4/dir.c
4 *
5 * Copyright (C) 1992, 1993, 1994, 1995
6 * Remy Card (card@masi.ibp.fr)
7 * Laboratoire MASI - Institut Blaise Pascal
8 * Universite Pierre et Marie Curie (Paris VI)

--- 269 unchanged lines hidden (view full) ---

278 goto done;
279 brelse(bh);
280 bh = NULL;
281 offset = 0;
282 }
283done:
284 err = 0;
285errout:
286#ifdef CONFIG_EXT4_FS_ENCRYPTION
287 fscrypt_fname_free_buffer(&fstr);
286 fscrypt_fname_free_buffer(&fstr);
288#endif
289 brelse(bh);
290 return err;
291}
292
293static inline int is_32bit_api(void)
294{
295#ifdef CONFIG_COMPAT
296 return in_compat_syscall();

--- 368 unchanged lines hidden ---
287 brelse(bh);
288 return err;
289}
290
291static inline int is_32bit_api(void)
292{
293#ifdef CONFIG_COMPAT
294 return in_compat_syscall();

--- 368 unchanged lines hidden ---