Home
last modified time | relevance | path

Searched refs:GFP_NOFS (Results 1 – 25 of 355) sorted by relevance

12345678910>>...15

/kernel/linux/linux-5.10/fs/crypto/
Dbio.c55 bio = bio_alloc(GFP_NOFS, BIO_MAX_PAGES); in fscrypt_zeroout_range_inline_crypt()
62 fscrypt_set_bio_crypt_ctx(bio, inode, lblk, GFP_NOFS); in fscrypt_zeroout_range_inline_crypt()
141 pages[i] = fscrypt_alloc_bounce_page(i == 0 ? GFP_NOFS : in fscrypt_zeroout_range()
151 bio = bio_alloc(GFP_NOFS, nr_pages); in fscrypt_zeroout_range()
163 blocksize, offset, GFP_NOFS); in fscrypt_zeroout_range()
Dfname.c110 req = skcipher_request_alloc(tfm, GFP_NOFS); in fscrypt_fname_encrypt()
153 req = skcipher_request_alloc(tfm, GFP_NOFS); in fname_decrypt()
271 crypto_str->name = kmalloc(max_presented_len + 1, GFP_NOFS); in fscrypt_fname_alloc_buffer()
414 GFP_NOFS); in fscrypt_setup_filename()
/kernel/linux/linux-5.10/fs/dlm/
Dmemory.c47 p = kzalloc(ls->ls_lvblen, GFP_NOFS); in dlm_allocate_lvb()
60 r = kmem_cache_zalloc(rsb_cache, GFP_NOFS); in dlm_allocate_rsb()
75 lkb = kmem_cache_zalloc(lkb_cache, GFP_NOFS); in dlm_allocate_lkb()
Dconfig.c378 cl = kzalloc(sizeof(struct dlm_cluster), GFP_NOFS); in make_cluster()
379 sps = kzalloc(sizeof(struct dlm_spaces), GFP_NOFS); in make_cluster()
380 cms = kzalloc(sizeof(struct dlm_comms), GFP_NOFS); in make_cluster()
448 sp = kzalloc(sizeof(struct dlm_space), GFP_NOFS); in make_space()
449 nds = kzalloc(sizeof(struct dlm_nodes), GFP_NOFS); in make_space()
492 cm = kzalloc(sizeof(struct dlm_comm), GFP_NOFS); in make_comm()
531 nd = kzalloc(sizeof(struct dlm_node), GFP_NOFS); in make_node()
640 addr = kzalloc(sizeof(*addr), GFP_NOFS); in comm_addr_store()
855 nodes = kcalloc(count, sizeof(struct dlm_config_node), GFP_NOFS); in dlm_config_nodes()
Dlowcomms.c190 con->rx_buf = kmalloc(con->rx_buflen, GFP_NOFS); in nodeid2con()
365 new_node = kzalloc(sizeof(struct dlm_node_addr), GFP_NOFS); in dlm_lowcomms_addr()
369 new_addr = kzalloc(sizeof(struct sockaddr_storage), GFP_NOFS); in dlm_lowcomms_addr()
464 con = nodeid2con(nodeid, GFP_NOFS); in dlm_lowcomms_connect_node()
554 sk->sk_allocation = GFP_NOFS; in add_sock()
659 newbuf = kmalloc(newlen, GFP_NOFS); in con_realloc_receive_buf()
822 newcon = nodeid2con(nodeid, GFP_NOFS); in accept_from_sock()
832 othercon = kzalloc(sizeof(*othercon), GFP_NOFS); in accept_from_sock()
841 othercon->rx_buf = kmalloc(othercon->rx_buflen, GFP_NOFS); in accept_from_sock()
1221 addr = kmemdup(&sas, sizeof(*addr), GFP_NOFS); in init_local()
[all …]
/kernel/linux/linux-5.10/fs/btrfs/
Dextent-io-tree.h133 GFP_NOFS, NULL); in unlock_extent_cached()
165 return set_extent_bit(tree, start, end, bits, NULL, NULL, GFP_NOFS); in set_extent_bits()
172 cached_state, GFP_NOFS, NULL); in clear_extent_uptodate()
200 NULL, cached_state, GFP_NOFS); in set_extent_delalloc()
208 NULL, cached_state, GFP_NOFS); in set_extent_defrag()
215 GFP_NOFS); in set_extent_new()
Dbackref.c53 e = kmalloc(sizeof(*e), GFP_NOFS); in check_extent_in_eb()
439 ret = ulist_add(parents, eb->start, 0, GFP_NOFS); in add_all_parents()
513 eie, (void **)&old, GFP_NOFS); in add_all_parents()
697 parents = ulist_alloc(GFP_NOFS); in resolve_indirect_refs()
759 GFP_NOFS); in resolve_indirect_refs()
1026 bytenr, 1, NULL, GFP_NOFS); in add_inline_refs()
1036 bytenr, count, sc, GFP_NOFS); in add_inline_refs()
1042 bytenr, 1, NULL, GFP_NOFS); in add_inline_refs()
1066 sc, GFP_NOFS); in add_inline_refs()
1122 bytenr, 1, NULL, GFP_NOFS); in add_keyed_refs()
[all …]
/kernel/linux/linux-5.10/fs/ntfs/
Dmalloc.h52 return __ntfs_malloc(size, GFP_NOFS | __GFP_HIGHMEM); in ntfs_malloc_nofs()
69 return __ntfs_malloc(size, GFP_NOFS | __GFP_HIGHMEM | __GFP_NOFAIL); in ntfs_malloc_nofs_nofail()
Dunistr.c255 ucs = kmem_cache_alloc(ntfs_name_cache, GFP_NOFS); in ntfs_nlstoucs()
339 ns = kmalloc(ns_len + 1, GFP_NOFS); in ntfs_ucstonls()
355 ~63, GFP_NOFS); in ntfs_ucstonls()
/kernel/linux/linux-5.10/Documentation/core-api/
Dgfp_mask-from-fs-io.rst21 the gfp mask when calling an allocator. GFP_NOFS respectively GFP_NOIO can be
25 of GFP_NOFS/GFP_NOIO can lead to memory over-reclaim or other memory
55 What about __vmalloc(GFP_NOFS)
58 vmalloc doesn't support GFP_NOFS semantic because there are hardcoded
60 to fix up. That means that calling ``vmalloc`` with GFP_NOFS/GFP_NOIO is
/kernel/linux/linux-5.10/net/sunrpc/auth_gss/
Dgss_krb5_seqnum.c52 plain = kmalloc(8, GFP_NOFS); in krb5_make_seq_num()
83 plain = kmalloc(8, GFP_NOFS); in krb5_get_seq_num()
/kernel/linux/linux-5.10/fs/quota/
Dnetlink.c50 skb = genlmsg_new(msg_size, GFP_NOFS); in quota_send_warning()
87 genlmsg_multicast(&quota_genl_family, skb, 0, 0, GFP_NOFS); in quota_send_warning()
/kernel/linux/linux-5.10/fs/afs/
Dfsclient.c293 afs_make_op_call(op, call, GFP_NOFS); in afs_fs_fetch_status()
473 afs_make_op_call(op, call, GFP_NOFS); in afs_fs_fetch_data64()
507 afs_make_op_call(op, call, GFP_NOFS); in afs_fs_fetch_data()
590 afs_make_op_call(op, call, GFP_NOFS); in afs_fs_create_file()
643 afs_make_op_call(op, call, GFP_NOFS); in afs_fs_make_dir()
716 afs_make_op_call(op, call, GFP_NOFS); in afs_fs_remove_file()
763 afs_make_op_call(op, call, GFP_NOFS); in afs_fs_remove_dir()
843 afs_make_op_call(op, call, GFP_NOFS); in afs_fs_link()
938 afs_make_op_call(op, call, GFP_NOFS); in afs_fs_symlink()
1034 afs_make_op_call(op, call, GFP_NOFS); in afs_fs_rename()
[all …]
Dyfsclient.c528 afs_make_op_call(op, call, GFP_NOFS); in yfs_fs_fetch_data()
610 afs_make_op_call(op, call, GFP_NOFS); in yfs_fs_create_file()
658 afs_make_op_call(op, call, GFP_NOFS); in yfs_fs_make_dir()
742 afs_make_op_call(op, call, GFP_NOFS); in yfs_fs_remove_file2()
811 afs_make_op_call(op, call, GFP_NOFS); in yfs_fs_remove_file()
852 afs_make_op_call(op, call, GFP_NOFS); in yfs_fs_remove_dir()
925 afs_make_op_call(op, call, GFP_NOFS); in yfs_fs_link()
1005 afs_make_op_call(op, call, GFP_NOFS); in yfs_fs_symlink()
1084 afs_make_op_call(op, call, GFP_NOFS); in yfs_fs_rename()
1150 afs_make_op_call(op, call, GFP_NOFS); in yfs_fs_store_data()
[all …]
/kernel/linux/linux-5.10/net/ceph/
Dmsgpool.c73 GFP_NOFS, false); in ceph_msgpool_get()
76 msg = mempool_alloc(pool->pool, GFP_NOFS); in ceph_msgpool_get()
Dauth_none.c97 au = kmalloc(sizeof(*au), GFP_NOFS); in ceph_auth_none_create_authorizer()
134 xi = kzalloc(sizeof(*xi), GFP_NOFS); in ceph_auth_none_init()
Dpagelist.c59 page = __page_cache_alloc(GFP_NOFS); in ceph_pagelist_addpage()
110 struct page *page = __page_cache_alloc(GFP_NOFS); in ceph_pagelist_reserve()
/kernel/linux/linux-5.10/fs/ceph/
Dmdsmap.c126 m = kzalloc(sizeof(*m), GFP_NOFS); in ceph_mdsmap_decode()
168 m->m_info = kcalloc(m->possible_max_rank, sizeof(*m->m_info), GFP_NOFS); in ceph_mdsmap_decode()
259 sizeof(u32), GFP_NOFS); in ceph_mdsmap_decode()
273 m->m_data_pg_pools = kcalloc(n, sizeof(u64), GFP_NOFS); in ceph_mdsmap_decode()
320 GFP_NOFS | __GFP_ZERO); in ceph_mdsmap_decode()
/kernel/linux/linux-5.10/fs/ocfs2/
Dacl.c47 acl = posix_acl_alloc(count, GFP_NOFS); in ocfs2_acl_from_xattr()
87 ocfs2_acl = kmalloc(*size, GFP_NOFS); in ocfs2_acl_to_xattr()
136 value = kmalloc(retval, GFP_NOFS); in ocfs2_get_acl_nolock()
387 ret = __posix_acl_create(&acl, GFP_NOFS, &mode); in ocfs2_init_acl()
/kernel/linux/linux-5.10/fs/ext4/
Dacl.c37 acl = posix_acl_alloc(count, GFP_NOFS); in ext4_acl_from_disk()
99 sizeof(ext4_acl_entry), GFP_NOFS); in ext4_acl_to_disk()
164 value = kmalloc(retval, GFP_NOFS); in ext4_get_acl()
/kernel/linux/linux-5.10/security/tomoyo/
Daudit.c26 char *buffer = kzalloc(tomoyo_buffer_len, GFP_NOFS); in tomoyo_print_bprm()
156 char *buffer = kmalloc(tomoyo_buffer_len, GFP_NOFS); in tomoyo_print_header()
275 buf = kzalloc(len, GFP_NOFS); in tomoyo_init_log()
378 entry = kzalloc(sizeof(*entry), GFP_NOFS); in tomoyo_write_log2()
Dmemory.c76 void *ptr = kzalloc(size, GFP_NOFS); in tomoyo_commit_ok()
173 ptr = kzalloc(sizeof(*ptr) + len, GFP_NOFS); in tomoyo_get_name()
/kernel/linux/linux-5.10/fs/ubifs/
Dxattr.c128 ui->data = kmemdup(value, size, GFP_NOFS); in create_xattr()
206 buf = kmemdup(value, size, GFP_NOFS); in change_xattr()
282 xent = kmalloc(UBIFS_MAX_XENT_NODE_SZ, GFP_NOFS); in ubifs_xattr_set()
340 xent = kmalloc(UBIFS_MAX_XENT_NODE_SZ, GFP_NOFS); in ubifs_xattr_get()
609 xent = kmalloc(UBIFS_MAX_XENT_NODE_SZ, GFP_NOFS); in ubifs_xattr_remove()
653 strlen(xattr->name) + 1, GFP_NOFS); in init_xattrs()
/kernel/linux/linux-5.10/security/integrity/ima/
Dima_api.c51 template_desc->num_fields), GFP_NOFS); in ima_alloc_init_template()
56 sizeof(*digests), GFP_NOFS); in ima_alloc_init_template()
256 tmpbuf = krealloc(iint->ima_hash, length, GFP_NOFS); in ima_collect_measurement()
/kernel/linux/linux-5.10/fs/reiserfs/
Dxattr_acl.c84 acl = posix_acl_alloc(count, GFP_NOFS); in reiserfs_posix_acl_from_disk()
145 GFP_NOFS); in reiserfs_posix_acl_to_disk()
216 value = kmalloc(size, GFP_NOFS); in reiserfs_get_acl()

12345678910>>...15