diff options
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/blockgroup_lock.h | 7 | ||||
| -rw-r--r-- | include/linux/ext2_fs_sb.h | 6 | ||||
| -rw-r--r-- | include/linux/ext3_fs_sb.h | 6 | ||||
| -rw-r--r-- | include/linux/fs.h | 5 | ||||
| -rw-r--r-- | include/linux/pagemap.h | 3 | ||||
| -rw-r--r-- | include/linux/rtc.h | 8 | ||||
| -rw-r--r-- | include/linux/spi/spi.h | 2 |
7 files changed, 32 insertions, 5 deletions
diff --git a/include/linux/blockgroup_lock.h b/include/linux/blockgroup_lock.h index 8607312983b..e44b88ba552 100644 --- a/include/linux/blockgroup_lock.h +++ b/include/linux/blockgroup_lock.h | |||
| @@ -53,7 +53,10 @@ static inline void bgl_lock_init(struct blockgroup_lock *bgl) | |||
| 53 | * The accessor is a macro so we can embed a blockgroup_lock into different | 53 | * The accessor is a macro so we can embed a blockgroup_lock into different |
| 54 | * superblock types | 54 | * superblock types |
| 55 | */ | 55 | */ |
| 56 | #define sb_bgl_lock(sb, block_group) \ | 56 | static inline spinlock_t * |
| 57 | (&(sb)->s_blockgroup_lock.locks[(block_group) & (NR_BG_LOCKS-1)].lock) | 57 | bgl_lock_ptr(struct blockgroup_lock *bgl, unsigned int block_group) |
| 58 | { | ||
| 59 | return &bgl->locks[(block_group) & (NR_BG_LOCKS-1)].lock; | ||
| 60 | } | ||
| 58 | 61 | ||
| 59 | #endif | 62 | #endif |
diff --git a/include/linux/ext2_fs_sb.h b/include/linux/ext2_fs_sb.h index f273415ab6f..dc541f3653d 100644 --- a/include/linux/ext2_fs_sb.h +++ b/include/linux/ext2_fs_sb.h | |||
| @@ -108,4 +108,10 @@ struct ext2_sb_info { | |||
| 108 | struct ext2_reserve_window_node s_rsv_window_head; | 108 | struct ext2_reserve_window_node s_rsv_window_head; |
| 109 | }; | 109 | }; |
| 110 | 110 | ||
| 111 | static inline spinlock_t * | ||
| 112 | sb_bgl_lock(struct ext2_sb_info *sbi, unsigned int block_group) | ||
| 113 | { | ||
| 114 | return bgl_lock_ptr(&sbi->s_blockgroup_lock, block_group); | ||
| 115 | } | ||
| 116 | |||
| 111 | #endif /* _LINUX_EXT2_FS_SB */ | 117 | #endif /* _LINUX_EXT2_FS_SB */ |
diff --git a/include/linux/ext3_fs_sb.h b/include/linux/ext3_fs_sb.h index b65f0288b84..e024e38248f 100644 --- a/include/linux/ext3_fs_sb.h +++ b/include/linux/ext3_fs_sb.h | |||
| @@ -83,4 +83,10 @@ struct ext3_sb_info { | |||
| 83 | #endif | 83 | #endif |
| 84 | }; | 84 | }; |
| 85 | 85 | ||
| 86 | static inline spinlock_t * | ||
| 87 | sb_bgl_lock(struct ext3_sb_info *sbi, unsigned int block_group) | ||
| 88 | { | ||
| 89 | return bgl_lock_ptr(&sbi->s_blockgroup_lock, block_group); | ||
| 90 | } | ||
| 91 | |||
| 86 | #endif /* _LINUX_EXT3_FS_SB */ | 92 | #endif /* _LINUX_EXT3_FS_SB */ |
diff --git a/include/linux/fs.h b/include/linux/fs.h index e2170ee21e1..f2a3010140e 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
| @@ -423,6 +423,9 @@ enum positive_aop_returns { | |||
| 423 | 423 | ||
| 424 | #define AOP_FLAG_UNINTERRUPTIBLE 0x0001 /* will not do a short write */ | 424 | #define AOP_FLAG_UNINTERRUPTIBLE 0x0001 /* will not do a short write */ |
| 425 | #define AOP_FLAG_CONT_EXPAND 0x0002 /* called from cont_expand */ | 425 | #define AOP_FLAG_CONT_EXPAND 0x0002 /* called from cont_expand */ |
| 426 | #define AOP_FLAG_NOFS 0x0004 /* used by filesystem to direct | ||
| 427 | * helper code (eg buffer layer) | ||
| 428 | * to clear GFP_FS from alloc */ | ||
| 426 | 429 | ||
| 427 | /* | 430 | /* |
| 428 | * oh the beauties of C type declarations. | 431 | * oh the beauties of C type declarations. |
| @@ -2035,7 +2038,7 @@ extern int page_readlink(struct dentry *, char __user *, int); | |||
| 2035 | extern void *page_follow_link_light(struct dentry *, struct nameidata *); | 2038 | extern void *page_follow_link_light(struct dentry *, struct nameidata *); |
| 2036 | extern void page_put_link(struct dentry *, struct nameidata *, void *); | 2039 | extern void page_put_link(struct dentry *, struct nameidata *, void *); |
| 2037 | extern int __page_symlink(struct inode *inode, const char *symname, int len, | 2040 | extern int __page_symlink(struct inode *inode, const char *symname, int len, |
| 2038 | gfp_t gfp_mask); | 2041 | int nofs); |
| 2039 | extern int page_symlink(struct inode *inode, const char *symname, int len); | 2042 | extern int page_symlink(struct inode *inode, const char *symname, int len); |
| 2040 | extern const struct inode_operations page_symlink_inode_operations; | 2043 | extern const struct inode_operations page_symlink_inode_operations; |
| 2041 | extern int generic_readlink(struct dentry *, char __user *, int); | 2044 | extern int generic_readlink(struct dentry *, char __user *, int); |
diff --git a/include/linux/pagemap.h b/include/linux/pagemap.h index 709742be02f..01ca0856caf 100644 --- a/include/linux/pagemap.h +++ b/include/linux/pagemap.h | |||
| @@ -241,7 +241,8 @@ unsigned find_get_pages_contig(struct address_space *mapping, pgoff_t start, | |||
| 241 | unsigned find_get_pages_tag(struct address_space *mapping, pgoff_t *index, | 241 | unsigned find_get_pages_tag(struct address_space *mapping, pgoff_t *index, |
| 242 | int tag, unsigned int nr_pages, struct page **pages); | 242 | int tag, unsigned int nr_pages, struct page **pages); |
| 243 | 243 | ||
| 244 | struct page *__grab_cache_page(struct address_space *mapping, pgoff_t index); | 244 | struct page *grab_cache_page_write_begin(struct address_space *mapping, |
| 245 | pgoff_t index, unsigned flags); | ||
| 245 | 246 | ||
| 246 | /* | 247 | /* |
| 247 | * Returns locked page at given index in given cache, creating it if needed. | 248 | * Returns locked page at given index in given cache, creating it if needed. |
diff --git a/include/linux/rtc.h b/include/linux/rtc.h index 91f597ad6ac..4046b75563c 100644 --- a/include/linux/rtc.h +++ b/include/linux/rtc.h | |||
| @@ -145,6 +145,8 @@ struct rtc_class_ops { | |||
| 145 | int (*irq_set_state)(struct device *, int enabled); | 145 | int (*irq_set_state)(struct device *, int enabled); |
| 146 | int (*irq_set_freq)(struct device *, int freq); | 146 | int (*irq_set_freq)(struct device *, int freq); |
| 147 | int (*read_callback)(struct device *, int data); | 147 | int (*read_callback)(struct device *, int data); |
| 148 | int (*alarm_irq_enable)(struct device *, unsigned int enabled); | ||
| 149 | int (*update_irq_enable)(struct device *, unsigned int enabled); | ||
| 148 | }; | 150 | }; |
| 149 | 151 | ||
| 150 | #define RTC_DEVICE_NAME_SIZE 20 | 152 | #define RTC_DEVICE_NAME_SIZE 20 |
| @@ -181,7 +183,7 @@ struct rtc_device | |||
| 181 | struct timer_list uie_timer; | 183 | struct timer_list uie_timer; |
| 182 | /* Those fields are protected by rtc->irq_lock */ | 184 | /* Those fields are protected by rtc->irq_lock */ |
| 183 | unsigned int oldsecs; | 185 | unsigned int oldsecs; |
| 184 | unsigned int irq_active:1; | 186 | unsigned int uie_irq_active:1; |
| 185 | unsigned int stop_uie_polling:1; | 187 | unsigned int stop_uie_polling:1; |
| 186 | unsigned int uie_task_active:1; | 188 | unsigned int uie_task_active:1; |
| 187 | unsigned int uie_timer_active:1; | 189 | unsigned int uie_timer_active:1; |
| @@ -216,6 +218,10 @@ extern int rtc_irq_set_state(struct rtc_device *rtc, | |||
| 216 | struct rtc_task *task, int enabled); | 218 | struct rtc_task *task, int enabled); |
| 217 | extern int rtc_irq_set_freq(struct rtc_device *rtc, | 219 | extern int rtc_irq_set_freq(struct rtc_device *rtc, |
| 218 | struct rtc_task *task, int freq); | 220 | struct rtc_task *task, int freq); |
| 221 | extern int rtc_update_irq_enable(struct rtc_device *rtc, unsigned int enabled); | ||
| 222 | extern int rtc_alarm_irq_enable(struct rtc_device *rtc, unsigned int enabled); | ||
| 223 | extern int rtc_dev_update_irq_enable_emul(struct rtc_device *rtc, | ||
| 224 | unsigned int enabled); | ||
| 219 | 225 | ||
| 220 | typedef struct rtc_task { | 226 | typedef struct rtc_task { |
| 221 | void (*func)(void *private_data); | 227 | void (*func)(void *private_data); |
diff --git a/include/linux/spi/spi.h b/include/linux/spi/spi.h index 4be01bb4437..82229317753 100644 --- a/include/linux/spi/spi.h +++ b/include/linux/spi/spi.h | |||
| @@ -19,6 +19,8 @@ | |||
| 19 | #ifndef __LINUX_SPI_H | 19 | #ifndef __LINUX_SPI_H |
| 20 | #define __LINUX_SPI_H | 20 | #define __LINUX_SPI_H |
| 21 | 21 | ||
| 22 | #include <linux/device.h> | ||
| 23 | |||
| 22 | /* | 24 | /* |
| 23 | * INTERFACES between SPI master-side drivers and SPI infrastructure. | 25 | * INTERFACES between SPI master-side drivers and SPI infrastructure. |
| 24 | * (There's no SPI slave support for Linux yet...) | 26 | * (There's no SPI slave support for Linux yet...) |
