search for: generic_check_address

Displaying 4 results from an estimated 4 matches for "generic_check_address".

2010 Jul 22
4
[PATCH 1/3] ext3/ext4: Factor out disk addressability check
...f --git a/include/linux/fs.h b/include/linux/fs.h index 471e1ff..6aff3f5 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -2399,6 +2399,8 @@ extern ssize_t simple_write_to_buffer(void *to, size_t available, loff_t *ppos, extern int generic_file_fsync(struct file *, int); +extern int generic_check_addressable(unsigned, u64); + #ifdef CONFIG_MIGRATION extern int buffer_migrate_page(struct address_space *, struct page *, struct page *); diff --git a/fs/libfs.c b/fs/libfs.c index dcaf972..b969648 100644 --- a/fs/libfs.c +++ b/fs/libfs.c @@ -955,6 +955,38 @@ int generic_file_fsync(struct file *fi...
2010 Aug 19
0
[GIT PULL] ocfs2 changes for 2.6.36, part 2.
...data elements to reduce struct sizes Jan Kara (2): ocfs2: Flush drive's caches on fdatasync ocfs2: Remove ocfs2_sync_inode() Joel Becker (2): Merge branch 'cow_readahead' of git://oss.oracle.com/git/tma/linux-2.6 into ocfs2-merge-window libfs: Fix shift bug in generic_check_addressable() Patrick J. LoPresti (3): ext3/ext4: Factor out disk addressability check JBD2: Allow feature checks before journal recovery OCFS2: Allow huge (> 16 TiB) volumes to mount Sunil Mushran (2): ocfs2: Fix metaecc error messages ocfs2: Fix incorrect checksum valid...
2010 Oct 22
0
[GIT PULL] ocfs2 changes for 2.6.37
...Initialize max_slots early Jan Kara (1): ocfs2: Remove ocfs2_sync_inode() Jeff Liu (1): ocfs2: Avoid to evaluate xattr block flags again. Joel Becker (5): Merge branch 'cow_readahead' of git://oss.oracle.com/git/tma/linux-2.6 into merge-2 libfs: Fix shift bug in generic_check_addressable() ocfs2: Silence unused warning. ocfs2: Initialize the bktcnt variable properly, and call it bucket_count Merge branch 'globalheartbeat-2' of git://oss.oracle.com/git/smushran/linux-2.6 into ocfs2-merge-window Patrick J. LoPresti (3): ext3/ext4: Factor out disk...
2010 Jul 11
2
[PATCH 1/2] JBD2: Allow feature checks before journal recovery
Before we start accessing a huge (> 16 TiB) OCFS2 volume, we need to confirm that its journal supports 64-bit offsets. So we need to check the journal's feature bits before recovering the journal. This is not possible with JBD2 at present, because the journal superblock (where the feature bits reside) is not loaded from disk until the journal is recovered. This patch loads the journal