/kernel/linux/linux-5.10/fs/ubifs/ |
D | orphan.c | 48 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 …]
|
D | Makefile | 5 ubifs-y += tnc.o master.o scan.o replay.o log.o commit.o gc.o orphan.o
|
/kernel/linux/linux-5.10/drivers/soc/qcom/ |
D | smem_state.c | 27 bool orphan; member 49 if (state->orphan) in qcom_smem_state_update_bits() 190 state->orphan = true; in qcom_smem_state_unregister()
|
/kernel/linux/linux-5.10/Documentation/dev-tools/ |
D | kmemleak.rst | 7 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
|
/kernel/linux/linux-5.10/Documentation/translations/zh_CN/ |
D | disclaimer-zh_CN.rst | 1 :orphan:
|
/kernel/linux/linux-5.10/Documentation/translations/it_IT/ |
D | disclaimer-ita.rst | 1 :orphan:
|
/kernel/linux/linux-5.10/include/scsi/ |
D | sg.h | 148 char orphan; /* 0 -> normal request, 1 -> from interruped SG_IO */ member
|
/kernel/linux/linux-5.10/drivers/clk/ |
D | clk.c | 73 bool orphan; member 1714 core->orphan = is_orphan; in clk_core_update_orphan_status() 1722 bool was_orphan = core->orphan; in clk_reparent() 1727 bool becomes_orphan = new_parent->orphan; in clk_reparent() 3365 struct clk_core *orphan; in clk_core_reparent_orphans_nolock() local 3372 hlist_for_each_entry_safe(orphan, tmp2, &clk_orphan_list, child_node) { in clk_core_reparent_orphans_nolock() 3373 struct clk_core *parent = __clk_init_parent(orphan); in clk_core_reparent_orphans_nolock() 3383 __clk_set_parent_before(orphan, parent); in clk_core_reparent_orphans_nolock() 3384 __clk_set_parent_after(orphan, parent, NULL); in clk_core_reparent_orphans_nolock() 3385 __clk_recalc_accuracies(orphan); in clk_core_reparent_orphans_nolock() [all …]
|
/kernel/linux/linux-5.10/fs/btrfs/ |
D | Makefile | 9 extent_io.o volumes.o async-thread.o ioctl.o locking.o orphan.o \
|
D | send.c | 2845 struct fs_path *orphan; in orphanize_inode() local 2847 orphan = fs_path_alloc(); in orphanize_inode() 2848 if (!orphan) in orphanize_inode() 2851 ret = gen_unique_name(sctx, ino, gen, orphan); in orphanize_inode() 2855 ret = send_rename(sctx, path, orphan); in orphanize_inode() 2858 fs_path_free(orphan); in orphanize_inode()
|
/kernel/linux/linux-5.10/drivers/hwtracing/coresight/ |
D | coresight-core.c | 1286 if (!i_csdev->orphan) in coresight_orphan_match() 1313 i_csdev->orphan = still_orphan; in coresight_orphan_match() 1346 csdev->orphan = true; in coresight_fixup_device_conns() 1377 iterator->orphan = true; in coresight_remove_match() 1519 csdev->orphan = false; in coresight_register()
|
/kernel/linux/linux-5.10/include/linux/ |
D | coresight.h | 200 bool orphan; member
|
/kernel/linux/linux-5.10/Documentation/gpu/ |
D | msm-crash-dump.rst | 1 :orphan:
|
/kernel/linux/linux-5.10/fs/overlayfs/ |
D | namei.c | 574 goto orphan; in ovl_verify_index() 592 goto orphan; in ovl_verify_index() 605 orphan: in ovl_verify_index()
|
/kernel/linux/linux-5.10/arch/arm/boot/compressed/ |
D | Makefile | 148 LDFLAGS_vmlinux += --orphan-handling=warn
|
/kernel/linux/linux-5.10/Documentation/networking/mac80211_hwsim/ |
D | mac80211_hwsim.rst | 1 :orphan:
|
/kernel/linux/linux-5.10/arch/x86/boot/compressed/ |
D | Makefile | 69 LDFLAGS_vmlinux += --orphan-handling=warn
|
/kernel/linux/linux-5.10/Documentation/networking/ |
D | snmp_counter.rst | 496 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 …]
|
/kernel/linux/linux-5.10/drivers/scsi/ |
D | sg.c | 126 char orphan; /* 1 -> drop on sight, 0 -> normal */ member 882 rinfo[val].orphan = srp->orphan; in sg_fill_request_table() 893 char orphan; member 951 srp->orphan = 1; in sg_ioctl_common() 1414 if (unlikely(srp->orphan)) { in sg_rq_end_io()
|
D | gdth.h | 360 u8 orphan; /* flag: drive fragment */ member
|
/kernel/linux/linux-5.10/Documentation/filesystems/ext4/ |
D | inodes.rst | 502 still open (orphan inodes), the dtime field is overloaded for use with 503 the orphan list. The superblock field ``s_last_orphan`` points to the 504 first inode in the orphan list; dtime is then the number of the next
|
/kernel/linux/linux-5.10/fs/f2fs/ |
D | checkpoint.c | 752 struct ino_entry *orphan = NULL; in write_orphan_inodes() local 765 list_for_each_entry(orphan, head, list) { in write_orphan_inodes() 773 orphan_blk->ino[nentries++] = cpu_to_le32(orphan->ino); in write_orphan_inodes()
|
/kernel/linux/linux-5.10/Documentation/filesystems/nfs/ |
D | exporting.rst | 1 :orphan:
|
/kernel/linux/linux-5.10/Documentation/filesystems/ |
D | xfs-self-describing-metadata.rst | 110 no owner can be found (i.e. it's an orphan block), and so without an owner field
|
/kernel/linux/linux-5.10/fs/ext4/ |
D | inode.c | 5309 int orphan = 0; in ext4_setattr() local 5432 orphan = 1; in ext4_setattr() 5507 if (orphan && inode->i_nlink) in ext4_setattr()
|