From: Sandeep K Sinha <sandeepksinha@gmail.com>
To: ext4 <linux-ext4@vger.kernel.org>,
Kernel Newbies <kernelnewbies@nl.linux.org>
Cc: Manish Katiyar <mkatiyar@gmail.com>,
Greg Freemyer <greg.freemyer@gmail.com>
Subject: [ext2/ext3] Re-allocation of blocks for an inode
Date: Thu, 12 Mar 2009 20:46:24 +0530 [thread overview]
Message-ID: <37d33d830903120816t3a0268e8o803bd1acbc0bee47@mail.gmail.com> (raw)
Hi all,
I am listing above two codes for re-allocating new blocks for a given inode.
These code snippets are specific to ext2.
The problem here is that it is performing slower than cp and dd.
Can anyone help in determining what can be the possible reason(s) ?
1. MEMCPY
=======
src_ind = ext2_iget (sb, inum);
if (!src_ind) {
printk (KERN_DEBUG "\n OHSM Source Inode Not Found ");
goto out_err;
}
/* Getting the ghost inode */
dest_ind = ext2_new_inode (nd.path.dentry->d_inode, src_ind->i_mode);
if (IS_ERR(dest_ind)) {
printk (KERN_ALERT "\n OHSM destination inode unable to allocate.
err = %ld", PTR_ERR(dest_ind));
goto out_err;
}
/* Locking the source inode using mutex */
mutex_lock (&src_ind->i_mutex);
/* Get the source inode size and number of blocks */
i_size = i_size_read(src_ind);
/* Calculating number of block to allocate for ghost inode */
nblocks = (i_size >> EXT2_BLOCK_SIZE_BITS(sb)) +
((i_size & (sb->s_blocksize - 1)) ? 1 : 0);
memset(&dest_bh, 0, sizeof(struct buffer_head));
memset(&src_bh, 0, sizeof(struct buffer_head));
for (done = 0; done < nblocks; done++) {
err = ext2_get_block (src_ind, done, &src_bh, 0);
if (err < 0) {
printk (KERN_DEBUG "\n error getting blocks ret_val = %d",err);
goto unlock;
}
dest_bh.b_state = 0;
err = ext2_get_block (dest_ind, done, &dest_bh, 1);
if (err < 0) {
printk (KERN_DEBUG "\n error getting blocks ret_val = %d",err);
goto unlock;
}
if (!buffer_mapped(&src_bh)){
printk (KERN_DEBUG "\nHOLE ");
continue;
}
src_bhptr = sb_bread(sb, src_bh.b_blocknr);
if (!src_bhptr)
goto unlock;
dst_bhptr = sb_bread(sb, dest_bh.b_blocknr);
if (!dst_bhptr)
goto unlock;
lock_buffer(dst_bhptr);
memcpy(dst_bhptr->b_data,src_bhptr->b_data,src_bhptr->b_size);
unlock_buffer(dst_bhptr);
mark_buffer_dirty(dst_bhptr);
sync_dirty_buffer(dst_bhptr);
brelse(src_bhptr);
brelse(dst_bhptr);
}
for (blk_index = 0; blk_index < 15; blk_index++) {
if (EXT2_I (dest_ind)->i_data[blk_index]){
swap = EXT2_I (src_ind)->i_data[blk_index];
EXT2_I (src_ind)->i_data[blk_index] =
EXT2_I (dest_ind)->i_data[blk_index];
EXT2_I (dest_ind)->i_data[blk_index] = swap;
}
}
dest_ind->i_blocks = src_ind->i_blocks ;
mark_inode_dirty (src_ind);
sync_mapping_buffers(src_ind->i_mapping);
ohsm_sync_inode(src_ind);
iput(src_ind);
dest_ind->i_nlink = 0;
iput(dest_ind);
mutex_unlock (&src_ind->i_mutex);
goto out_err;
unlock:
brelse(src_bhptr);
brelse(dst_bhptr);
mutex_unlock (&src_ind->i_mutex);
out_err:
path_put (&nd.path);
return;
2. PAGEFLIP
========
/* Get the source inode */
src_ind = ext2_iget (sb, inum);
if (!src_ind) {
printk (KERN_DEBUG "\n OHSM Source Inode Not Found ");
goto out_err;
}
/* Getting the ghost inode */
dest_ind = ext2_new_inode (nd.path.dentry->d_inode, src_ind->i_mode);
if (IS_ERR(dest_ind)) {
printk (KERN_ALERT "\n destination inode unable to allocate. err =
%ld", PTR_ERR(dest_ind));
goto out_err;
}
/* Locking the source inode using mutex */
mutex_lock (&src_ind->i_mutex);
/* Get the source inode size and number of blocks */
i_size = i_size_read(src_ind);
/* Calculating number of block to allocate for ghost inode */
nblocks = (i_size >> EXT2_BLOCK_SIZE_BITS(sb)) +
((i_size & (sb->s_blocksize - 1)) ? 1 : 0);
memset(&dest_bh, 0, sizeof(struct buffer_head));
memset(&src_bh, 0, sizeof(struct buffer_head));
for (done = 0; done < nblocks; done++) {
err = ext2_get_block (src_ind, done, &src_bh, 0);
if (err < 0) {
printk (KERN_DEBUG "\n error getting blocks ret_val = %d",err);
goto unlock;
}
dest_bh.b_state = 0;
err = ext2_get_block (dest_ind, done, &dest_bh, 1);
if (err < 0) {
printk (KERN_DEBUG "\n error getting blocks ret_val = %d",err);
goto unlock;
}
if (!buffer_mapped(&src_bh)){
printk (KERN_DEBUG "\nHOLE ");
continue;
}
src_bhptr = sb_bread(sb, src_bh.b_blocknr);
if (!src_bhptr)
goto unlock;
dst_bhptr = sb_bread(sb, dest_bh.b_blocknr);
if (!dst_bhptr)
goto unlock;
lock_buffer(dst_bhptr);
oldpage = dst_bhptr->b_page;
olddata = dst_bhptr->b_data;
dst_bhptr->b_data = src_bhptr->b_data;
dst_bhptr->b_page = src_bhptr->b_page;
flush_dcache_page(dst_bhptr->b_page);
unlock_buffer(dst_bhptr);
mark_buffer_dirty(dst_bhptr);
sync_dirty_buffer(dst_bhptr);
if(buffer_uptodate(dst_bhptr)) {
dst_bhptr->b_page = oldpage;
dst_bhptr->b_data = olddata;
}
brelse(src_bhptr);
brelse(dst_bhptr);
}
for (blk_index = 0; blk_index < 15; blk_index++) {
if (EXT2_I (dest_ind)->i_data[blk_index]){
swap = EXT2_I (src_ind)->i_data[blk_index];
EXT2_I (src_ind)->i_data[blk_index] =
EXT2_I (dest_ind)->i_data[blk_index];
EXT2_I (dest_ind)->i_data[blk_index] = swap;
}
}
dest_ind->i_blocks = src_ind->i_blocks ;
mark_inode_dirty (src_ind);
sync_mapping_buffers(src_ind->i_mapping);
ohsm_sync_inode(src_ind);
iput(src_ind);
dest_ind->i_nlink = 0;
iput(dest_ind);
mutex_unlock (&src_ind->i_mutex);
goto out_err;
unlock:
brelse(src_bhptr);
brelse(dst_bhptr);
mutex_unlock (&src_ind->i_mutex);
out_err:
path_put (&nd.path);
return;
}
--
Regards,
Sandeep.
“To learn is to change. Education is a process that changes the learner.”
--
To unsubscribe from this list: send an email with
"unsubscribe kernelnewbies" to ecartis@nl.linux.org
Please read the FAQ at http://kernelnewbies.org/FAQ
next reply other threads:[~2009-03-12 15:16 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-03-12 15:16 Sandeep K Sinha [this message]
2009-03-12 15:21 ` [ext2/ext3] Re-allocation of blocks for an inode Manish Katiyar
2009-03-12 16:13 ` Greg Freemyer
2009-03-12 17:59 ` Sandeep K Sinha
2009-03-12 18:37 ` Greg Freemyer
2009-03-13 3:35 ` Sandeep K Sinha
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=37d33d830903120816t3a0268e8o803bd1acbc0bee47@mail.gmail.com \
--to=sandeepksinha@gmail.com \
--cc=greg.freemyer@gmail.com \
--cc=kernelnewbies@nl.linux.org \
--cc=linux-ext4@vger.kernel.org \
--cc=mkatiyar@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).