search for: cluster_start

Displaying 5 results from an estimated 5 matches for "cluster_start".

Did you mean: cluster_stack
2007 Jun 08
0
[git patches] ocfs2 fixes
...iff --git a/fs/ocfs2/aops.c b/fs/ocfs2/aops.c index 0023b31..a480b09 100644 --- a/fs/ocfs2/aops.c +++ b/fs/ocfs2/aops.c @@ -798,6 +798,11 @@ int ocfs2_map_and_write_splice_data(stru } to = from + bytes; + BUG_ON(from > PAGE_CACHE_SIZE); + BUG_ON(to > PAGE_CACHE_SIZE); + BUG_ON(from < cluster_start); + BUG_ON(to > cluster_end); + if (wc->w_this_page_new) ret = ocfs2_map_page_blocks(wc->w_this_page, p_blkno, inode, cluster_start, cluster_end, 1); @@ -809,11 +814,6 @@ int ocfs2_map_and_write_splice_data(stru goto out; } - BUG_ON(from > PAGE_CACHE_SIZE); - BUG_O...
2006 Jul 26
6
mongrel_cluster
I''m currently working on 4 different RoR apps all using mongrel cluster and each with their own config file in /etc/mongrel_cluster. I would like the ability to stop|start|restart a single app. Anyone working on something like this? I''d be happy to code it up and contribute this if there''s a need. Basically I would like this: sudo /etc/init.d/mongrel_cluster restart
2009 Jul 13
1
[PATCH 1/1] adds mlogs to aops.c
...t;s_bdev, iov, offset, @@ -692,6 +741,7 @@ static ssize_t ocfs2_direct_IO(int rw, ocfs2_direct_IO_get_blocks, ocfs2_dio_end_io); +bail: mlog_exit(ret); return ret; } @@ -703,6 +753,8 @@ static void ocfs2_figure_cluster_boundaries(struct ocfs2_super *osb, { unsigned int cluster_start = 0, cluster_end = PAGE_CACHE_SIZE; + mlog(0, "(0x%p, %u, ..)\n", osb, cpos); + if (unlikely(PAGE_CACHE_SHIFT > osb->s_clustersize_bits)) { unsigned int cpp; @@ -738,6 +790,8 @@ static void ocfs2_clear_page_regions(struct page *page, void *kaddr; unsigned int cluster_st...
2009 Jul 21
1
(no subject)
...t;s_bdev, iov, offset, @@ -692,6 +745,7 @@ static ssize_t ocfs2_direct_IO(int rw, ocfs2_direct_IO_get_blocks, ocfs2_dio_end_io); +bail: mlog_exit(ret); return ret; } @@ -703,6 +757,8 @@ static void ocfs2_figure_cluster_boundaries(struct ocfs2_super *osb, { unsigned int cluster_start = 0, cluster_end = PAGE_CACHE_SIZE; + mlog(0, "(0x%p, %u, ..)\n", osb, cpos); + if (unlikely(PAGE_CACHE_SHIFT > osb->s_clustersize_bits)) { unsigned int cpp; @@ -738,6 +794,8 @@ static void ocfs2_clear_page_regions(struct page *page, void *kaddr; unsigned int cluster_st...
2009 Jul 21
1
[PATCH 1/1] ocfs2: adds mlogs to aops.c -V2
...t;s_bdev, iov, offset, @@ -692,6 +745,7 @@ static ssize_t ocfs2_direct_IO(int rw, ocfs2_direct_IO_get_blocks, ocfs2_dio_end_io); +bail: mlog_exit(ret); return ret; } @@ -703,6 +757,8 @@ static void ocfs2_figure_cluster_boundaries(struct ocfs2_super *osb, { unsigned int cluster_start = 0, cluster_end = PAGE_CACHE_SIZE; + mlog(0, "(0x%p, %u, ..)\n", osb, cpos); + if (unlikely(PAGE_CACHE_SHIFT > osb->s_clustersize_bits)) { unsigned int cpp; @@ -738,6 +794,8 @@ static void ocfs2_clear_page_regions(struct page *page, void *kaddr; unsigned int cluster_st...