ocfs2: Track local alloc bits internally
Do this instead of tracking absolute local alloc size. This avoids needless re-calculatiion of bits from bytes in localalloc.c. Additionally, the value is now in a more natural unit for internal file system bitmap work. Signed-off-by: Mark Fasheh <mfasheh@suse.com>
This commit is contained in:
parent
53da4939f3
commit
ebcee4b5c9
3 changed files with 26 additions and 26 deletions
|
@ -47,8 +47,6 @@
|
||||||
|
|
||||||
#define OCFS2_LOCAL_ALLOC(dinode) (&((dinode)->id2.i_lab))
|
#define OCFS2_LOCAL_ALLOC(dinode) (&((dinode)->id2.i_lab))
|
||||||
|
|
||||||
static inline int ocfs2_local_alloc_window_bits(struct ocfs2_super *osb);
|
|
||||||
|
|
||||||
static u32 ocfs2_local_alloc_count_bits(struct ocfs2_dinode *alloc);
|
static u32 ocfs2_local_alloc_count_bits(struct ocfs2_dinode *alloc);
|
||||||
|
|
||||||
static int ocfs2_local_alloc_find_clear_bits(struct ocfs2_super *osb,
|
static int ocfs2_local_alloc_find_clear_bits(struct ocfs2_super *osb,
|
||||||
|
@ -75,21 +73,13 @@ static int ocfs2_local_alloc_new_window(struct ocfs2_super *osb,
|
||||||
static int ocfs2_local_alloc_slide_window(struct ocfs2_super *osb,
|
static int ocfs2_local_alloc_slide_window(struct ocfs2_super *osb,
|
||||||
struct inode *local_alloc_inode);
|
struct inode *local_alloc_inode);
|
||||||
|
|
||||||
static inline int ocfs2_local_alloc_window_bits(struct ocfs2_super *osb)
|
|
||||||
{
|
|
||||||
BUG_ON(osb->s_clustersize_bits > 20);
|
|
||||||
|
|
||||||
/* Size local alloc windows by the megabyte */
|
|
||||||
return osb->local_alloc_size << (20 - osb->s_clustersize_bits);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Tell us whether a given allocation should use the local alloc
|
* Tell us whether a given allocation should use the local alloc
|
||||||
* file. Otherwise, it has to go to the main bitmap.
|
* file. Otherwise, it has to go to the main bitmap.
|
||||||
*/
|
*/
|
||||||
int ocfs2_alloc_should_use_local(struct ocfs2_super *osb, u64 bits)
|
int ocfs2_alloc_should_use_local(struct ocfs2_super *osb, u64 bits)
|
||||||
{
|
{
|
||||||
int la_bits = ocfs2_local_alloc_window_bits(osb);
|
int la_bits = osb->local_alloc_bits;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
if (osb->local_alloc_state != OCFS2_LA_ENABLED)
|
if (osb->local_alloc_state != OCFS2_LA_ENABLED)
|
||||||
|
@ -120,14 +110,16 @@ int ocfs2_load_local_alloc(struct ocfs2_super *osb)
|
||||||
|
|
||||||
mlog_entry_void();
|
mlog_entry_void();
|
||||||
|
|
||||||
if (osb->local_alloc_size == 0)
|
if (osb->local_alloc_bits == 0)
|
||||||
goto bail;
|
goto bail;
|
||||||
|
|
||||||
if (ocfs2_local_alloc_window_bits(osb) >= osb->bitmap_cpg) {
|
if (osb->local_alloc_bits >= osb->bitmap_cpg) {
|
||||||
mlog(ML_NOTICE, "Requested local alloc window %d is larger "
|
mlog(ML_NOTICE, "Requested local alloc window %d is larger "
|
||||||
"than max possible %u. Using defaults.\n",
|
"than max possible %u. Using defaults.\n",
|
||||||
ocfs2_local_alloc_window_bits(osb), (osb->bitmap_cpg - 1));
|
osb->local_alloc_bits, (osb->bitmap_cpg - 1));
|
||||||
osb->local_alloc_size = OCFS2_DEFAULT_LOCAL_ALLOC_SIZE;
|
osb->local_alloc_bits =
|
||||||
|
ocfs2_megabytes_to_clusters(osb->sb,
|
||||||
|
OCFS2_DEFAULT_LOCAL_ALLOC_SIZE);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* read the alloc off disk */
|
/* read the alloc off disk */
|
||||||
|
@ -190,8 +182,7 @@ bail:
|
||||||
if (inode)
|
if (inode)
|
||||||
iput(inode);
|
iput(inode);
|
||||||
|
|
||||||
mlog(0, "Local alloc window bits = %d\n",
|
mlog(0, "Local alloc window bits = %d\n", osb->local_alloc_bits);
|
||||||
ocfs2_local_alloc_window_bits(osb));
|
|
||||||
|
|
||||||
mlog_exit(status);
|
mlog_exit(status);
|
||||||
return status;
|
return status;
|
||||||
|
@ -490,7 +481,7 @@ int ocfs2_reserve_local_alloc_bits(struct ocfs2_super *osb,
|
||||||
goto bail;
|
goto bail;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (bits_wanted > ocfs2_local_alloc_window_bits(osb)) {
|
if (bits_wanted > osb->local_alloc_bits) {
|
||||||
mlog(0, "Asking for more than my max window size!\n");
|
mlog(0, "Asking for more than my max window size!\n");
|
||||||
status = -ENOSPC;
|
status = -ENOSPC;
|
||||||
goto bail;
|
goto bail;
|
||||||
|
@ -803,7 +794,7 @@ static int ocfs2_local_alloc_reserve_for_window(struct ocfs2_super *osb,
|
||||||
goto bail;
|
goto bail;
|
||||||
}
|
}
|
||||||
|
|
||||||
(*ac)->ac_bits_wanted = ocfs2_local_alloc_window_bits(osb);
|
(*ac)->ac_bits_wanted = osb->local_alloc_bits;
|
||||||
|
|
||||||
status = ocfs2_reserve_cluster_bitmap_bits(osb, *ac);
|
status = ocfs2_reserve_cluster_bitmap_bits(osb, *ac);
|
||||||
if (status < 0) {
|
if (status < 0) {
|
||||||
|
@ -849,7 +840,7 @@ static int ocfs2_local_alloc_new_window(struct ocfs2_super *osb,
|
||||||
"one\n");
|
"one\n");
|
||||||
|
|
||||||
mlog(0, "Allocating %u clusters for a new window.\n",
|
mlog(0, "Allocating %u clusters for a new window.\n",
|
||||||
ocfs2_local_alloc_window_bits(osb));
|
osb->local_alloc_bits);
|
||||||
|
|
||||||
/* Instruct the allocation code to try the most recently used
|
/* Instruct the allocation code to try the most recently used
|
||||||
* cluster group. We'll re-record the group used this pass
|
* cluster group. We'll re-record the group used this pass
|
||||||
|
@ -859,8 +850,7 @@ static int ocfs2_local_alloc_new_window(struct ocfs2_super *osb,
|
||||||
/* we used the generic suballoc reserve function, but we set
|
/* we used the generic suballoc reserve function, but we set
|
||||||
* everything up nicely, so there's no reason why we can't use
|
* everything up nicely, so there's no reason why we can't use
|
||||||
* the more specific cluster api to claim bits. */
|
* the more specific cluster api to claim bits. */
|
||||||
status = ocfs2_claim_clusters(osb, handle, ac,
|
status = ocfs2_claim_clusters(osb, handle, ac, osb->local_alloc_bits,
|
||||||
ocfs2_local_alloc_window_bits(osb),
|
|
||||||
&cluster_off, &cluster_count);
|
&cluster_off, &cluster_count);
|
||||||
if (status < 0) {
|
if (status < 0) {
|
||||||
if (status != -ENOSPC)
|
if (status != -ENOSPC)
|
||||||
|
|
|
@ -252,7 +252,7 @@ struct ocfs2_super
|
||||||
struct ocfs2_journal *journal;
|
struct ocfs2_journal *journal;
|
||||||
unsigned long osb_commit_interval;
|
unsigned long osb_commit_interval;
|
||||||
|
|
||||||
int local_alloc_size;
|
unsigned int local_alloc_bits;
|
||||||
enum ocfs2_local_alloc_state local_alloc_state;
|
enum ocfs2_local_alloc_state local_alloc_state;
|
||||||
struct buffer_head *local_alloc_bh;
|
struct buffer_head *local_alloc_bh;
|
||||||
u64 la_last_gd;
|
u64 la_last_gd;
|
||||||
|
@ -554,6 +554,14 @@ static inline unsigned int ocfs2_pages_per_cluster(struct super_block *sb)
|
||||||
return pages_per_cluster;
|
return pages_per_cluster;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline unsigned int ocfs2_megabytes_to_clusters(struct super_block *sb,
|
||||||
|
unsigned int megs)
|
||||||
|
{
|
||||||
|
BUILD_BUG_ON(OCFS2_MAX_CLUSTERSIZE > 1048576);
|
||||||
|
|
||||||
|
return megs << (20 - OCFS2_SB(sb)->s_clustersize_bits);
|
||||||
|
}
|
||||||
|
|
||||||
static inline void ocfs2_init_inode_steal_slot(struct ocfs2_super *osb)
|
static inline void ocfs2_init_inode_steal_slot(struct ocfs2_super *osb)
|
||||||
{
|
{
|
||||||
spin_lock(&osb->osb_lock);
|
spin_lock(&osb->osb_lock);
|
||||||
|
|
|
@ -637,7 +637,7 @@ static int ocfs2_fill_super(struct super_block *sb, void *data, int silent)
|
||||||
osb->s_atime_quantum = parsed_options.atime_quantum;
|
osb->s_atime_quantum = parsed_options.atime_quantum;
|
||||||
osb->preferred_slot = parsed_options.slot;
|
osb->preferred_slot = parsed_options.slot;
|
||||||
osb->osb_commit_interval = parsed_options.commit_interval;
|
osb->osb_commit_interval = parsed_options.commit_interval;
|
||||||
osb->local_alloc_size = parsed_options.localalloc_opt;
|
osb->local_alloc_bits = ocfs2_megabytes_to_clusters(sb, parsed_options.localalloc_opt);
|
||||||
|
|
||||||
status = ocfs2_verify_userspace_stack(osb, &parsed_options);
|
status = ocfs2_verify_userspace_stack(osb, &parsed_options);
|
||||||
if (status)
|
if (status)
|
||||||
|
@ -938,6 +938,7 @@ static int ocfs2_show_options(struct seq_file *s, struct vfsmount *mnt)
|
||||||
{
|
{
|
||||||
struct ocfs2_super *osb = OCFS2_SB(mnt->mnt_sb);
|
struct ocfs2_super *osb = OCFS2_SB(mnt->mnt_sb);
|
||||||
unsigned long opts = osb->s_mount_opt;
|
unsigned long opts = osb->s_mount_opt;
|
||||||
|
unsigned int local_alloc_megs;
|
||||||
|
|
||||||
if (opts & OCFS2_MOUNT_HB_LOCAL)
|
if (opts & OCFS2_MOUNT_HB_LOCAL)
|
||||||
seq_printf(s, ",_netdev,heartbeat=local");
|
seq_printf(s, ",_netdev,heartbeat=local");
|
||||||
|
@ -970,8 +971,9 @@ static int ocfs2_show_options(struct seq_file *s, struct vfsmount *mnt)
|
||||||
seq_printf(s, ",commit=%u",
|
seq_printf(s, ",commit=%u",
|
||||||
(unsigned) (osb->osb_commit_interval / HZ));
|
(unsigned) (osb->osb_commit_interval / HZ));
|
||||||
|
|
||||||
if (osb->local_alloc_size != OCFS2_DEFAULT_LOCAL_ALLOC_SIZE)
|
local_alloc_megs = osb->local_alloc_bits >> (20 - osb->s_clustersize_bits);
|
||||||
seq_printf(s, ",localalloc=%d", osb->local_alloc_size);
|
if (local_alloc_megs != OCFS2_DEFAULT_LOCAL_ALLOC_SIZE)
|
||||||
|
seq_printf(s, ",localalloc=%d", local_alloc_megs);
|
||||||
|
|
||||||
if (opts & OCFS2_MOUNT_LOCALFLOCKS)
|
if (opts & OCFS2_MOUNT_LOCALFLOCKS)
|
||||||
seq_printf(s, ",localflocks,");
|
seq_printf(s, ",localflocks,");
|
||||||
|
|
Loading…
Add table
Reference in a new issue