Home
last modified time | relevance | path

Searched refs:crypto_str (Results 1 – 3 of 3) sorted by relevance

/linux-4.4.14/fs/f2fs/
Dcrypto_fname.c269 u32 ilen, struct f2fs_str *crypto_str) in f2fs_fname_crypto_alloc_buffer() argument
280 crypto_str->len = olen; in f2fs_fname_crypto_alloc_buffer()
285 crypto_str->name = kmalloc(olen + 1, GFP_NOFS); in f2fs_fname_crypto_alloc_buffer()
286 if (!(crypto_str->name)) in f2fs_fname_crypto_alloc_buffer()
296 void f2fs_fname_crypto_free_buffer(struct f2fs_str *crypto_str) in f2fs_fname_crypto_free_buffer() argument
298 if (!crypto_str) in f2fs_fname_crypto_free_buffer()
300 kfree(crypto_str->name); in f2fs_fname_crypto_free_buffer()
301 crypto_str->name = NULL; in f2fs_fname_crypto_free_buffer()
/linux-4.4.14/fs/ext4/
Dcrypto_fname.c281 u32 ilen, struct ext4_str *crypto_str) in ext4_fname_crypto_alloc_buffer() argument
285 crypto_str->len = olen; in ext4_fname_crypto_alloc_buffer()
290 crypto_str->name = kmalloc(olen+1, GFP_NOFS); in ext4_fname_crypto_alloc_buffer()
291 if (!(crypto_str->name)) in ext4_fname_crypto_alloc_buffer()
301 void ext4_fname_crypto_free_buffer(struct ext4_str *crypto_str) in ext4_fname_crypto_free_buffer() argument
303 if (!crypto_str) in ext4_fname_crypto_free_buffer()
305 kfree(crypto_str->name); in ext4_fname_crypto_free_buffer()
306 crypto_str->name = NULL; in ext4_fname_crypto_free_buffer()
Dext4.h2292 u32 ilen, struct ext4_str *crypto_str);
2305 void ext4_fname_crypto_free_buffer(struct ext4_str *crypto_str);