Home
last modified time | relevance | path

Searched refs:orphan (Results 1 – 25 of 37) sorted by relevance

12

/Linux-v5.15/fs/ubifs/
Dorphan.c48 struct ubifs_orphan *orphan, *o; in orphan_add() local
51 orphan = kzalloc(sizeof(struct ubifs_orphan), GFP_NOFS); in orphan_add()
52 if (!orphan) in orphan_add()
54 orphan->inum = inum; in orphan_add()
55 orphan->new = 1; in orphan_add()
56 INIT_LIST_HEAD(&orphan->child_list); in orphan_add()
61 kfree(orphan); in orphan_add()
75 kfree(orphan); in orphan_add()
81 rb_link_node(&orphan->rb, parent, p); in orphan_add()
82 rb_insert_color(&orphan->rb, &c->orph_tree); in orphan_add()
[all …]
DMakefile5 ubifs-y += tnc.o master.o scan.o replay.o log.o commit.o gc.o orphan.o
/Linux-v5.15/Documentation/filesystems/ext4/
Dorphan.rst11 track the inode as orphan so that in case of crash extra blocks allocated to
14 Traditionally ext4 tracks orphan inodes in a form of single linked list where
15 superblock contains the inode number of the last orphan inode (s\_last\_orphan
19 in heavy creation of orphan inodes. When orphan file feature
36 an orphan inode.
40 - Magic value stored in orphan block tail (0x0b10ca04)
44 - Checksum of the orphan block.
46 When a filesystem with orphan file feature is writeably mounted, we set
48 be valid orphan entries. In case we see this feature when mounting the
49 filesystem, we read the whole orphan file and process all orphan inodes found
[all …]
Dglobals.rst14 .. include:: orphan.rst
Dspecial_inodes.rst55 - Inode number of file tracking orphan inodes.
Dinodes.rst502 that are not linked from any directory but are still open (orphan inodes) have
503 the dtime field overloaded for use with the orphan list. The superblock field
504 ``s_last_orphan`` points to the first inode in the orphan list; dtime is then
/Linux-v5.15/drivers/soc/qcom/
Dsmem_state.c27 bool orphan; member
49 if (state->orphan) in qcom_smem_state_update_bits()
226 state->orphan = true; in qcom_smem_state_unregister()
/Linux-v5.15/Documentation/dev-tools/
Dkmemleak.rst7 with the difference that the orphan objects are not freed but only
37 Note that the orphan objects are listed in the order they were allocated
39 objects to be reported as orphan.
90 An allocated block of memory is considered orphan if no pointer to its
100 considered orphan)
108 4. the remaining white objects are considered orphan and reported via
183 The false negatives are real memory leaks (orphan objects) but not
191 (orphan). For objects known not to be leaks, kmemleak provides the
/Linux-v5.15/Documentation/translations/zh_CN/
Ddisclaimer-zh_CN.rst1 :orphan:
/Linux-v5.15/Documentation/translations/zh_TW/
Ddisclaimer-zh_TW.rst1 :orphan:
/Linux-v5.15/Documentation/translations/it_IT/
Ddisclaimer-ita.rst1 :orphan:
/Linux-v5.15/fs/ext4/
DMakefile13 xattr_user.o fast_commit.o orphan.o
/Linux-v5.15/drivers/clk/
Dclk.c73 bool orphan; member
1735 core->orphan = is_orphan; in clk_core_update_orphan_status()
1743 bool was_orphan = core->orphan; in clk_reparent()
1748 bool becomes_orphan = new_parent->orphan; in clk_reparent()
3373 struct clk_core *orphan; in clk_core_reparent_orphans_nolock() local
3380 hlist_for_each_entry_safe(orphan, tmp2, &clk_orphan_list, child_node) { in clk_core_reparent_orphans_nolock()
3381 struct clk_core *parent = __clk_init_parent(orphan); in clk_core_reparent_orphans_nolock()
3391 __clk_set_parent_before(orphan, parent); in clk_core_reparent_orphans_nolock()
3392 __clk_set_parent_after(orphan, parent, NULL); in clk_core_reparent_orphans_nolock()
3393 __clk_recalc_accuracies(orphan); in clk_core_reparent_orphans_nolock()
[all …]
/Linux-v5.15/include/scsi/
Dsg.h181 char orphan; /* 0 -> normal request, 1 -> from interrupted SG_IO */ member
/Linux-v5.15/drivers/hwtracing/coresight/
Dcoresight-core.c1331 if (!i_csdev->orphan) in coresight_orphan_match()
1358 i_csdev->orphan = still_orphan; in coresight_orphan_match()
1391 csdev->orphan = true; in coresight_fixup_device_conns()
1422 iterator->orphan = true; in coresight_remove_match()
1608 csdev->orphan = false; in coresight_register()
/Linux-v5.15/fs/btrfs/
DMakefile27 extent_io.o volumes.o async-thread.o ioctl.o locking.o orphan.o \
/Linux-v5.15/arch/arm/boot/compressed/
DMakefile132 LDFLAGS_vmlinux += --orphan-handling=warn
/Linux-v5.15/Documentation/gpu/
Dmsm-crash-dump.rst1 :orphan:
/Linux-v5.15/fs/overlayfs/
Dnamei.c579 goto orphan; in ovl_verify_index()
597 goto orphan; in ovl_verify_index()
610 orphan: in ovl_verify_index()
/Linux-v5.15/Documentation/networking/mac80211_hwsim/
Dmac80211_hwsim.rst1 :orphan:
/Linux-v5.15/arch/x86/boot/compressed/
DMakefile67 LDFLAGS_vmlinux += --orphan-handling=warn
/Linux-v5.15/Documentation/networking/
Dsnmp_counter.rst496 becomes an orphan socket, kernel waits for the reply of the other side,
498 enough memory to keep the orphan socket, kernel would send an RST to
508 2. the orphan socket count is higher than net.ipv4.tcp_max_orphans
1279 Below is an example which let the orphan socket count be higher than
1365 gracefully, these connections became orphan sockets. As the iptables
1368 stage, so they will keep as orphan sockets until timeout. We have echo
1370 only keep 10 orphan sockets, for all other orphan sockets, the client
1372 the 'ss -s' command shows the system has 10 orphan sockets, and the
1375 An additional explanation about orphan socket count: You could find the
1376 exactly orphan socket count by the 'ss -s' command, but when kernel
[all …]
/Linux-v5.15/drivers/scsi/
Dsg.c126 char orphan; /* 1 -> drop on sight, 0 -> normal */ member
884 rinfo[val].orphan = srp->orphan; in sg_fill_request_table()
895 char orphan; member
953 srp->orphan = 1; in sg_ioctl_common()
1395 if (unlikely(srp->orphan)) { in sg_rq_end_io()
/Linux-v5.15/include/linux/
Dcoresight.h236 bool orphan; member
/Linux-v5.15/fs/f2fs/
Dcheckpoint.c768 struct ino_entry *orphan = NULL; in write_orphan_inodes() local
781 list_for_each_entry(orphan, head, list) { in write_orphan_inodes()
789 orphan_blk->ino[nentries++] = cpu_to_le32(orphan->ino); in write_orphan_inodes()

12