| /kernel/linux/linux-5.10/fs/ntfs/ |
| D | lcnalloc.h | 38 * ntfs_cluster_free - free clusters on an ntfs volume 39 * @ni: ntfs inode whose runlist describes the clusters to free 40 * @start_vcn: vcn in the runlist of @ni at which to start freeing clusters 41 * @count: number of clusters to free or -1 for all clusters 44 * Free @count clusters starting at the cluster @start_vcn in the runlist 47 * If @count is -1, all clusters from @start_vcn to the end of the runlist are 48 * deallocated. Thus, to completely free all clusters in a runlist, use 71 * Return the number of deallocated clusters (not counting sparse ones) on 103 * ntfs_cluster_free_from_rl - free clusters from runlist 104 * @vol: mounted ntfs volume on which to free the clusters [all …]
|
| D | lcnalloc.c | 23 * ntfs_cluster_free_from_rl_nolock - free clusters from runlist 24 * @vol: mounted ntfs volume on which to free the clusters 25 * @rl: runlist describing the clusters to free 27 * Free all the clusters described by the runlist @rl on the volume @vol. In 28 * the case of an error being returned, at least some of the clusters were not 59 * ntfs_cluster_alloc - allocate clusters on an ntfs volume 60 * @vol: mounted ntfs volume on which to allocate the clusters 62 * @count: number of clusters to allocate 63 * @start_lcn: starting lcn at which to allocate the clusters (or -1 if none) 64 * @zone: zone from which to allocate the clusters [all …]
|
| /kernel/linux/linux-6.6/fs/ntfs/ |
| D | lcnalloc.h | 38 * ntfs_cluster_free - free clusters on an ntfs volume 39 * @ni: ntfs inode whose runlist describes the clusters to free 40 * @start_vcn: vcn in the runlist of @ni at which to start freeing clusters 41 * @count: number of clusters to free or -1 for all clusters 44 * Free @count clusters starting at the cluster @start_vcn in the runlist 47 * If @count is -1, all clusters from @start_vcn to the end of the runlist are 48 * deallocated. Thus, to completely free all clusters in a runlist, use 71 * Return the number of deallocated clusters (not counting sparse ones) on 103 * ntfs_cluster_free_from_rl - free clusters from runlist 104 * @vol: mounted ntfs volume on which to free the clusters [all …]
|
| D | lcnalloc.c | 23 * ntfs_cluster_free_from_rl_nolock - free clusters from runlist 24 * @vol: mounted ntfs volume on which to free the clusters 25 * @rl: runlist describing the clusters to free 27 * Free all the clusters described by the runlist @rl on the volume @vol. In 28 * the case of an error being returned, at least some of the clusters were not 59 * ntfs_cluster_alloc - allocate clusters on an ntfs volume 60 * @vol: mounted ntfs volume on which to allocate the clusters 62 * @count: number of clusters to allocate 63 * @start_lcn: starting lcn at which to allocate the clusters (or -1 if none) 64 * @zone: zone from which to allocate the clusters [all …]
|
| /kernel/linux/linux-6.6/fs/ocfs2/ |
| D | ocfs2.h | 473 * How many clusters in our truncate log. 758 u32 clusters) in ocfs2_clusters_to_blocks() argument 763 return (u64)clusters << c_to_b_bits; in ocfs2_clusters_to_blocks() 789 unsigned int clusters; in ocfs2_clusters_for_bytes() local 792 /* OCFS2 just cannot have enough clusters to overflow this */ in ocfs2_clusters_for_bytes() 793 clusters = (unsigned int)(bytes >> cl_bits); in ocfs2_clusters_for_bytes() 795 return clusters; in ocfs2_clusters_for_bytes() 802 unsigned int clusters; in ocfs2_bytes_to_clusters() local 804 clusters = (unsigned int)(bytes >> cl_bits); in ocfs2_bytes_to_clusters() 805 return clusters; in ocfs2_bytes_to_clusters() [all …]
|
| D | resize.c | 170 static int update_backups(struct inode * inode, u32 clusters, char *data) in update_backups() argument 183 if (cluster >= clusters) in update_backups() 213 u32 clusters = 0; in ocfs2_update_super_and_backups() local 231 clusters = le32_to_cpu(super_di->i_clusters); in ocfs2_update_super_and_backups() 240 ret = update_backups(inode, clusters, super_bh->b_data); in ocfs2_update_super_and_backups() 253 * Extend the filesystem to the new number of clusters specified. This entry 389 else if (le16_to_cpu(gd->bg_bits) != input->clusters * cl_bpc) in ocfs2_check_new_group() 391 "input has %u clusters set\n", in ocfs2_check_new_group() 393 le16_to_cpu(gd->bg_bits), input->clusters); in ocfs2_check_new_group() 426 else if (total_clusters + input->clusters < total_clusters) in ocfs2_verify_group_and_input() [all …]
|
| D | ocfs2_ioctl.h | 42 __u32 clusters; /* Total number of clusters in this group */ member 43 __u32 frees; /* Total free clusters in this group */ 150 __u32 ffs_min; /* Minimum free chunksize in clusters */ 155 __u32 iff_chunksize; /* chunksize in clusters(in) */ 210 claim new clusters
|
| D | ocfs2_trace.h | 505 unsigned int e_cpos, unsigned int clusters), 506 TP_ARGS(owner, cpos, len, index, e_cpos, clusters), 513 __field(unsigned int, clusters) 521 __entry->clusters = clusters; 525 __entry->e_cpos, __entry->clusters) 530 unsigned int clusters, unsigned int depth), 531 TP_ARGS(ino, new_cpos, clusters, depth), 535 __field(unsigned int, clusters) 541 __entry->clusters = clusters; 546 __entry->clusters, __entry->depth) [all …]
|
| D | reservations.h | 109 * @clen: length (in clusters) of proposed allocation 129 * @cstart: start of allocation in clusters 130 * @clen: end of allocation in clusters.
|
| D | ocfs2_fs.h | 40 * Blocks cannot be bigger than clusters, so the maximum blocksize is the 249 #define OCFS2_COMPRBLK_FL FS_COMPRBLK_FL /* One or more compressed clusters */ 421 * It describes a range of clusters on disk. 427 /*00*/ __le32 e_cpos; /* Offset into the file, in clusters */ 429 __le32 e_int_clusters; /* Clusters covered by all children */ 431 __le16 e_leaf_clusters; /* Clusters covered by this 449 __le32 t_clusters; /* Number of total clusters covered */ 480 /*00*/ __le16 cl_cpg; /* Clusters per Block Group */ 710 __le32 i_used; /* Bits (ie, clusters) used */ 711 __le32 i_total; /* Total bits (clusters) [all …]
|
| /kernel/linux/linux-5.10/fs/ocfs2/ |
| D | ocfs2.h | 433 * How many clusters in our truncate log. 719 u32 clusters) in ocfs2_clusters_to_blocks() argument 724 return (u64)clusters << c_to_b_bits; in ocfs2_clusters_to_blocks() 750 unsigned int clusters; in ocfs2_clusters_for_bytes() local 753 /* OCFS2 just cannot have enough clusters to overflow this */ in ocfs2_clusters_for_bytes() 754 clusters = (unsigned int)(bytes >> cl_bits); in ocfs2_clusters_for_bytes() 756 return clusters; in ocfs2_clusters_for_bytes() 763 unsigned int clusters; in ocfs2_bytes_to_clusters() local 765 clusters = (unsigned int)(bytes >> cl_bits); in ocfs2_bytes_to_clusters() 766 return clusters; in ocfs2_bytes_to_clusters() [all …]
|
| D | resize.c | 172 static int update_backups(struct inode * inode, u32 clusters, char *data) in update_backups() argument 185 if (cluster >= clusters) in update_backups() 215 u32 clusters = 0; in ocfs2_update_super_and_backups() local 233 clusters = le32_to_cpu(super_di->i_clusters); in ocfs2_update_super_and_backups() 242 ret = update_backups(inode, clusters, super_bh->b_data); in ocfs2_update_super_and_backups() 255 * Extend the filesystem to the new number of clusters specified. This entry 391 else if (le16_to_cpu(gd->bg_bits) != input->clusters * cl_bpc) in ocfs2_check_new_group() 393 "input has %u clusters set\n", in ocfs2_check_new_group() 395 le16_to_cpu(gd->bg_bits), input->clusters); in ocfs2_check_new_group() 428 else if (total_clusters + input->clusters < total_clusters) in ocfs2_verify_group_and_input() [all …]
|
| D | ocfs2_trace.h | 505 unsigned int e_cpos, unsigned int clusters), 506 TP_ARGS(owner, cpos, len, index, e_cpos, clusters), 513 __field(unsigned int, clusters) 521 __entry->clusters = clusters; 525 __entry->e_cpos, __entry->clusters) 530 unsigned int clusters, unsigned int depth), 531 TP_ARGS(ino, new_cpos, clusters, depth), 535 __field(unsigned int, clusters) 541 __entry->clusters = clusters; 546 __entry->clusters, __entry->depth) [all …]
|
| D | ocfs2_ioctl.h | 52 __u32 clusters; /* Total number of clusters in this group */ member 53 __u32 frees; /* Total free clusters in this group */ 160 __u32 ffs_min; /* Minimum free chunksize in clusters */ 165 __u32 iff_chunksize; /* chunksize in clusters(in) */ 220 claim new clusters
|
| D | reservations.h | 116 * @clen: length (in clusters) of proposed allocation 136 * @cstart: start of allocation in clusters 137 * @clen: end of allocation in clusters.
|
| D | ocfs2_fs.h | 42 * Blocks cannot be bigger than clusters, so the maximum blocksize is the 251 #define OCFS2_COMPRBLK_FL FS_COMPRBLK_FL /* One or more compressed clusters */ 423 * It describes a range of clusters on disk. 429 /*00*/ __le32 e_cpos; /* Offset into the file, in clusters */ 431 __le32 e_int_clusters; /* Clusters covered by all children */ 433 __le16 e_leaf_clusters; /* Clusters covered by this 451 __le32 t_clusters; /* Number of total clusters covered */ 482 /*00*/ __le16 cl_cpg; /* Clusters per Block Group */ 712 __le32 i_used; /* Bits (ie, clusters) used */ 713 __le32 i_total; /* Total bits (clusters) [all …]
|
| /kernel/linux/linux-5.10/arch/arm/common/ |
| D | mcpm_entry.c | 36 mcpm_sync.clusters[cluster].cpus[cpu].cpu = CPU_GOING_DOWN; in __mcpm_cpu_going_down() 37 sync_cache_w(&mcpm_sync.clusters[cluster].cpus[cpu].cpu); in __mcpm_cpu_going_down() 50 mcpm_sync.clusters[cluster].cpus[cpu].cpu = CPU_DOWN; in __mcpm_cpu_down() 51 sync_cache_w(&mcpm_sync.clusters[cluster].cpus[cpu].cpu); in __mcpm_cpu_down() 66 mcpm_sync.clusters[cluster].cluster = state; in __mcpm_outbound_leave_critical() 67 sync_cache_w(&mcpm_sync.clusters[cluster].cluster); in __mcpm_outbound_leave_critical() 85 struct mcpm_sync_struct *c = &mcpm_sync.clusters[cluster]; in __mcpm_outbound_enter_critical() 137 sync_cache_r(&mcpm_sync.clusters[cluster].cluster); in __mcpm_cluster_state() 138 return mcpm_sync.clusters[cluster].cluster; in __mcpm_cluster_state() 436 mcpm_sync.clusters[i].cluster = CLUSTER_DOWN; in mcpm_sync_init() [all …]
|
| /kernel/linux/linux-6.6/arch/arm/common/ |
| D | mcpm_entry.c | 36 mcpm_sync.clusters[cluster].cpus[cpu].cpu = CPU_GOING_DOWN; in __mcpm_cpu_going_down() 37 sync_cache_w(&mcpm_sync.clusters[cluster].cpus[cpu].cpu); in __mcpm_cpu_going_down() 50 mcpm_sync.clusters[cluster].cpus[cpu].cpu = CPU_DOWN; in __mcpm_cpu_down() 51 sync_cache_w(&mcpm_sync.clusters[cluster].cpus[cpu].cpu); in __mcpm_cpu_down() 66 mcpm_sync.clusters[cluster].cluster = state; in __mcpm_outbound_leave_critical() 67 sync_cache_w(&mcpm_sync.clusters[cluster].cluster); in __mcpm_outbound_leave_critical() 85 struct mcpm_sync_struct *c = &mcpm_sync.clusters[cluster]; in __mcpm_outbound_enter_critical() 137 sync_cache_r(&mcpm_sync.clusters[cluster].cluster); in __mcpm_cluster_state() 138 return mcpm_sync.clusters[cluster].cluster; in __mcpm_cluster_state() 436 mcpm_sync.clusters[i].cluster = CLUSTER_DOWN; in mcpm_sync_init() [all …]
|
| /kernel/linux/linux-6.6/Documentation/devicetree/bindings/sound/ |
| D | apple,mca.yaml | 11 composed of a number of identical clusters which can operate independently 12 or in an interlinked fashion. Up to 6 clusters have been seen on an MCA. 31 - description: Register region of the MCA clusters proper 89 Clusters' input reference clock. 99 domains of individual clusters for their operation.
|
| /kernel/linux/linux-5.10/drivers/cpufreq/ |
| D | tegra186-cpufreq.c | 53 struct tegra186_cpufreq_cluster *clusters; member 62 struct tegra186_cpufreq_cluster *cluster = &data->clusters[i]; in tegra186_cpufreq_init() 113 struct tegra186_cpufreq_cluster *cluster = &data->clusters[i]; in tegra186_cpufreq_get() 237 data->clusters = devm_kcalloc(&pdev->dev, ARRAY_SIZE(tegra186_clusters), in tegra186_cpufreq_probe() 238 sizeof(*data->clusters), GFP_KERNEL); in tegra186_cpufreq_probe() 239 if (!data->clusters) in tegra186_cpufreq_probe() 255 struct tegra186_cpufreq_cluster *cluster = &data->clusters[i]; in tegra186_cpufreq_probe()
|
| /kernel/linux/linux-6.6/fs/ntfs3/ |
| D | Kconfig | 18 bool "64 bits per NTFS clusters" 21 Windows implementation of ntfs.sys uses 32 bits per clusters. 22 If activated 64 bits per clusters you will be able to use 4k cluster
|
| /kernel/linux/linux-6.6/drivers/cpufreq/ |
| D | tegra186-cpufreq.c | 69 struct tegra186_cpufreq_cluster clusters[]; member 77 policy->freq_table = data->clusters[cluster].table; in tegra186_cpufreq_init() 112 cluster = &data->clusters[cluster_id]; in tegra186_cpufreq_get() 225 struct_size(data, clusters, TEGRA186_NUM_CLUSTERS), in tegra186_cpufreq_probe() 243 struct tegra186_cpufreq_cluster *cluster = &data->clusters[i]; in tegra186_cpufreq_probe()
|
| /kernel/linux/linux-6.6/sound/soc/apple/ |
| D | mca.c | 7 // The MCA peripheral is made up of a number of identical units called clusters. 11 // The clusters can operate independently, or can be combined together in a 14 // ports. The I2S ports can be routed to any of the clusters (irrespective 160 /* Mutex for accessing port_driver of foreign clusters */ 164 struct mca_cluster clusters[]; member 188 return &mca->clusters[cluster_no]; in mca_dai_to_cluster() 312 be_cl = &mca->clusters[i]; in mca_fe_clocks_in_use() 339 fe_cl = &mca->clusters[cl->port_driver]; in mca_be_prepare() 373 fe_cl = &mca->clusters[cl->port_driver]; in mca_be_hw_free() 1014 struct mca_cluster *cl = &mca->clusters[i]; in apple_mca_release() [all …]
|
| /kernel/linux/linux-5.10/Documentation/filesystems/ext4/ |
| D | bigalloc.rst | 27 on, the block bitmaps track clusters, not individual blocks. This means 31 units of clusters instead of blocks” to the extent tree, though it is
|
| /kernel/linux/linux-6.6/Documentation/filesystems/ext4/ |
| D | bigalloc.rst | 27 on, the block bitmaps track clusters, not individual blocks. This means 31 units of clusters instead of blocks” to the extent tree, though it is
|