search for: cluster_count

Displaying 3 results from an estimated 3 matches for "cluster_count".

Did you mean: cluster_chunk
2005 Oct 10
1
'R CMD check' gets apparently confused by '%' (PR#8198)
Full_Name: Laurent Version: R-2.0.0-beta-from-a-week-ago OS: linux Submission from: (NULL) (202.156.6.77) When running 'R CMD check' for a package that contains the symbol '%' in the signature of a function (say the default parameter for a string argument is like "10% - 20%"), the 'codoc' part of the check throws a warning about mismatching doc and codoc. While
2010 Mar 12
1
[PATCH] ocfs2: Always try for maximum bits with new local alloc windows
...nicely, so there's no reason why we can't use * the more specific cluster api to claim bits. */ - status = ocfs2_claim_clusters(osb, handle, ac, osb->local_alloc_bits, + status = ocfs2_claim_clusters(osb, handle, ac, osb->local_alloc_default_bits, &cluster_off, &cluster_count); if (status == -ENOSPC) { retry_enospc: @@ -1087,6 +1087,8 @@ retry_enospc: mlog(ML_NOTICE, "LASTATE: tryalloc (nested) %u bits\n", osb->local_alloc_bits); + ac->ac_bits_wanted = osb->local_alloc_default_bits; + status = ocfs2_claim_clusters(osb, handle, ac,...
2006 Aug 15
0
[git patches] ocfs2 updates
...ason why we can't use * the more specific cluster api to claim bits. */ @@ -852,6 +858,8 @@ static int ocfs2_local_alloc_new_window( goto bail; } + osb->la_last_gd = ac->ac_last_group; + la->la_bm_off = cpu_to_le32(cluster_off); alloc->id1.bitmap1.i_total = cpu_to_le32(cluster_count); /* just in case... In the future when we find space ourselves, diff --git a/fs/ocfs2/ocfs2.h b/fs/ocfs2/ocfs2.h index cd4a6f2..0462a7f 100644 --- a/fs/ocfs2/ocfs2.h +++ b/fs/ocfs2/ocfs2.h @@ -197,7 +197,6 @@ struct ocfs2_super struct ocfs2_node_map recovery_map; struct ocfs2_node_map umount...