/linux-6.3-rc2/lib/kunit/ |
A D | string-stream.c | 67 list_add_tail(&frag_container->node, &stream->fragments); in string_stream_vadd() 92 &stream->fragments, in string_stream_clear() 111 list_for_each_entry(frag_container, &stream->fragments, node) in string_stream_get_string() 133 return list_empty(&stream->fragments); in string_stream_is_empty() 146 INIT_LIST_HEAD(&stream->fragments); in alloc_string_stream()
|
A D | string-stream.h | 23 struct list_head fragments; member
|
/linux-6.3-rc2/fs/xfs/scrub/ |
A D | refcount.c | 75 struct list_head fragments; member 135 list_add_tail(&frag->list, &refchk->fragments); in xchk_refcountbt_rmap_check() 178 list_for_each_entry(frag, &refchk->fragments, list) { in xchk_refcountbt_process_rmap_fragments() 189 list_for_each_entry_safe(frag, n, &refchk->fragments, list) { in xchk_refcountbt_process_rmap_fragments() 206 while (!list_empty(&refchk->fragments)) { in xchk_refcountbt_process_rmap_fragments() 223 list_for_each_entry_safe(frag, n, &refchk->fragments, list) { in xchk_refcountbt_process_rmap_fragments() 262 list_for_each_entry_safe(frag, n, &refchk->fragments, list) { in xchk_refcountbt_process_rmap_fragments() 296 INIT_LIST_HEAD(&refchk.fragments); in xchk_refcountbt_xref_rmap() 307 list_for_each_entry_safe(frag, n, &refchk.fragments, list) { in xchk_refcountbt_xref_rmap()
|
/linux-6.3-rc2/drivers/of/ |
A D | overlay.c | 77 struct fragment *fragments; member 226 fragment = &ovcs->fragments[k]; in dup_and_fixup_symbol_prop() 648 fragment = &ovcs->fragments[i]; in build_changeset() 732 struct fragment *fragments; in init_overlay_changeset() local 774 fragments = kcalloc(cnt, sizeof(*fragments), GFP_KERNEL); in init_overlay_changeset() 775 if (!fragments) { in init_overlay_changeset() 779 ovcs->fragments = fragments; in init_overlay_changeset() 787 fragment = &fragments[cnt]; in init_overlay_changeset() 807 fragment = &fragments[cnt]; in init_overlay_changeset() 851 of_node_put(ovcs->fragments[i].target); in free_overlay_changeset() [all …]
|
/linux-6.3-rc2/drivers/net/wireless/intel/ipw2x00/ |
A D | libipw_tx.c | 172 if (txb->fragments[i]) in libipw_txb_free() 173 dev_kfree_skb_any(txb->fragments[i]); in libipw_txb_free() 183 txb = kmalloc(struct_size(txb, fragments, nr_frags), gfp_mask); in libipw_alloc_txb() 192 txb->fragments[i] = __dev_alloc_skb(txb_size + headroom, in libipw_alloc_txb() 194 if (unlikely(!txb->fragments[i])) { in libipw_alloc_txb() 198 skb_reserve(txb->fragments[i], headroom); in libipw_alloc_txb() 202 dev_kfree_skb_any(txb->fragments[i--]); in libipw_alloc_txb() 427 skb_frag = txb->fragments[0]; in libipw_xmit() 452 skb_frag = txb->fragments[i]; in libipw_xmit()
|
/linux-6.3-rc2/fs/squashfs/ |
A D | fragment.c | 43 if (fragment >= msblk->fragments) in squashfs_frag_lookup() 64 u64 fragment_table_start, u64 next_table, unsigned int fragments) in squashfs_read_fragment_index_table() argument 66 unsigned int length = SQUASHFS_FRAGMENT_INDEX_BYTES(fragments); in squashfs_read_fragment_index_table()
|
A D | super.c | 188 unsigned int fragments; in squashfs_fill_super() local 290 msblk->fragments = le32_to_cpu(sblk->fragments); in squashfs_fill_super() 302 TRACE("Number of fragments %d\n", msblk->fragments); in squashfs_fill_super() 390 fragments = msblk->fragments; in squashfs_fill_super() 391 if (fragments == 0) in squashfs_fill_super() 403 le64_to_cpu(sblk->fragment_table_start), next_table, fragments); in squashfs_fill_super()
|
A D | squashfs_fs_sb.h | 65 unsigned int fragments; member
|
/linux-6.3-rc2/Documentation/mm/ |
A D | page_frags.rst | 2 Page fragments 7 fragments within that page are individually refcounted, in the page's 11 simple allocation framework for page fragments. This is used by the 35 fragments, but the page fragments are cached at the ring or descriptor
|
/linux-6.3-rc2/drivers/staging/rtl8192u/ieee80211/ |
A D | ieee80211_tx.c | 241 txb->fragments[i] = dev_alloc_skb(txb_size); in ieee80211_alloc_txb() 242 if (unlikely(!txb->fragments[i])) { in ieee80211_alloc_txb() 246 memset(txb->fragments[i]->cb, 0, sizeof(txb->fragments[i]->cb)); in ieee80211_alloc_txb() 250 dev_kfree_skb_any(txb->fragments[i--]); in ieee80211_alloc_txb() 701 skb_frag = txb->fragments[i]; in ieee80211_xmit() 792 skb_put_data(txb->fragments[0], skb->data, skb->len); in ieee80211_xmit() 798 tcb_desc = (struct cb_desc *)(txb->fragments[0]->cb + MAX_DEV_ADDR_SIZE); in ieee80211_xmit() 810 ieee80211_tx_query_agg_cap(ieee, txb->fragments[0], tcb_desc); in ieee80211_xmit() 813 ieee80211_query_protectionmode(ieee, tcb_desc, txb->fragments[0]); in ieee80211_xmit() 814 ieee80211_query_seqnum(ieee, txb->fragments[0], header.addr1); in ieee80211_xmit()
|
/linux-6.3-rc2/drivers/staging/rtl8192e/ |
A D | rtllib_tx.c | 207 txb = kzalloc(struct_size(txb, fragments, nr_frags), gfp_mask); in rtllib_alloc_txb() 215 txb->fragments[i] = dev_alloc_skb(txb_size); in rtllib_alloc_txb() 216 if (unlikely(!txb->fragments[i])) in rtllib_alloc_txb() 218 memset(txb->fragments[i]->cb, 0, sizeof(txb->fragments[i]->cb)); in rtllib_alloc_txb() 225 dev_kfree_skb_any(txb->fragments[i]); in rtllib_alloc_txb() 606 skb_put_data(txb->fragments[0], skb->data, skb->len); in rtllib_xmit_inter() 776 skb_frag = txb->fragments[i]; in rtllib_xmit_inter() 874 skb_put_data(txb->fragments[0], skb->data, skb->len); in rtllib_xmit_inter() 880 (txb->fragments[0]->cb + MAX_DEV_ADDR_SIZE); in rtllib_xmit_inter() 925 rtllib_tx_query_agg_cap(ieee, txb->fragments[0], in rtllib_xmit_inter() [all …]
|
/linux-6.3-rc2/tools/perf/Documentation/ |
A D | perf-test.txt | 11 'perf test [<options>] [{list <test-name-fragment>|[<test-name-fragments>|<test-numbers>]}]' 21 To run just specific tests, inform test name fragments or the numbers obtained
|
/linux-6.3-rc2/drivers/staging/vc04_services/interface/vchiq_arm/ |
A D | vchiq_arm.c | 377 char *fragments; in create_pagelist() local 387 fragments = g_free_fragments; in create_pagelist() 388 WARN_ON(!fragments); in create_pagelist() 392 (fragments - g_fragments_base) / g_fragments_size; in create_pagelist() 419 char *fragments = g_fragments_base + in free_pagelist() local 435 fragments, in free_pagelist() 443 fragments + g_cache_line_size, in free_pagelist() 447 *(char **)fragments = g_free_fragments; in free_pagelist() 448 g_free_fragments = fragments; in free_pagelist()
|
/linux-6.3-rc2/Documentation/ABI/testing/ |
A D | sysfs-fs-erofs | 8 dedupe, fragments.
|
A D | dev-kmsg | 118 By default, kernel tries to avoid fragments by concatenating 119 when it can and fragments are rare; however, when extended 121 disabled and /dev/kmsg output will contain more fragments. If
|
/linux-6.3-rc2/fs/erofs/ |
A D | sysfs.c | 79 EROFS_ATTR_FEATURE(fragments); 91 ATTR_LIST(fragments),
|
/linux-6.3-rc2/include/uapi/sound/ |
A D | compress_offload.h | 25 __u32 fragments; member
|
/linux-6.3-rc2/sound/core/ |
A D | compress_offload.c | 539 buffer_size = params->buffer.fragment_size * params->buffer.fragments; in snd_compr_allocate_buffer() 562 stream->runtime->fragments = params->buffer.fragments; in snd_compr_allocate_buffer() 572 params->buffer.fragments > U32_MAX / params->buffer.fragment_size || in snd_compress_check_input() 573 params->buffer.fragments == 0) in snd_compress_check_input()
|
/linux-6.3-rc2/Documentation/scsi/ |
A D | sym53c500_cs.rst | 17 the code fragments I shamelessly adapted for this work. Thanks also to
|
/linux-6.3-rc2/Documentation/networking/ |
A D | udplite.rst | 194 several tiny fragments, consider the following example:: 210 the last packet before releasing the fragments to the IP module. 218 of 3356 bytes will be split into the following fragments:: 224 The first two fragments have to be checksummed in full, of the last
|
A D | ppp_generic.rst | 18 ordering and combining received fragments 180 or more fragments and puts a multilink header on each fragment. It 181 decides how many fragments to use based on the length of the packet 184 fragment if it doesn't have any fragments currently queued up for it 187 scheme has the effect that more fragments are given to higher- 191 transmitted as single fragments, thus reducing the overhead of 358 numbers on received multilink fragments 453 fragments is disabled. This ioctl is only available if the
|
/linux-6.3-rc2/include/sound/ |
A D | compress_driver.h | 47 u32 fragments; member
|
/linux-6.3-rc2/net/batman-adv/ |
A D | fragmentation.c | 67 chain = &orig_node->fragments[i]; in batadv_frag_purge_orig() 171 chain = &orig_node->fragments[bucket]; in batadv_frag_insert_packet()
|
/linux-6.3-rc2/Documentation/filesystems/ |
A D | squashfs.rst | 39 Tail-end packing (fragments) yes no 80 | & fragments | 255 (i.e. inode or directory) or fragment access. Because metadata and fragments 257 particular piece of metadata or fragment will retrieve other metadata/fragments
|
/linux-6.3-rc2/Documentation/sound/designs/ |
A D | oss-emulation.rst | 138 app_name fragments fragment_size [options] 142 ``fragments`` specifies the number of fragments or zero if no specific 158 write also partial fragments (affects playback only)
|