Skip to content

Commit

Permalink
eCryptfs: Simplify lower file offset calculation
Browse files Browse the repository at this point in the history
Now that lower filesystem IO operations occur for complete
PAGE_CACHE_SIZE bytes, the calculation for converting an eCryptfs extent
index into a lower file offset can be simplified.

Signed-off-by: Tyler Hicks <[email protected]>
  • Loading branch information
tyhicks committed Jun 8, 2013
1 parent 0f89617 commit 24d1526
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions fs/ecryptfs/crypto.c
Original file line number Diff line number Diff line change
Expand Up @@ -407,15 +407,15 @@ static int encrypt_scatterlist(struct ecryptfs_crypt_stat *crypt_stat,
}

/**
* ecryptfs_lower_offset_for_extent
* lower_offset_for_page
*
* Convert an eCryptfs page index into a lower byte offset
*/
static void ecryptfs_lower_offset_for_extent(loff_t *offset, loff_t extent_num,
struct ecryptfs_crypt_stat *crypt_stat)
static loff_t lower_offset_for_page(struct ecryptfs_crypt_stat *crypt_stat,
struct page *page)
{
(*offset) = ecryptfs_lower_header_size(crypt_stat)
+ (crypt_stat->extent_size * extent_num);
return ecryptfs_lower_header_size(crypt_stat) +
(page->index << PAGE_CACHE_SHIFT);
}

/**
Expand Down Expand Up @@ -517,9 +517,7 @@ int ecryptfs_encrypt_page(struct page *page)
}
}

ecryptfs_lower_offset_for_extent(&lower_offset,
page->index * (PAGE_CACHE_SIZE / crypt_stat->extent_size),
crypt_stat);
lower_offset = lower_offset_for_page(crypt_stat, page);
enc_extent_virt = kmap(enc_extent_page);
rc = ecryptfs_write_lower(ecryptfs_inode, enc_extent_virt, lower_offset,
PAGE_CACHE_SIZE);
Expand Down Expand Up @@ -612,9 +610,7 @@ int ecryptfs_decrypt_page(struct page *page)
goto out;
}

ecryptfs_lower_offset_for_extent(&lower_offset,
page->index * (PAGE_CACHE_SIZE / crypt_stat->extent_size),
crypt_stat);
lower_offset = lower_offset_for_page(crypt_stat, page);
enc_extent_virt = kmap(enc_extent_page);
rc = ecryptfs_read_lower(enc_extent_virt, lower_offset, PAGE_CACHE_SIZE,
ecryptfs_inode);
Expand Down

0 comments on commit 24d1526

Please sign in to comment.