diff options
Diffstat (limited to 'include/linux')
134 files changed, 2675 insertions, 1730 deletions
diff --git a/include/linux/amba/bus.h b/include/linux/amba/bus.h index 2afc618b15ce..50fc66868402 100644 --- a/include/linux/amba/bus.h +++ b/include/linux/amba/bus.h | |||
| @@ -33,6 +33,7 @@ struct amba_device { | |||
| 33 | struct clk *pclk; | 33 | struct clk *pclk; |
| 34 | unsigned int periphid; | 34 | unsigned int periphid; |
| 35 | unsigned int irq[AMBA_NR_IRQS]; | 35 | unsigned int irq[AMBA_NR_IRQS]; |
| 36 | char *driver_override; | ||
| 36 | }; | 37 | }; |
| 37 | 38 | ||
| 38 | struct amba_driver { | 39 | struct amba_driver { |
| @@ -92,11 +93,15 @@ struct amba_device *amba_find_device(const char *, struct device *, unsigned int | |||
| 92 | int amba_request_regions(struct amba_device *, const char *); | 93 | int amba_request_regions(struct amba_device *, const char *); |
| 93 | void amba_release_regions(struct amba_device *); | 94 | void amba_release_regions(struct amba_device *); |
| 94 | 95 | ||
| 95 | #define amba_pclk_enable(d) \ | 96 | static inline int amba_pclk_enable(struct amba_device *dev) |
| 96 | (IS_ERR((d)->pclk) ? 0 : clk_enable((d)->pclk)) | 97 | { |
| 98 | return clk_enable(dev->pclk); | ||
| 99 | } | ||
| 97 | 100 | ||
| 98 | #define amba_pclk_disable(d) \ | 101 | static inline void amba_pclk_disable(struct amba_device *dev) |
| 99 | do { if (!IS_ERR((d)->pclk)) clk_disable((d)->pclk); } while (0) | 102 | { |
| 103 | clk_disable(dev->pclk); | ||
| 104 | } | ||
| 100 | 105 | ||
| 101 | static inline int amba_pclk_prepare(struct amba_device *dev) | 106 | static inline int amba_pclk_prepare(struct amba_device *dev) |
| 102 | { | 107 | { |
diff --git a/include/linux/audit.h b/include/linux/audit.h index af84234e1f6e..c2e7e3a83965 100644 --- a/include/linux/audit.h +++ b/include/linux/audit.h | |||
| @@ -46,7 +46,6 @@ struct audit_tree; | |||
| 46 | struct sk_buff; | 46 | struct sk_buff; |
| 47 | 47 | ||
| 48 | struct audit_krule { | 48 | struct audit_krule { |
| 49 | int vers_ops; | ||
| 50 | u32 pflags; | 49 | u32 pflags; |
| 51 | u32 flags; | 50 | u32 flags; |
| 52 | u32 listnr; | 51 | u32 listnr; |
| @@ -128,7 +127,6 @@ extern void __audit_syscall_entry(int major, unsigned long a0, unsigned long a1, | |||
| 128 | extern void __audit_syscall_exit(int ret_success, long ret_value); | 127 | extern void __audit_syscall_exit(int ret_success, long ret_value); |
| 129 | extern struct filename *__audit_reusename(const __user char *uptr); | 128 | extern struct filename *__audit_reusename(const __user char *uptr); |
| 130 | extern void __audit_getname(struct filename *name); | 129 | extern void __audit_getname(struct filename *name); |
| 131 | extern void audit_putname(struct filename *name); | ||
| 132 | 130 | ||
| 133 | #define AUDIT_INODE_PARENT 1 /* dentry represents the parent */ | 131 | #define AUDIT_INODE_PARENT 1 /* dentry represents the parent */ |
| 134 | #define AUDIT_INODE_HIDDEN 2 /* audit record should be hidden */ | 132 | #define AUDIT_INODE_HIDDEN 2 /* audit record should be hidden */ |
| @@ -353,8 +351,6 @@ static inline struct filename *audit_reusename(const __user char *name) | |||
| 353 | } | 351 | } |
| 354 | static inline void audit_getname(struct filename *name) | 352 | static inline void audit_getname(struct filename *name) |
| 355 | { } | 353 | { } |
| 356 | static inline void audit_putname(struct filename *name) | ||
| 357 | { } | ||
| 358 | static inline void __audit_inode(struct filename *name, | 354 | static inline void __audit_inode(struct filename *name, |
| 359 | const struct dentry *dentry, | 355 | const struct dentry *dentry, |
| 360 | unsigned int flags) | 356 | unsigned int flags) |
diff --git a/include/linux/backing-dev.h b/include/linux/backing-dev.h index 5da6012b7a14..aff923ae8c4b 100644 --- a/include/linux/backing-dev.h +++ b/include/linux/backing-dev.h | |||
| @@ -55,6 +55,7 @@ struct bdi_writeback { | |||
| 55 | struct list_head b_dirty; /* dirty inodes */ | 55 | struct list_head b_dirty; /* dirty inodes */ |
| 56 | struct list_head b_io; /* parked for writeback */ | 56 | struct list_head b_io; /* parked for writeback */ |
| 57 | struct list_head b_more_io; /* parked for more writeback */ | 57 | struct list_head b_more_io; /* parked for more writeback */ |
| 58 | struct list_head b_dirty_time; /* time stamps are dirty */ | ||
| 58 | spinlock_t list_lock; /* protects the b_* lists */ | 59 | spinlock_t list_lock; /* protects the b_* lists */ |
| 59 | }; | 60 | }; |
| 60 | 61 | ||
| @@ -106,6 +107,8 @@ struct backing_dev_info { | |||
| 106 | #endif | 107 | #endif |
| 107 | }; | 108 | }; |
| 108 | 109 | ||
| 110 | struct backing_dev_info *inode_to_bdi(struct inode *inode); | ||
| 111 | |||
| 109 | int __must_check bdi_init(struct backing_dev_info *bdi); | 112 | int __must_check bdi_init(struct backing_dev_info *bdi); |
| 110 | void bdi_destroy(struct backing_dev_info *bdi); | 113 | void bdi_destroy(struct backing_dev_info *bdi); |
| 111 | 114 | ||
| @@ -114,7 +117,7 @@ int bdi_register(struct backing_dev_info *bdi, struct device *parent, | |||
| 114 | const char *fmt, ...); | 117 | const char *fmt, ...); |
| 115 | int bdi_register_dev(struct backing_dev_info *bdi, dev_t dev); | 118 | int bdi_register_dev(struct backing_dev_info *bdi, dev_t dev); |
| 116 | void bdi_unregister(struct backing_dev_info *bdi); | 119 | void bdi_unregister(struct backing_dev_info *bdi); |
| 117 | int __must_check bdi_setup_and_register(struct backing_dev_info *, char *, unsigned int); | 120 | int __must_check bdi_setup_and_register(struct backing_dev_info *, char *); |
| 118 | void bdi_start_writeback(struct backing_dev_info *bdi, long nr_pages, | 121 | void bdi_start_writeback(struct backing_dev_info *bdi, long nr_pages, |
| 119 | enum wb_reason reason); | 122 | enum wb_reason reason); |
| 120 | void bdi_start_background_writeback(struct backing_dev_info *bdi); | 123 | void bdi_start_background_writeback(struct backing_dev_info *bdi); |
| @@ -228,46 +231,17 @@ int bdi_set_max_ratio(struct backing_dev_info *bdi, unsigned int max_ratio); | |||
| 228 | * BDI_CAP_NO_ACCT_DIRTY: Dirty pages shouldn't contribute to accounting | 231 | * BDI_CAP_NO_ACCT_DIRTY: Dirty pages shouldn't contribute to accounting |
| 229 | * BDI_CAP_NO_WRITEBACK: Don't write pages back | 232 | * BDI_CAP_NO_WRITEBACK: Don't write pages back |
| 230 | * BDI_CAP_NO_ACCT_WB: Don't automatically account writeback pages | 233 | * BDI_CAP_NO_ACCT_WB: Don't automatically account writeback pages |
| 231 | * | ||
| 232 | * These flags let !MMU mmap() govern direct device mapping vs immediate | ||
| 233 | * copying more easily for MAP_PRIVATE, especially for ROM filesystems. | ||
| 234 | * | ||
| 235 | * BDI_CAP_MAP_COPY: Copy can be mapped (MAP_PRIVATE) | ||
| 236 | * BDI_CAP_MAP_DIRECT: Can be mapped directly (MAP_SHARED) | ||
| 237 | * BDI_CAP_READ_MAP: Can be mapped for reading | ||
| 238 | * BDI_CAP_WRITE_MAP: Can be mapped for writing | ||
| 239 | * BDI_CAP_EXEC_MAP: Can be mapped for execution | ||
| 240 | * | ||
| 241 | * BDI_CAP_SWAP_BACKED: Count shmem/tmpfs objects as swap-backed. | ||
| 242 | * | ||
| 243 | * BDI_CAP_STRICTLIMIT: Keep number of dirty pages below bdi threshold. | 234 | * BDI_CAP_STRICTLIMIT: Keep number of dirty pages below bdi threshold. |
| 244 | */ | 235 | */ |
| 245 | #define BDI_CAP_NO_ACCT_DIRTY 0x00000001 | 236 | #define BDI_CAP_NO_ACCT_DIRTY 0x00000001 |
| 246 | #define BDI_CAP_NO_WRITEBACK 0x00000002 | 237 | #define BDI_CAP_NO_WRITEBACK 0x00000002 |
| 247 | #define BDI_CAP_MAP_COPY 0x00000004 | 238 | #define BDI_CAP_NO_ACCT_WB 0x00000004 |
| 248 | #define BDI_CAP_MAP_DIRECT 0x00000008 | 239 | #define BDI_CAP_STABLE_WRITES 0x00000008 |
| 249 | #define BDI_CAP_READ_MAP 0x00000010 | 240 | #define BDI_CAP_STRICTLIMIT 0x00000010 |
| 250 | #define BDI_CAP_WRITE_MAP 0x00000020 | ||
| 251 | #define BDI_CAP_EXEC_MAP 0x00000040 | ||
| 252 | #define BDI_CAP_NO_ACCT_WB 0x00000080 | ||
| 253 | #define BDI_CAP_SWAP_BACKED 0x00000100 | ||
| 254 | #define BDI_CAP_STABLE_WRITES 0x00000200 | ||
| 255 | #define BDI_CAP_STRICTLIMIT 0x00000400 | ||
| 256 | |||
| 257 | #define BDI_CAP_VMFLAGS \ | ||
| 258 | (BDI_CAP_READ_MAP | BDI_CAP_WRITE_MAP | BDI_CAP_EXEC_MAP) | ||
| 259 | 241 | ||
| 260 | #define BDI_CAP_NO_ACCT_AND_WRITEBACK \ | 242 | #define BDI_CAP_NO_ACCT_AND_WRITEBACK \ |
| 261 | (BDI_CAP_NO_WRITEBACK | BDI_CAP_NO_ACCT_DIRTY | BDI_CAP_NO_ACCT_WB) | 243 | (BDI_CAP_NO_WRITEBACK | BDI_CAP_NO_ACCT_DIRTY | BDI_CAP_NO_ACCT_WB) |
| 262 | 244 | ||
| 263 | #if defined(VM_MAYREAD) && \ | ||
| 264 | (BDI_CAP_READ_MAP != VM_MAYREAD || \ | ||
| 265 | BDI_CAP_WRITE_MAP != VM_MAYWRITE || \ | ||
| 266 | BDI_CAP_EXEC_MAP != VM_MAYEXEC) | ||
| 267 | #error please change backing_dev_info::capabilities flags | ||
| 268 | #endif | ||
| 269 | |||
| 270 | extern struct backing_dev_info default_backing_dev_info; | ||
| 271 | extern struct backing_dev_info noop_backing_dev_info; | 245 | extern struct backing_dev_info noop_backing_dev_info; |
| 272 | 246 | ||
| 273 | int writeback_in_progress(struct backing_dev_info *bdi); | 247 | int writeback_in_progress(struct backing_dev_info *bdi); |
| @@ -329,24 +303,14 @@ static inline bool bdi_cap_account_writeback(struct backing_dev_info *bdi) | |||
| 329 | BDI_CAP_NO_WRITEBACK)); | 303 | BDI_CAP_NO_WRITEBACK)); |
| 330 | } | 304 | } |
| 331 | 305 | ||
| 332 | static inline bool bdi_cap_swap_backed(struct backing_dev_info *bdi) | ||
| 333 | { | ||
| 334 | return bdi->capabilities & BDI_CAP_SWAP_BACKED; | ||
| 335 | } | ||
| 336 | |||
| 337 | static inline bool mapping_cap_writeback_dirty(struct address_space *mapping) | 306 | static inline bool mapping_cap_writeback_dirty(struct address_space *mapping) |
| 338 | { | 307 | { |
| 339 | return bdi_cap_writeback_dirty(mapping->backing_dev_info); | 308 | return bdi_cap_writeback_dirty(inode_to_bdi(mapping->host)); |
| 340 | } | 309 | } |
| 341 | 310 | ||
| 342 | static inline bool mapping_cap_account_dirty(struct address_space *mapping) | 311 | static inline bool mapping_cap_account_dirty(struct address_space *mapping) |
| 343 | { | 312 | { |
| 344 | return bdi_cap_account_dirty(mapping->backing_dev_info); | 313 | return bdi_cap_account_dirty(inode_to_bdi(mapping->host)); |
| 345 | } | ||
| 346 | |||
| 347 | static inline bool mapping_cap_swap_backed(struct address_space *mapping) | ||
| 348 | { | ||
| 349 | return bdi_cap_swap_backed(mapping->backing_dev_info); | ||
| 350 | } | 314 | } |
| 351 | 315 | ||
| 352 | static inline int bdi_sched_wait(void *word) | 316 | static inline int bdi_sched_wait(void *word) |
diff --git a/include/linux/bio.h b/include/linux/bio.h index efead0b532c4..da3a127c9958 100644 --- a/include/linux/bio.h +++ b/include/linux/bio.h | |||
| @@ -428,13 +428,9 @@ extern int bio_add_page(struct bio *, struct page *, unsigned int,unsigned int); | |||
| 428 | extern int bio_add_pc_page(struct request_queue *, struct bio *, struct page *, | 428 | extern int bio_add_pc_page(struct request_queue *, struct bio *, struct page *, |
| 429 | unsigned int, unsigned int); | 429 | unsigned int, unsigned int); |
| 430 | extern int bio_get_nr_vecs(struct block_device *); | 430 | extern int bio_get_nr_vecs(struct block_device *); |
| 431 | extern struct bio *bio_map_user(struct request_queue *, struct block_device *, | ||
| 432 | unsigned long, unsigned int, int, gfp_t); | ||
| 433 | struct sg_iovec; | ||
| 434 | struct rq_map_data; | 431 | struct rq_map_data; |
| 435 | extern struct bio *bio_map_user_iov(struct request_queue *, | 432 | extern struct bio *bio_map_user_iov(struct request_queue *, |
| 436 | struct block_device *, | 433 | const struct iov_iter *, gfp_t); |
| 437 | const struct sg_iovec *, int, int, gfp_t); | ||
| 438 | extern void bio_unmap_user(struct bio *); | 434 | extern void bio_unmap_user(struct bio *); |
| 439 | extern struct bio *bio_map_kern(struct request_queue *, void *, unsigned int, | 435 | extern struct bio *bio_map_kern(struct request_queue *, void *, unsigned int, |
| 440 | gfp_t); | 436 | gfp_t); |
| @@ -462,12 +458,10 @@ static inline void bio_flush_dcache_pages(struct bio *bi) | |||
| 462 | extern void bio_copy_data(struct bio *dst, struct bio *src); | 458 | extern void bio_copy_data(struct bio *dst, struct bio *src); |
| 463 | extern int bio_alloc_pages(struct bio *bio, gfp_t gfp); | 459 | extern int bio_alloc_pages(struct bio *bio, gfp_t gfp); |
| 464 | 460 | ||
| 465 | extern struct bio *bio_copy_user(struct request_queue *, struct rq_map_data *, | ||
| 466 | unsigned long, unsigned int, int, gfp_t); | ||
| 467 | extern struct bio *bio_copy_user_iov(struct request_queue *, | 461 | extern struct bio *bio_copy_user_iov(struct request_queue *, |
| 468 | struct rq_map_data *, | 462 | struct rq_map_data *, |
| 469 | const struct sg_iovec *, | 463 | const struct iov_iter *, |
| 470 | int, int, gfp_t); | 464 | gfp_t); |
| 471 | extern int bio_uncopy_user(struct bio *); | 465 | extern int bio_uncopy_user(struct bio *); |
| 472 | void zero_fill_bio(struct bio *bio); | 466 | void zero_fill_bio(struct bio *bio); |
| 473 | extern struct bio_vec *bvec_alloc(gfp_t, int, unsigned long *, mempool_t *); | 467 | extern struct bio_vec *bvec_alloc(gfp_t, int, unsigned long *, mempool_t *); |
diff --git a/include/linux/bitmap.h b/include/linux/bitmap.h index 202e4034fe26..dbfbf4990005 100644 --- a/include/linux/bitmap.h +++ b/include/linux/bitmap.h | |||
| @@ -52,16 +52,13 @@ | |||
| 52 | * bitmap_bitremap(oldbit, old, new, nbits) newbit = map(old, new)(oldbit) | 52 | * bitmap_bitremap(oldbit, old, new, nbits) newbit = map(old, new)(oldbit) |
| 53 | * bitmap_onto(dst, orig, relmap, nbits) *dst = orig relative to relmap | 53 | * bitmap_onto(dst, orig, relmap, nbits) *dst = orig relative to relmap |
| 54 | * bitmap_fold(dst, orig, sz, nbits) dst bits = orig bits mod sz | 54 | * bitmap_fold(dst, orig, sz, nbits) dst bits = orig bits mod sz |
| 55 | * bitmap_scnprintf(buf, len, src, nbits) Print bitmap src to buf | ||
| 56 | * bitmap_parse(buf, buflen, dst, nbits) Parse bitmap dst from kernel buf | 55 | * bitmap_parse(buf, buflen, dst, nbits) Parse bitmap dst from kernel buf |
| 57 | * bitmap_parse_user(ubuf, ulen, dst, nbits) Parse bitmap dst from user buf | 56 | * bitmap_parse_user(ubuf, ulen, dst, nbits) Parse bitmap dst from user buf |
| 58 | * bitmap_scnlistprintf(buf, len, src, nbits) Print bitmap src as list to buf | ||
| 59 | * bitmap_parselist(buf, dst, nbits) Parse bitmap dst from kernel buf | 57 | * bitmap_parselist(buf, dst, nbits) Parse bitmap dst from kernel buf |
| 60 | * bitmap_parselist_user(buf, dst, nbits) Parse bitmap dst from user buf | 58 | * bitmap_parselist_user(buf, dst, nbits) Parse bitmap dst from user buf |
| 61 | * bitmap_find_free_region(bitmap, bits, order) Find and allocate bit region | 59 | * bitmap_find_free_region(bitmap, bits, order) Find and allocate bit region |
| 62 | * bitmap_release_region(bitmap, pos, order) Free specified bit region | 60 | * bitmap_release_region(bitmap, pos, order) Free specified bit region |
| 63 | * bitmap_allocate_region(bitmap, pos, order) Allocate specified bit region | 61 | * bitmap_allocate_region(bitmap, pos, order) Allocate specified bit region |
| 64 | * bitmap_print_to_pagebuf(list, buf, mask, nbits) Print bitmap src as list/hex | ||
| 65 | */ | 62 | */ |
| 66 | 63 | ||
| 67 | /* | 64 | /* |
| @@ -96,10 +93,10 @@ extern int __bitmap_equal(const unsigned long *bitmap1, | |||
| 96 | const unsigned long *bitmap2, unsigned int nbits); | 93 | const unsigned long *bitmap2, unsigned int nbits); |
| 97 | extern void __bitmap_complement(unsigned long *dst, const unsigned long *src, | 94 | extern void __bitmap_complement(unsigned long *dst, const unsigned long *src, |
| 98 | unsigned int nbits); | 95 | unsigned int nbits); |
| 99 | extern void __bitmap_shift_right(unsigned long *dst, | 96 | extern void __bitmap_shift_right(unsigned long *dst, const unsigned long *src, |
| 100 | const unsigned long *src, int shift, int bits); | 97 | unsigned int shift, unsigned int nbits); |
| 101 | extern void __bitmap_shift_left(unsigned long *dst, | 98 | extern void __bitmap_shift_left(unsigned long *dst, const unsigned long *src, |
| 102 | const unsigned long *src, int shift, int bits); | 99 | unsigned int shift, unsigned int nbits); |
| 103 | extern int __bitmap_and(unsigned long *dst, const unsigned long *bitmap1, | 100 | extern int __bitmap_and(unsigned long *dst, const unsigned long *bitmap1, |
| 104 | const unsigned long *bitmap2, unsigned int nbits); | 101 | const unsigned long *bitmap2, unsigned int nbits); |
| 105 | extern void __bitmap_or(unsigned long *dst, const unsigned long *bitmap1, | 102 | extern void __bitmap_or(unsigned long *dst, const unsigned long *bitmap1, |
| @@ -147,31 +144,31 @@ bitmap_find_next_zero_area(unsigned long *map, | |||
| 147 | align_mask, 0); | 144 | align_mask, 0); |
| 148 | } | 145 | } |
| 149 | 146 | ||
| 150 | extern int bitmap_scnprintf(char *buf, unsigned int len, | ||
| 151 | const unsigned long *src, int nbits); | ||
| 152 | extern int __bitmap_parse(const char *buf, unsigned int buflen, int is_user, | 147 | extern int __bitmap_parse(const char *buf, unsigned int buflen, int is_user, |
| 153 | unsigned long *dst, int nbits); | 148 | unsigned long *dst, int nbits); |
| 154 | extern int bitmap_parse_user(const char __user *ubuf, unsigned int ulen, | 149 | extern int bitmap_parse_user(const char __user *ubuf, unsigned int ulen, |
| 155 | unsigned long *dst, int nbits); | 150 | unsigned long *dst, int nbits); |
| 156 | extern int bitmap_scnlistprintf(char *buf, unsigned int len, | ||
| 157 | const unsigned long *src, int nbits); | ||
| 158 | extern int bitmap_parselist(const char *buf, unsigned long *maskp, | 151 | extern int bitmap_parselist(const char *buf, unsigned long *maskp, |
| 159 | int nmaskbits); | 152 | int nmaskbits); |
| 160 | extern int bitmap_parselist_user(const char __user *ubuf, unsigned int ulen, | 153 | extern int bitmap_parselist_user(const char __user *ubuf, unsigned int ulen, |
| 161 | unsigned long *dst, int nbits); | 154 | unsigned long *dst, int nbits); |
| 162 | extern void bitmap_remap(unsigned long *dst, const unsigned long *src, | 155 | extern void bitmap_remap(unsigned long *dst, const unsigned long *src, |
| 163 | const unsigned long *old, const unsigned long *new, int bits); | 156 | const unsigned long *old, const unsigned long *new, unsigned int nbits); |
| 164 | extern int bitmap_bitremap(int oldbit, | 157 | extern int bitmap_bitremap(int oldbit, |
| 165 | const unsigned long *old, const unsigned long *new, int bits); | 158 | const unsigned long *old, const unsigned long *new, int bits); |
| 166 | extern void bitmap_onto(unsigned long *dst, const unsigned long *orig, | 159 | extern void bitmap_onto(unsigned long *dst, const unsigned long *orig, |
| 167 | const unsigned long *relmap, int bits); | 160 | const unsigned long *relmap, unsigned int bits); |
| 168 | extern void bitmap_fold(unsigned long *dst, const unsigned long *orig, | 161 | extern void bitmap_fold(unsigned long *dst, const unsigned long *orig, |
| 169 | int sz, int bits); | 162 | unsigned int sz, unsigned int nbits); |
| 170 | extern int bitmap_find_free_region(unsigned long *bitmap, unsigned int bits, int order); | 163 | extern int bitmap_find_free_region(unsigned long *bitmap, unsigned int bits, int order); |
| 171 | extern void bitmap_release_region(unsigned long *bitmap, unsigned int pos, int order); | 164 | extern void bitmap_release_region(unsigned long *bitmap, unsigned int pos, int order); |
| 172 | extern int bitmap_allocate_region(unsigned long *bitmap, unsigned int pos, int order); | 165 | extern int bitmap_allocate_region(unsigned long *bitmap, unsigned int pos, int order); |
| 173 | extern void bitmap_copy_le(void *dst, const unsigned long *src, int nbits); | 166 | #ifdef __BIG_ENDIAN |
| 174 | extern int bitmap_ord_to_pos(const unsigned long *bitmap, int n, int bits); | 167 | extern void bitmap_copy_le(unsigned long *dst, const unsigned long *src, unsigned int nbits); |
| 168 | #else | ||
| 169 | #define bitmap_copy_le bitmap_copy | ||
| 170 | #endif | ||
| 171 | extern unsigned int bitmap_ord_to_pos(const unsigned long *bitmap, unsigned int ord, unsigned int nbits); | ||
| 175 | extern int bitmap_print_to_pagebuf(bool list, char *buf, | 172 | extern int bitmap_print_to_pagebuf(bool list, char *buf, |
| 176 | const unsigned long *maskp, int nmaskbits); | 173 | const unsigned long *maskp, int nmaskbits); |
| 177 | 174 | ||
| @@ -185,33 +182,33 @@ extern int bitmap_print_to_pagebuf(bool list, char *buf, | |||
| 185 | #define small_const_nbits(nbits) \ | 182 | #define small_const_nbits(nbits) \ |
| 186 | (__builtin_constant_p(nbits) && (nbits) <= BITS_PER_LONG) | 183 | (__builtin_constant_p(nbits) && (nbits) <= BITS_PER_LONG) |
| 187 | 184 | ||
| 188 | static inline void bitmap_zero(unsigned long *dst, int nbits) | 185 | static inline void bitmap_zero(unsigned long *dst, unsigned int nbits) |
| 189 | { | 186 | { |
| 190 | if (small_const_nbits(nbits)) | 187 | if (small_const_nbits(nbits)) |
| 191 | *dst = 0UL; | 188 | *dst = 0UL; |
| 192 | else { | 189 | else { |
| 193 | int len = BITS_TO_LONGS(nbits) * sizeof(unsigned long); | 190 | unsigned int len = BITS_TO_LONGS(nbits) * sizeof(unsigned long); |
| 194 | memset(dst, 0, len); | 191 | memset(dst, 0, len); |
| 195 | } | 192 | } |
| 196 | } | 193 | } |
| 197 | 194 | ||
| 198 | static inline void bitmap_fill(unsigned long *dst, int nbits) | 195 | static inline void bitmap_fill(unsigned long *dst, unsigned int nbits) |
| 199 | { | 196 | { |
| 200 | size_t nlongs = BITS_TO_LONGS(nbits); | 197 | unsigned int nlongs = BITS_TO_LONGS(nbits); |
| 201 | if (!small_const_nbits(nbits)) { | 198 | if (!small_const_nbits(nbits)) { |
| 202 | int len = (nlongs - 1) * sizeof(unsigned long); | 199 | unsigned int len = (nlongs - 1) * sizeof(unsigned long); |
| 203 | memset(dst, 0xff, len); | 200 | memset(dst, 0xff, len); |
| 204 | } | 201 | } |
| 205 | dst[nlongs - 1] = BITMAP_LAST_WORD_MASK(nbits); | 202 | dst[nlongs - 1] = BITMAP_LAST_WORD_MASK(nbits); |
| 206 | } | 203 | } |
| 207 | 204 | ||
| 208 | static inline void bitmap_copy(unsigned long *dst, const unsigned long *src, | 205 | static inline void bitmap_copy(unsigned long *dst, const unsigned long *src, |
| 209 | int nbits) | 206 | unsigned int nbits) |
| 210 | { | 207 | { |
| 211 | if (small_const_nbits(nbits)) | 208 | if (small_const_nbits(nbits)) |
| 212 | *dst = *src; | 209 | *dst = *src; |
| 213 | else { | 210 | else { |
| 214 | int len = BITS_TO_LONGS(nbits) * sizeof(unsigned long); | 211 | unsigned int len = BITS_TO_LONGS(nbits) * sizeof(unsigned long); |
| 215 | memcpy(dst, src, len); | 212 | memcpy(dst, src, len); |
| 216 | } | 213 | } |
| 217 | } | 214 | } |
| @@ -309,22 +306,22 @@ static inline int bitmap_weight(const unsigned long *src, unsigned int nbits) | |||
| 309 | return __bitmap_weight(src, nbits); | 306 | return __bitmap_weight(src, nbits); |
| 310 | } | 307 | } |
| 311 | 308 | ||
| 312 | static inline void bitmap_shift_right(unsigned long *dst, | 309 | static inline void bitmap_shift_right(unsigned long *dst, const unsigned long *src, |
| 313 | const unsigned long *src, int n, int nbits) | 310 | unsigned int shift, int nbits) |
| 314 | { | 311 | { |
| 315 | if (small_const_nbits(nbits)) | 312 | if (small_const_nbits(nbits)) |
| 316 | *dst = (*src & BITMAP_LAST_WORD_MASK(nbits)) >> n; | 313 | *dst = (*src & BITMAP_LAST_WORD_MASK(nbits)) >> shift; |
| 317 | else | 314 | else |
| 318 | __bitmap_shift_right(dst, src, n, nbits); | 315 | __bitmap_shift_right(dst, src, shift, nbits); |
| 319 | } | 316 | } |
| 320 | 317 | ||
| 321 | static inline void bitmap_shift_left(unsigned long *dst, | 318 | static inline void bitmap_shift_left(unsigned long *dst, const unsigned long *src, |
| 322 | const unsigned long *src, int n, int nbits) | 319 | unsigned int shift, unsigned int nbits) |
| 323 | { | 320 | { |
| 324 | if (small_const_nbits(nbits)) | 321 | if (small_const_nbits(nbits)) |
| 325 | *dst = (*src << n) & BITMAP_LAST_WORD_MASK(nbits); | 322 | *dst = (*src << shift) & BITMAP_LAST_WORD_MASK(nbits); |
| 326 | else | 323 | else |
| 327 | __bitmap_shift_left(dst, src, n, nbits); | 324 | __bitmap_shift_left(dst, src, shift, nbits); |
| 328 | } | 325 | } |
| 329 | 326 | ||
| 330 | static inline int bitmap_parse(const char *buf, unsigned int buflen, | 327 | static inline int bitmap_parse(const char *buf, unsigned int buflen, |
diff --git a/include/linux/bitrev.h b/include/linux/bitrev.h index 7ffe03f4693d..fb790b8449c1 100644 --- a/include/linux/bitrev.h +++ b/include/linux/bitrev.h | |||
| @@ -3,14 +3,83 @@ | |||
| 3 | 3 | ||
| 4 | #include <linux/types.h> | 4 | #include <linux/types.h> |
| 5 | 5 | ||
| 6 | extern u8 const byte_rev_table[256]; | 6 | #ifdef CONFIG_HAVE_ARCH_BITREVERSE |
| 7 | #include <asm/bitrev.h> | ||
| 8 | |||
| 9 | #define __bitrev32 __arch_bitrev32 | ||
| 10 | #define __bitrev16 __arch_bitrev16 | ||
| 11 | #define __bitrev8 __arch_bitrev8 | ||
| 7 | 12 | ||
| 8 | static inline u8 bitrev8(u8 byte) | 13 | #else |
| 14 | extern u8 const byte_rev_table[256]; | ||
| 15 | static inline u8 __bitrev8(u8 byte) | ||
| 9 | { | 16 | { |
| 10 | return byte_rev_table[byte]; | 17 | return byte_rev_table[byte]; |
| 11 | } | 18 | } |
| 12 | 19 | ||
| 13 | extern u16 bitrev16(u16 in); | 20 | static inline u16 __bitrev16(u16 x) |
| 14 | extern u32 bitrev32(u32 in); | 21 | { |
| 22 | return (__bitrev8(x & 0xff) << 8) | __bitrev8(x >> 8); | ||
| 23 | } | ||
| 24 | |||
| 25 | static inline u32 __bitrev32(u32 x) | ||
| 26 | { | ||
| 27 | return (__bitrev16(x & 0xffff) << 16) | __bitrev16(x >> 16); | ||
| 28 | } | ||
| 29 | |||
| 30 | #endif /* CONFIG_HAVE_ARCH_BITREVERSE */ | ||
| 31 | |||
| 32 | #define __constant_bitrev32(x) \ | ||
| 33 | ({ \ | ||
| 34 | u32 __x = x; \ | ||
| 35 | __x = (__x >> 16) | (__x << 16); \ | ||
| 36 | __x = ((__x & (u32)0xFF00FF00UL) >> 8) | ((__x & (u32)0x00FF00FFUL) << 8); \ | ||
| 37 | __x = ((__x & (u32)0xF0F0F0F0UL) >> 4) | ((__x & (u32)0x0F0F0F0FUL) << 4); \ | ||
| 38 | __x = ((__x & (u32)0xCCCCCCCCUL) >> 2) | ((__x & (u32)0x33333333UL) << 2); \ | ||
| 39 | __x = ((__x & (u32)0xAAAAAAAAUL) >> 1) | ((__x & (u32)0x55555555UL) << 1); \ | ||
| 40 | __x; \ | ||
| 41 | }) | ||
| 42 | |||
| 43 | #define __constant_bitrev16(x) \ | ||
| 44 | ({ \ | ||
| 45 | u16 __x = x; \ | ||
| 46 | __x = (__x >> 8) | (__x << 8); \ | ||
| 47 | __x = ((__x & (u16)0xF0F0U) >> 4) | ((__x & (u16)0x0F0FU) << 4); \ | ||
| 48 | __x = ((__x & (u16)0xCCCCU) >> 2) | ((__x & (u16)0x3333U) << 2); \ | ||
| 49 | __x = ((__x & (u16)0xAAAAU) >> 1) | ((__x & (u16)0x5555U) << 1); \ | ||
| 50 | __x; \ | ||
| 51 | }) | ||
| 52 | |||
| 53 | #define __constant_bitrev8(x) \ | ||
| 54 | ({ \ | ||
| 55 | u8 __x = x; \ | ||
| 56 | __x = (__x >> 4) | (__x << 4); \ | ||
| 57 | __x = ((__x & (u8)0xCCU) >> 2) | ((__x & (u8)0x33U) << 2); \ | ||
| 58 | __x = ((__x & (u8)0xAAU) >> 1) | ((__x & (u8)0x55U) << 1); \ | ||
| 59 | __x; \ | ||
| 60 | }) | ||
| 61 | |||
| 62 | #define bitrev32(x) \ | ||
| 63 | ({ \ | ||
| 64 | u32 __x = x; \ | ||
| 65 | __builtin_constant_p(__x) ? \ | ||
| 66 | __constant_bitrev32(__x) : \ | ||
| 67 | __bitrev32(__x); \ | ||
| 68 | }) | ||
| 69 | |||
| 70 | #define bitrev16(x) \ | ||
| 71 | ({ \ | ||
| 72 | u16 __x = x; \ | ||
| 73 | __builtin_constant_p(__x) ? \ | ||
| 74 | __constant_bitrev16(__x) : \ | ||
| 75 | __bitrev16(__x); \ | ||
| 76 | }) | ||
| 15 | 77 | ||
| 78 | #define bitrev8(x) \ | ||
| 79 | ({ \ | ||
| 80 | u8 __x = x; \ | ||
| 81 | __builtin_constant_p(__x) ? \ | ||
| 82 | __constant_bitrev8(__x) : \ | ||
| 83 | __bitrev8(__x) ; \ | ||
| 84 | }) | ||
| 16 | #endif /* _LINUX_BITREV_H */ | 85 | #endif /* _LINUX_BITREV_H */ |
diff --git a/include/linux/blk-mq.h b/include/linux/blk-mq.h index 5735e7130d63..7aec86127335 100644 --- a/include/linux/blk-mq.h +++ b/include/linux/blk-mq.h | |||
| @@ -146,6 +146,8 @@ enum { | |||
| 146 | BLK_MQ_F_SG_MERGE = 1 << 2, | 146 | BLK_MQ_F_SG_MERGE = 1 << 2, |
| 147 | BLK_MQ_F_SYSFS_UP = 1 << 3, | 147 | BLK_MQ_F_SYSFS_UP = 1 << 3, |
| 148 | BLK_MQ_F_DEFER_ISSUE = 1 << 4, | 148 | BLK_MQ_F_DEFER_ISSUE = 1 << 4, |
| 149 | BLK_MQ_F_ALLOC_POLICY_START_BIT = 8, | ||
| 150 | BLK_MQ_F_ALLOC_POLICY_BITS = 1, | ||
| 149 | 151 | ||
| 150 | BLK_MQ_S_STOPPED = 0, | 152 | BLK_MQ_S_STOPPED = 0, |
| 151 | BLK_MQ_S_TAG_ACTIVE = 1, | 153 | BLK_MQ_S_TAG_ACTIVE = 1, |
| @@ -154,6 +156,12 @@ enum { | |||
| 154 | 156 | ||
| 155 | BLK_MQ_CPU_WORK_BATCH = 8, | 157 | BLK_MQ_CPU_WORK_BATCH = 8, |
| 156 | }; | 158 | }; |
| 159 | #define BLK_MQ_FLAG_TO_ALLOC_POLICY(flags) \ | ||
| 160 | ((flags >> BLK_MQ_F_ALLOC_POLICY_START_BIT) & \ | ||
| 161 | ((1 << BLK_MQ_F_ALLOC_POLICY_BITS) - 1)) | ||
| 162 | #define BLK_ALLOC_POLICY_TO_MQ_FLAG(policy) \ | ||
| 163 | ((policy & ((1 << BLK_MQ_F_ALLOC_POLICY_BITS) - 1)) \ | ||
| 164 | << BLK_MQ_F_ALLOC_POLICY_START_BIT) | ||
| 157 | 165 | ||
| 158 | struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *); | 166 | struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *); |
| 159 | void blk_mq_finish_init(struct request_queue *q); | 167 | void blk_mq_finish_init(struct request_queue *q); |
| @@ -166,7 +174,6 @@ void blk_mq_free_tag_set(struct blk_mq_tag_set *set); | |||
| 166 | void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule); | 174 | void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule); |
| 167 | 175 | ||
| 168 | void blk_mq_insert_request(struct request *, bool, bool, bool); | 176 | void blk_mq_insert_request(struct request *, bool, bool, bool); |
| 169 | void blk_mq_run_queues(struct request_queue *q, bool async); | ||
| 170 | void blk_mq_free_request(struct request *rq); | 177 | void blk_mq_free_request(struct request *rq); |
| 171 | void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *, struct request *rq); | 178 | void blk_mq_free_hctx_request(struct blk_mq_hw_ctx *, struct request *rq); |
| 172 | bool blk_mq_can_queue(struct blk_mq_hw_ctx *); | 179 | bool blk_mq_can_queue(struct blk_mq_hw_ctx *); |
| @@ -214,6 +221,7 @@ void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async); | |||
| 214 | void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs); | 221 | void blk_mq_delay_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs); |
| 215 | void blk_mq_tag_busy_iter(struct blk_mq_hw_ctx *hctx, busy_iter_fn *fn, | 222 | void blk_mq_tag_busy_iter(struct blk_mq_hw_ctx *hctx, busy_iter_fn *fn, |
| 216 | void *priv); | 223 | void *priv); |
| 224 | void blk_mq_freeze_queue(struct request_queue *q); | ||
| 217 | void blk_mq_unfreeze_queue(struct request_queue *q); | 225 | void blk_mq_unfreeze_queue(struct request_queue *q); |
| 218 | void blk_mq_freeze_queue_start(struct request_queue *q); | 226 | void blk_mq_freeze_queue_start(struct request_queue *q); |
| 219 | 227 | ||
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index 92f4b4b288dd..7f9a516f24de 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h | |||
| @@ -272,7 +272,11 @@ struct blk_queue_tag { | |||
| 272 | int max_depth; /* what we will send to device */ | 272 | int max_depth; /* what we will send to device */ |
| 273 | int real_max_depth; /* what the array can hold */ | 273 | int real_max_depth; /* what the array can hold */ |
| 274 | atomic_t refcnt; /* map can be shared */ | 274 | atomic_t refcnt; /* map can be shared */ |
| 275 | int alloc_policy; /* tag allocation policy */ | ||
| 276 | int next_tag; /* next tag */ | ||
| 275 | }; | 277 | }; |
| 278 | #define BLK_TAG_ALLOC_FIFO 0 /* allocate starting from 0 */ | ||
| 279 | #define BLK_TAG_ALLOC_RR 1 /* allocate starting from last allocated tag */ | ||
| 276 | 280 | ||
| 277 | #define BLK_SCSI_MAX_CMDS (256) | 281 | #define BLK_SCSI_MAX_CMDS (256) |
| 278 | #define BLK_SCSI_CMD_PER_LONG (BLK_SCSI_MAX_CMDS / (sizeof(long) * 8)) | 282 | #define BLK_SCSI_CMD_PER_LONG (BLK_SCSI_MAX_CMDS / (sizeof(long) * 8)) |
| @@ -516,6 +520,7 @@ struct request_queue { | |||
| 516 | (1 << QUEUE_FLAG_ADD_RANDOM)) | 520 | (1 << QUEUE_FLAG_ADD_RANDOM)) |
| 517 | 521 | ||
| 518 | #define QUEUE_FLAG_MQ_DEFAULT ((1 << QUEUE_FLAG_IO_STAT) | \ | 522 | #define QUEUE_FLAG_MQ_DEFAULT ((1 << QUEUE_FLAG_IO_STAT) | \ |
| 523 | (1 << QUEUE_FLAG_STACKABLE) | \ | ||
| 519 | (1 << QUEUE_FLAG_SAME_COMP)) | 524 | (1 << QUEUE_FLAG_SAME_COMP)) |
| 520 | 525 | ||
| 521 | static inline void queue_lockdep_assert_held(struct request_queue *q) | 526 | static inline void queue_lockdep_assert_held(struct request_queue *q) |
| @@ -850,8 +855,8 @@ extern int blk_rq_map_user(struct request_queue *, struct request *, | |||
| 850 | extern int blk_rq_unmap_user(struct bio *); | 855 | extern int blk_rq_unmap_user(struct bio *); |
| 851 | extern int blk_rq_map_kern(struct request_queue *, struct request *, void *, unsigned int, gfp_t); | 856 | extern int blk_rq_map_kern(struct request_queue *, struct request *, void *, unsigned int, gfp_t); |
| 852 | extern int blk_rq_map_user_iov(struct request_queue *, struct request *, | 857 | extern int blk_rq_map_user_iov(struct request_queue *, struct request *, |
| 853 | struct rq_map_data *, const struct sg_iovec *, | 858 | struct rq_map_data *, const struct iov_iter *, |
| 854 | int, unsigned int, gfp_t); | 859 | gfp_t); |
| 855 | extern int blk_execute_rq(struct request_queue *, struct gendisk *, | 860 | extern int blk_execute_rq(struct request_queue *, struct gendisk *, |
| 856 | struct request *, int); | 861 | struct request *, int); |
| 857 | extern void blk_execute_rq_nowait(struct request_queue *, struct gendisk *, | 862 | extern void blk_execute_rq_nowait(struct request_queue *, struct gendisk *, |
| @@ -1044,8 +1049,6 @@ extern void blk_queue_flush_queueable(struct request_queue *q, bool queueable); | |||
| 1044 | extern struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev); | 1049 | extern struct backing_dev_info *blk_get_backing_dev_info(struct block_device *bdev); |
| 1045 | 1050 | ||
| 1046 | extern int blk_rq_map_sg(struct request_queue *, struct request *, struct scatterlist *); | 1051 | extern int blk_rq_map_sg(struct request_queue *, struct request *, struct scatterlist *); |
| 1047 | extern int blk_bio_map_sg(struct request_queue *q, struct bio *bio, | ||
| 1048 | struct scatterlist *sglist); | ||
| 1049 | extern void blk_dump_rq_flags(struct request *, char *); | 1052 | extern void blk_dump_rq_flags(struct request *, char *); |
| 1050 | extern long nr_blockdev_pages(void); | 1053 | extern long nr_blockdev_pages(void); |
| 1051 | 1054 | ||
| @@ -1139,11 +1142,11 @@ static inline bool blk_needs_flush_plug(struct task_struct *tsk) | |||
| 1139 | extern int blk_queue_start_tag(struct request_queue *, struct request *); | 1142 | extern int blk_queue_start_tag(struct request_queue *, struct request *); |
| 1140 | extern struct request *blk_queue_find_tag(struct request_queue *, int); | 1143 | extern struct request *blk_queue_find_tag(struct request_queue *, int); |
| 1141 | extern void blk_queue_end_tag(struct request_queue *, struct request *); | 1144 | extern void blk_queue_end_tag(struct request_queue *, struct request *); |
| 1142 | extern int blk_queue_init_tags(struct request_queue *, int, struct blk_queue_tag *); | 1145 | extern int blk_queue_init_tags(struct request_queue *, int, struct blk_queue_tag *, int); |
| 1143 | extern void blk_queue_free_tags(struct request_queue *); | 1146 | extern void blk_queue_free_tags(struct request_queue *); |
| 1144 | extern int blk_queue_resize_tags(struct request_queue *, int); | 1147 | extern int blk_queue_resize_tags(struct request_queue *, int); |
| 1145 | extern void blk_queue_invalidate_tags(struct request_queue *); | 1148 | extern void blk_queue_invalidate_tags(struct request_queue *); |
| 1146 | extern struct blk_queue_tag *blk_init_tags(int); | 1149 | extern struct blk_queue_tag *blk_init_tags(int, int); |
| 1147 | extern void blk_free_tags(struct blk_queue_tag *); | 1150 | extern void blk_free_tags(struct blk_queue_tag *); |
| 1148 | 1151 | ||
| 1149 | static inline struct request *blk_map_queue_find_tag(struct blk_queue_tag *bqt, | 1152 | static inline struct request *blk_map_queue_find_tag(struct blk_queue_tag *bqt, |
| @@ -1162,7 +1165,7 @@ extern int blkdev_issue_discard(struct block_device *bdev, sector_t sector, | |||
| 1162 | extern int blkdev_issue_write_same(struct block_device *bdev, sector_t sector, | 1165 | extern int blkdev_issue_write_same(struct block_device *bdev, sector_t sector, |
| 1163 | sector_t nr_sects, gfp_t gfp_mask, struct page *page); | 1166 | sector_t nr_sects, gfp_t gfp_mask, struct page *page); |
| 1164 | extern int blkdev_issue_zeroout(struct block_device *bdev, sector_t sector, | 1167 | extern int blkdev_issue_zeroout(struct block_device *bdev, sector_t sector, |
| 1165 | sector_t nr_sects, gfp_t gfp_mask); | 1168 | sector_t nr_sects, gfp_t gfp_mask, bool discard); |
| 1166 | static inline int sb_issue_discard(struct super_block *sb, sector_t block, | 1169 | static inline int sb_issue_discard(struct super_block *sb, sector_t block, |
| 1167 | sector_t nr_blocks, gfp_t gfp_mask, unsigned long flags) | 1170 | sector_t nr_blocks, gfp_t gfp_mask, unsigned long flags) |
| 1168 | { | 1171 | { |
| @@ -1176,7 +1179,7 @@ static inline int sb_issue_zeroout(struct super_block *sb, sector_t block, | |||
| 1176 | return blkdev_issue_zeroout(sb->s_bdev, | 1179 | return blkdev_issue_zeroout(sb->s_bdev, |
| 1177 | block << (sb->s_blocksize_bits - 9), | 1180 | block << (sb->s_blocksize_bits - 9), |
| 1178 | nr_blocks << (sb->s_blocksize_bits - 9), | 1181 | nr_blocks << (sb->s_blocksize_bits - 9), |
| 1179 | gfp_mask); | 1182 | gfp_mask, true); |
| 1180 | } | 1183 | } |
| 1181 | 1184 | ||
| 1182 | extern int blk_verify_command(unsigned char *cmd, fmode_t has_write_perm); | 1185 | extern int blk_verify_command(unsigned char *cmd, fmode_t has_write_perm); |
| @@ -1601,8 +1604,8 @@ struct block_device_operations { | |||
| 1601 | int (*rw_page)(struct block_device *, sector_t, struct page *, int rw); | 1604 | int (*rw_page)(struct block_device *, sector_t, struct page *, int rw); |
| 1602 | int (*ioctl) (struct block_device *, fmode_t, unsigned, unsigned long); | 1605 | int (*ioctl) (struct block_device *, fmode_t, unsigned, unsigned long); |
| 1603 | int (*compat_ioctl) (struct block_device *, fmode_t, unsigned, unsigned long); | 1606 | int (*compat_ioctl) (struct block_device *, fmode_t, unsigned, unsigned long); |
| 1604 | int (*direct_access) (struct block_device *, sector_t, | 1607 | long (*direct_access)(struct block_device *, sector_t, |
| 1605 | void **, unsigned long *); | 1608 | void **, unsigned long *pfn, long size); |
| 1606 | unsigned int (*check_events) (struct gendisk *disk, | 1609 | unsigned int (*check_events) (struct gendisk *disk, |
| 1607 | unsigned int clearing); | 1610 | unsigned int clearing); |
| 1608 | /* ->media_changed() is DEPRECATED, use ->check_events() instead */ | 1611 | /* ->media_changed() is DEPRECATED, use ->check_events() instead */ |
| @@ -1620,6 +1623,8 @@ extern int __blkdev_driver_ioctl(struct block_device *, fmode_t, unsigned int, | |||
| 1620 | extern int bdev_read_page(struct block_device *, sector_t, struct page *); | 1623 | extern int bdev_read_page(struct block_device *, sector_t, struct page *); |
| 1621 | extern int bdev_write_page(struct block_device *, sector_t, struct page *, | 1624 | extern int bdev_write_page(struct block_device *, sector_t, struct page *, |
| 1622 | struct writeback_control *); | 1625 | struct writeback_control *); |
| 1626 | extern long bdev_direct_access(struct block_device *, sector_t, void **addr, | ||
| 1627 | unsigned long *pfn, long size); | ||
| 1623 | #else /* CONFIG_BLOCK */ | 1628 | #else /* CONFIG_BLOCK */ |
| 1624 | 1629 | ||
| 1625 | struct block_device; | 1630 | struct block_device; |
diff --git a/include/linux/cdev.h b/include/linux/cdev.h index fb4591977b03..f8763615a5f2 100644 --- a/include/linux/cdev.h +++ b/include/linux/cdev.h | |||
| @@ -30,6 +30,4 @@ void cdev_del(struct cdev *); | |||
| 30 | 30 | ||
| 31 | void cd_forget(struct inode *); | 31 | void cd_forget(struct inode *); |
| 32 | 32 | ||
| 33 | extern struct backing_dev_info directly_mappable_cdev_bdi; | ||
| 34 | |||
| 35 | #endif | 33 | #endif |
diff --git a/include/linux/compaction.h b/include/linux/compaction.h index 3238ffa33f68..a014559e4a49 100644 --- a/include/linux/compaction.h +++ b/include/linux/compaction.h | |||
| @@ -12,6 +12,10 @@ | |||
| 12 | #define COMPACT_PARTIAL 3 | 12 | #define COMPACT_PARTIAL 3 |
| 13 | /* The full zone was compacted */ | 13 | /* The full zone was compacted */ |
| 14 | #define COMPACT_COMPLETE 4 | 14 | #define COMPACT_COMPLETE 4 |
| 15 | /* For more detailed tracepoint output */ | ||
| 16 | #define COMPACT_NO_SUITABLE_PAGE 5 | ||
| 17 | #define COMPACT_NOT_SUITABLE_ZONE 6 | ||
| 18 | /* When adding new state, please change compaction_status_string, too */ | ||
| 15 | 19 | ||
| 16 | /* Used to signal whether compaction detected need_sched() or lock contention */ | 20 | /* Used to signal whether compaction detected need_sched() or lock contention */ |
| 17 | /* No contention detected */ | 21 | /* No contention detected */ |
| @@ -21,6 +25,8 @@ | |||
| 21 | /* Zone lock or lru_lock was contended in async compaction */ | 25 | /* Zone lock or lru_lock was contended in async compaction */ |
| 22 | #define COMPACT_CONTENDED_LOCK 2 | 26 | #define COMPACT_CONTENDED_LOCK 2 |
| 23 | 27 | ||
| 28 | struct alloc_context; /* in mm/internal.h */ | ||
| 29 | |||
| 24 | #ifdef CONFIG_COMPACTION | 30 | #ifdef CONFIG_COMPACTION |
| 25 | extern int sysctl_compact_memory; | 31 | extern int sysctl_compact_memory; |
| 26 | extern int sysctl_compaction_handler(struct ctl_table *table, int write, | 32 | extern int sysctl_compaction_handler(struct ctl_table *table, int write, |
| @@ -30,81 +36,25 @@ extern int sysctl_extfrag_handler(struct ctl_table *table, int write, | |||
| 30 | void __user *buffer, size_t *length, loff_t *ppos); | 36 | void __user *buffer, size_t *length, loff_t *ppos); |
| 31 | 37 | ||
| 32 | extern int fragmentation_index(struct zone *zone, unsigned int order); | 38 | extern int fragmentation_index(struct zone *zone, unsigned int order); |
| 33 | extern unsigned long try_to_compact_pages(struct zonelist *zonelist, | 39 | extern unsigned long try_to_compact_pages(gfp_t gfp_mask, unsigned int order, |
| 34 | int order, gfp_t gfp_mask, nodemask_t *mask, | 40 | int alloc_flags, const struct alloc_context *ac, |
| 35 | enum migrate_mode mode, int *contended, | 41 | enum migrate_mode mode, int *contended); |
| 36 | int alloc_flags, int classzone_idx); | ||
| 37 | extern void compact_pgdat(pg_data_t *pgdat, int order); | 42 | extern void compact_pgdat(pg_data_t *pgdat, int order); |
| 38 | extern void reset_isolation_suitable(pg_data_t *pgdat); | 43 | extern void reset_isolation_suitable(pg_data_t *pgdat); |
| 39 | extern unsigned long compaction_suitable(struct zone *zone, int order, | 44 | extern unsigned long compaction_suitable(struct zone *zone, int order, |
| 40 | int alloc_flags, int classzone_idx); | 45 | int alloc_flags, int classzone_idx); |
| 41 | 46 | ||
| 42 | /* Do not skip compaction more than 64 times */ | 47 | extern void defer_compaction(struct zone *zone, int order); |
| 43 | #define COMPACT_MAX_DEFER_SHIFT 6 | 48 | extern bool compaction_deferred(struct zone *zone, int order); |
| 44 | 49 | extern void compaction_defer_reset(struct zone *zone, int order, | |
| 45 | /* | 50 | bool alloc_success); |
| 46 | * Compaction is deferred when compaction fails to result in a page | 51 | extern bool compaction_restarting(struct zone *zone, int order); |
| 47 | * allocation success. 1 << compact_defer_limit compactions are skipped up | ||
| 48 | * to a limit of 1 << COMPACT_MAX_DEFER_SHIFT | ||
| 49 | */ | ||
| 50 | static inline void defer_compaction(struct zone *zone, int order) | ||
| 51 | { | ||
| 52 | zone->compact_considered = 0; | ||
| 53 | zone->compact_defer_shift++; | ||
| 54 | |||
| 55 | if (order < zone->compact_order_failed) | ||
| 56 | zone->compact_order_failed = order; | ||
| 57 | |||
| 58 | if (zone->compact_defer_shift > COMPACT_MAX_DEFER_SHIFT) | ||
| 59 | zone->compact_defer_shift = COMPACT_MAX_DEFER_SHIFT; | ||
| 60 | } | ||
| 61 | |||
| 62 | /* Returns true if compaction should be skipped this time */ | ||
| 63 | static inline bool compaction_deferred(struct zone *zone, int order) | ||
| 64 | { | ||
| 65 | unsigned long defer_limit = 1UL << zone->compact_defer_shift; | ||
| 66 | |||
| 67 | if (order < zone->compact_order_failed) | ||
| 68 | return false; | ||
| 69 | |||
| 70 | /* Avoid possible overflow */ | ||
| 71 | if (++zone->compact_considered > defer_limit) | ||
| 72 | zone->compact_considered = defer_limit; | ||
| 73 | |||
| 74 | return zone->compact_considered < defer_limit; | ||
| 75 | } | ||
| 76 | |||
| 77 | /* | ||
| 78 | * Update defer tracking counters after successful compaction of given order, | ||
| 79 | * which means an allocation either succeeded (alloc_success == true) or is | ||
| 80 | * expected to succeed. | ||
| 81 | */ | ||
| 82 | static inline void compaction_defer_reset(struct zone *zone, int order, | ||
| 83 | bool alloc_success) | ||
| 84 | { | ||
| 85 | if (alloc_success) { | ||
| 86 | zone->compact_considered = 0; | ||
| 87 | zone->compact_defer_shift = 0; | ||
| 88 | } | ||
| 89 | if (order >= zone->compact_order_failed) | ||
| 90 | zone->compact_order_failed = order + 1; | ||
| 91 | } | ||
| 92 | |||
| 93 | /* Returns true if restarting compaction after many failures */ | ||
| 94 | static inline bool compaction_restarting(struct zone *zone, int order) | ||
| 95 | { | ||
| 96 | if (order < zone->compact_order_failed) | ||
| 97 | return false; | ||
| 98 | |||
| 99 | return zone->compact_defer_shift == COMPACT_MAX_DEFER_SHIFT && | ||
| 100 | zone->compact_considered >= 1UL << zone->compact_defer_shift; | ||
| 101 | } | ||
| 102 | 52 | ||
| 103 | #else | 53 | #else |
| 104 | static inline unsigned long try_to_compact_pages(struct zonelist *zonelist, | 54 | static inline unsigned long try_to_compact_pages(gfp_t gfp_mask, |
| 105 | int order, gfp_t gfp_mask, nodemask_t *nodemask, | 55 | unsigned int order, int alloc_flags, |
| 106 | enum migrate_mode mode, int *contended, | 56 | const struct alloc_context *ac, |
| 107 | int alloc_flags, int classzone_idx) | 57 | enum migrate_mode mode, int *contended) |
| 108 | { | 58 | { |
| 109 | return COMPACT_CONTINUE; | 59 | return COMPACT_CONTINUE; |
| 110 | } | 60 | } |
diff --git a/include/linux/compat.h b/include/linux/compat.h index 7450ca2ac1fc..ab25814690bc 100644 --- a/include/linux/compat.h +++ b/include/linux/compat.h | |||
| @@ -689,6 +689,15 @@ asmlinkage long compat_sys_sendfile64(int out_fd, int in_fd, | |||
| 689 | asmlinkage long compat_sys_sigaltstack(const compat_stack_t __user *uss_ptr, | 689 | asmlinkage long compat_sys_sigaltstack(const compat_stack_t __user *uss_ptr, |
| 690 | compat_stack_t __user *uoss_ptr); | 690 | compat_stack_t __user *uoss_ptr); |
| 691 | 691 | ||
| 692 | #ifdef __ARCH_WANT_SYS_SIGPENDING | ||
| 693 | asmlinkage long compat_sys_sigpending(compat_old_sigset_t __user *set); | ||
| 694 | #endif | ||
| 695 | |||
| 696 | #ifdef __ARCH_WANT_SYS_SIGPROCMASK | ||
| 697 | asmlinkage long compat_sys_sigprocmask(int how, compat_old_sigset_t __user *nset, | ||
| 698 | compat_old_sigset_t __user *oset); | ||
| 699 | #endif | ||
| 700 | |||
| 692 | int compat_restore_altstack(const compat_stack_t __user *uss); | 701 | int compat_restore_altstack(const compat_stack_t __user *uss); |
| 693 | int __compat_save_altstack(compat_stack_t __user *, unsigned long); | 702 | int __compat_save_altstack(compat_stack_t __user *, unsigned long); |
| 694 | #define compat_save_altstack_ex(uss, sp) do { \ | 703 | #define compat_save_altstack_ex(uss, sp) do { \ |
diff --git a/include/linux/compiler-gcc.h b/include/linux/compiler-gcc.h index 02ae99e8e6d3..cdf13ca7cac3 100644 --- a/include/linux/compiler-gcc.h +++ b/include/linux/compiler-gcc.h | |||
| @@ -66,6 +66,7 @@ | |||
| 66 | #define __deprecated __attribute__((deprecated)) | 66 | #define __deprecated __attribute__((deprecated)) |
| 67 | #define __packed __attribute__((packed)) | 67 | #define __packed __attribute__((packed)) |
| 68 | #define __weak __attribute__((weak)) | 68 | #define __weak __attribute__((weak)) |
| 69 | #define __alias(symbol) __attribute__((alias(#symbol))) | ||
| 69 | 70 | ||
| 70 | /* | 71 | /* |
| 71 | * it doesn't make sense on ARM (currently the only user of __naked) to trace | 72 | * it doesn't make sense on ARM (currently the only user of __naked) to trace |
diff --git a/include/linux/compiler-gcc4.h b/include/linux/compiler-gcc4.h index d1a558239b1a..769e19864632 100644 --- a/include/linux/compiler-gcc4.h +++ b/include/linux/compiler-gcc4.h | |||
| @@ -85,3 +85,7 @@ | |||
| 85 | #define __HAVE_BUILTIN_BSWAP16__ | 85 | #define __HAVE_BUILTIN_BSWAP16__ |
| 86 | #endif | 86 | #endif |
| 87 | #endif /* CONFIG_ARCH_USE_BUILTIN_BSWAP */ | 87 | #endif /* CONFIG_ARCH_USE_BUILTIN_BSWAP */ |
| 88 | |||
| 89 | #if GCC_VERSION >= 40902 | ||
| 90 | #define KASAN_ABI_VERSION 3 | ||
| 91 | #endif | ||
diff --git a/include/linux/compiler-gcc5.h b/include/linux/compiler-gcc5.h index c8c565952548..efee493714eb 100644 --- a/include/linux/compiler-gcc5.h +++ b/include/linux/compiler-gcc5.h | |||
| @@ -63,3 +63,5 @@ | |||
| 63 | #define __HAVE_BUILTIN_BSWAP64__ | 63 | #define __HAVE_BUILTIN_BSWAP64__ |
| 64 | #define __HAVE_BUILTIN_BSWAP16__ | 64 | #define __HAVE_BUILTIN_BSWAP16__ |
| 65 | #endif /* CONFIG_ARCH_USE_BUILTIN_BSWAP */ | 65 | #endif /* CONFIG_ARCH_USE_BUILTIN_BSWAP */ |
| 66 | |||
| 67 | #define KASAN_ABI_VERSION 4 | ||
diff --git a/include/linux/compiler.h b/include/linux/compiler.h index 176bf816875e..d1ec10a940ff 100644 --- a/include/linux/compiler.h +++ b/include/linux/compiler.h | |||
| @@ -54,7 +54,11 @@ extern void __chk_io_ptr(const volatile void __iomem *); | |||
| 54 | #include <linux/compiler-gcc.h> | 54 | #include <linux/compiler-gcc.h> |
| 55 | #endif | 55 | #endif |
| 56 | 56 | ||
| 57 | #ifdef CC_USING_HOTPATCH | ||
| 58 | #define notrace __attribute__((hotpatch(0,0))) | ||
| 59 | #else | ||
| 57 | #define notrace __attribute__((no_instrument_function)) | 60 | #define notrace __attribute__((no_instrument_function)) |
| 61 | #endif | ||
| 58 | 62 | ||
| 59 | /* Intel compiler defines __GNUC__. So we will overwrite implementations | 63 | /* Intel compiler defines __GNUC__. So we will overwrite implementations |
| 60 | * coming from above header files here | 64 | * coming from above header files here |
| @@ -447,12 +451,23 @@ static __always_inline void __write_once_size(volatile void *p, void *res, int s | |||
| 447 | * to make the compiler aware of ordering is to put the two invocations of | 451 | * to make the compiler aware of ordering is to put the two invocations of |
| 448 | * ACCESS_ONCE() in different C statements. | 452 | * ACCESS_ONCE() in different C statements. |
| 449 | * | 453 | * |
| 450 | * This macro does absolutely -nothing- to prevent the CPU from reordering, | 454 | * ACCESS_ONCE will only work on scalar types. For union types, ACCESS_ONCE |
| 451 | * merging, or refetching absolutely anything at any time. Its main intended | 455 | * on a union member will work as long as the size of the member matches the |
| 452 | * use is to mediate communication between process-level code and irq/NMI | 456 | * size of the union and the size is smaller than word size. |
| 453 | * handlers, all running on the same CPU. | 457 | * |
| 458 | * The major use cases of ACCESS_ONCE used to be (1) Mediating communication | ||
| 459 | * between process-level code and irq/NMI handlers, all running on the same CPU, | ||
| 460 | * and (2) Ensuring that the compiler does not fold, spindle, or otherwise | ||
| 461 | * mutilate accesses that either do not require ordering or that interact | ||
| 462 | * with an explicit memory barrier or atomic instruction that provides the | ||
| 463 | * required ordering. | ||
| 464 | * | ||
| 465 | * If possible use READ_ONCE/ASSIGN_ONCE instead. | ||
| 454 | */ | 466 | */ |
| 455 | #define ACCESS_ONCE(x) (*(volatile typeof(x) *)&(x)) | 467 | #define __ACCESS_ONCE(x) ({ \ |
| 468 | __maybe_unused typeof(x) __var = (__force typeof(x)) 0; \ | ||
| 469 | (volatile typeof(x) *)&(x); }) | ||
| 470 | #define ACCESS_ONCE(x) (*__ACCESS_ONCE(x)) | ||
| 456 | 471 | ||
| 457 | /* Ignore/forbid kprobes attach on very low level functions marked by this attribute: */ | 472 | /* Ignore/forbid kprobes attach on very low level functions marked by this attribute: */ |
| 458 | #ifdef CONFIG_KPROBES | 473 | #ifdef CONFIG_KPROBES |
diff --git a/include/linux/coresight.h b/include/linux/coresight.h index 5d3c54311f7a..3486b9082adb 100644 --- a/include/linux/coresight.h +++ b/include/linux/coresight.h | |||
| @@ -179,15 +179,6 @@ struct coresight_device { | |||
| 179 | #define sink_ops(csdev) csdev->ops->sink_ops | 179 | #define sink_ops(csdev) csdev->ops->sink_ops |
| 180 | #define link_ops(csdev) csdev->ops->link_ops | 180 | #define link_ops(csdev) csdev->ops->link_ops |
| 181 | 181 | ||
| 182 | #define CORESIGHT_DEBUGFS_ENTRY(__name, __entry_name, \ | ||
| 183 | __mode, __get, __set, __fmt) \ | ||
| 184 | DEFINE_SIMPLE_ATTRIBUTE(__name ## _ops, __get, __set, __fmt); \ | ||
| 185 | static const struct coresight_ops_entry __name ## _entry = { \ | ||
| 186 | .name = __entry_name, \ | ||
| 187 | .mode = __mode, \ | ||
| 188 | .ops = &__name ## _ops \ | ||
| 189 | } | ||
| 190 | |||
| 191 | /** | 182 | /** |
| 192 | * struct coresight_ops_sink - basic operations for a sink | 183 | * struct coresight_ops_sink - basic operations for a sink |
| 193 | * Operations available for sinks | 184 | * Operations available for sinks |
| @@ -236,13 +227,8 @@ coresight_register(struct coresight_desc *desc); | |||
| 236 | extern void coresight_unregister(struct coresight_device *csdev); | 227 | extern void coresight_unregister(struct coresight_device *csdev); |
| 237 | extern int coresight_enable(struct coresight_device *csdev); | 228 | extern int coresight_enable(struct coresight_device *csdev); |
| 238 | extern void coresight_disable(struct coresight_device *csdev); | 229 | extern void coresight_disable(struct coresight_device *csdev); |
| 239 | extern int coresight_is_bit_set(u32 val, int position, int value); | ||
| 240 | extern int coresight_timeout(void __iomem *addr, u32 offset, | 230 | extern int coresight_timeout(void __iomem *addr, u32 offset, |
| 241 | int position, int value); | 231 | int position, int value); |
| 242 | #ifdef CONFIG_OF | ||
| 243 | extern struct coresight_platform_data *of_get_coresight_platform_data( | ||
| 244 | struct device *dev, struct device_node *node); | ||
| 245 | #endif | ||
| 246 | #else | 232 | #else |
| 247 | static inline struct coresight_device * | 233 | static inline struct coresight_device * |
| 248 | coresight_register(struct coresight_desc *desc) { return NULL; } | 234 | coresight_register(struct coresight_desc *desc) { return NULL; } |
| @@ -250,14 +236,16 @@ static inline void coresight_unregister(struct coresight_device *csdev) {} | |||
| 250 | static inline int | 236 | static inline int |
| 251 | coresight_enable(struct coresight_device *csdev) { return -ENOSYS; } | 237 | coresight_enable(struct coresight_device *csdev) { return -ENOSYS; } |
| 252 | static inline void coresight_disable(struct coresight_device *csdev) {} | 238 | static inline void coresight_disable(struct coresight_device *csdev) {} |
| 253 | static inline int coresight_is_bit_set(u32 val, int position, int value) | ||
| 254 | { return 0; } | ||
| 255 | static inline int coresight_timeout(void __iomem *addr, u32 offset, | 239 | static inline int coresight_timeout(void __iomem *addr, u32 offset, |
| 256 | int position, int value) { return 1; } | 240 | int position, int value) { return 1; } |
| 241 | #endif | ||
| 242 | |||
| 257 | #ifdef CONFIG_OF | 243 | #ifdef CONFIG_OF |
| 244 | extern struct coresight_platform_data *of_get_coresight_platform_data( | ||
| 245 | struct device *dev, struct device_node *node); | ||
| 246 | #else | ||
| 258 | static inline struct coresight_platform_data *of_get_coresight_platform_data( | 247 | static inline struct coresight_platform_data *of_get_coresight_platform_data( |
| 259 | struct device *dev, struct device_node *node) { return NULL; } | 248 | struct device *dev, struct device_node *node) { return NULL; } |
| 260 | #endif | 249 | #endif |
| 261 | #endif | ||
| 262 | 250 | ||
| 263 | #endif | 251 | #endif |
diff --git a/include/linux/cpuidle.h b/include/linux/cpuidle.h index ab70f3bc44ad..f551a9299ac9 100644 --- a/include/linux/cpuidle.h +++ b/include/linux/cpuidle.h | |||
| @@ -50,6 +50,15 @@ struct cpuidle_state { | |||
| 50 | int index); | 50 | int index); |
| 51 | 51 | ||
| 52 | int (*enter_dead) (struct cpuidle_device *dev, int index); | 52 | int (*enter_dead) (struct cpuidle_device *dev, int index); |
| 53 | |||
| 54 | /* | ||
| 55 | * CPUs execute ->enter_freeze with the local tick or entire timekeeping | ||
| 56 | * suspended, so it must not re-enable interrupts at any point (even | ||
| 57 | * temporarily) or attempt to change states of clock event devices. | ||
| 58 | */ | ||
| 59 | void (*enter_freeze) (struct cpuidle_device *dev, | ||
| 60 | struct cpuidle_driver *drv, | ||
| 61 | int index); | ||
| 53 | }; | 62 | }; |
| 54 | 63 | ||
| 55 | /* Idle State Flags */ | 64 | /* Idle State Flags */ |
| @@ -141,7 +150,7 @@ extern void cpuidle_resume(void); | |||
| 141 | extern int cpuidle_enable_device(struct cpuidle_device *dev); | 150 | extern int cpuidle_enable_device(struct cpuidle_device *dev); |
| 142 | extern void cpuidle_disable_device(struct cpuidle_device *dev); | 151 | extern void cpuidle_disable_device(struct cpuidle_device *dev); |
| 143 | extern int cpuidle_play_dead(void); | 152 | extern int cpuidle_play_dead(void); |
| 144 | extern void cpuidle_use_deepest_state(bool enable); | 153 | extern void cpuidle_enter_freeze(void); |
| 145 | 154 | ||
| 146 | extern struct cpuidle_driver *cpuidle_get_cpu_driver(struct cpuidle_device *dev); | 155 | extern struct cpuidle_driver *cpuidle_get_cpu_driver(struct cpuidle_device *dev); |
| 147 | #else | 156 | #else |
| @@ -174,7 +183,7 @@ static inline int cpuidle_enable_device(struct cpuidle_device *dev) | |||
| 174 | {return -ENODEV; } | 183 | {return -ENODEV; } |
| 175 | static inline void cpuidle_disable_device(struct cpuidle_device *dev) { } | 184 | static inline void cpuidle_disable_device(struct cpuidle_device *dev) { } |
| 176 | static inline int cpuidle_play_dead(void) {return -ENODEV; } | 185 | static inline int cpuidle_play_dead(void) {return -ENODEV; } |
| 177 | static inline void cpuidle_use_deepest_state(bool enable) {} | 186 | static inline void cpuidle_enter_freeze(void) { } |
| 178 | static inline struct cpuidle_driver *cpuidle_get_cpu_driver( | 187 | static inline struct cpuidle_driver *cpuidle_get_cpu_driver( |
| 179 | struct cpuidle_device *dev) {return NULL; } | 188 | struct cpuidle_device *dev) {return NULL; } |
| 180 | #endif | 189 | #endif |
diff --git a/include/linux/cpumask.h b/include/linux/cpumask.h index b950e9d6008b..086549a665e2 100644 --- a/include/linux/cpumask.h +++ b/include/linux/cpumask.h | |||
| @@ -22,6 +22,14 @@ typedef struct cpumask { DECLARE_BITMAP(bits, NR_CPUS); } cpumask_t; | |||
| 22 | */ | 22 | */ |
| 23 | #define cpumask_bits(maskp) ((maskp)->bits) | 23 | #define cpumask_bits(maskp) ((maskp)->bits) |
| 24 | 24 | ||
| 25 | /** | ||
| 26 | * cpumask_pr_args - printf args to output a cpumask | ||
| 27 | * @maskp: cpumask to be printed | ||
| 28 | * | ||
| 29 | * Can be used to provide arguments for '%*pb[l]' when printing a cpumask. | ||
| 30 | */ | ||
| 31 | #define cpumask_pr_args(maskp) nr_cpu_ids, cpumask_bits(maskp) | ||
| 32 | |||
| 25 | #if NR_CPUS == 1 | 33 | #if NR_CPUS == 1 |
| 26 | #define nr_cpu_ids 1 | 34 | #define nr_cpu_ids 1 |
| 27 | #else | 35 | #else |
| @@ -539,21 +547,6 @@ static inline void cpumask_copy(struct cpumask *dstp, | |||
| 539 | #define cpumask_of(cpu) (get_cpu_mask(cpu)) | 547 | #define cpumask_of(cpu) (get_cpu_mask(cpu)) |
| 540 | 548 | ||
| 541 | /** | 549 | /** |
| 542 | * cpumask_scnprintf - print a cpumask into a string as comma-separated hex | ||
| 543 | * @buf: the buffer to sprintf into | ||
| 544 | * @len: the length of the buffer | ||
| 545 | * @srcp: the cpumask to print | ||
| 546 | * | ||
| 547 | * If len is zero, returns zero. Otherwise returns the length of the | ||
| 548 | * (nul-terminated) @buf string. | ||
| 549 | */ | ||
| 550 | static inline int cpumask_scnprintf(char *buf, int len, | ||
| 551 | const struct cpumask *srcp) | ||
| 552 | { | ||
| 553 | return bitmap_scnprintf(buf, len, cpumask_bits(srcp), nr_cpumask_bits); | ||
| 554 | } | ||
| 555 | |||
| 556 | /** | ||
| 557 | * cpumask_parse_user - extract a cpumask from a user string | 550 | * cpumask_parse_user - extract a cpumask from a user string |
| 558 | * @buf: the buffer to extract from | 551 | * @buf: the buffer to extract from |
| 559 | * @len: the length of the buffer | 552 | * @len: the length of the buffer |
| @@ -564,7 +557,7 @@ static inline int cpumask_scnprintf(char *buf, int len, | |||
| 564 | static inline int cpumask_parse_user(const char __user *buf, int len, | 557 | static inline int cpumask_parse_user(const char __user *buf, int len, |
| 565 | struct cpumask *dstp) | 558 | struct cpumask *dstp) |
| 566 | { | 559 | { |
| 567 | return bitmap_parse_user(buf, len, cpumask_bits(dstp), nr_cpumask_bits); | 560 | return bitmap_parse_user(buf, len, cpumask_bits(dstp), nr_cpu_ids); |
| 568 | } | 561 | } |
| 569 | 562 | ||
| 570 | /** | 563 | /** |
| @@ -579,23 +572,7 @@ static inline int cpumask_parselist_user(const char __user *buf, int len, | |||
| 579 | struct cpumask *dstp) | 572 | struct cpumask *dstp) |
| 580 | { | 573 | { |
| 581 | return bitmap_parselist_user(buf, len, cpumask_bits(dstp), | 574 | return bitmap_parselist_user(buf, len, cpumask_bits(dstp), |
| 582 | nr_cpumask_bits); | 575 | nr_cpu_ids); |
| 583 | } | ||
| 584 | |||
| 585 | /** | ||
| 586 | * cpulist_scnprintf - print a cpumask into a string as comma-separated list | ||
| 587 | * @buf: the buffer to sprintf into | ||
| 588 | * @len: the length of the buffer | ||
| 589 | * @srcp: the cpumask to print | ||
| 590 | * | ||
| 591 | * If len is zero, returns zero. Otherwise returns the length of the | ||
| 592 | * (nul-terminated) @buf string. | ||
| 593 | */ | ||
| 594 | static inline int cpulist_scnprintf(char *buf, int len, | ||
| 595 | const struct cpumask *srcp) | ||
| 596 | { | ||
| 597 | return bitmap_scnlistprintf(buf, len, cpumask_bits(srcp), | ||
| 598 | nr_cpumask_bits); | ||
| 599 | } | 576 | } |
| 600 | 577 | ||
| 601 | /** | 578 | /** |
| @@ -610,7 +587,7 @@ static inline int cpumask_parse(const char *buf, struct cpumask *dstp) | |||
| 610 | char *nl = strchr(buf, '\n'); | 587 | char *nl = strchr(buf, '\n'); |
| 611 | unsigned int len = nl ? (unsigned int)(nl - buf) : strlen(buf); | 588 | unsigned int len = nl ? (unsigned int)(nl - buf) : strlen(buf); |
| 612 | 589 | ||
| 613 | return bitmap_parse(buf, len, cpumask_bits(dstp), nr_cpumask_bits); | 590 | return bitmap_parse(buf, len, cpumask_bits(dstp), nr_cpu_ids); |
| 614 | } | 591 | } |
| 615 | 592 | ||
| 616 | /** | 593 | /** |
| @@ -622,7 +599,7 @@ static inline int cpumask_parse(const char *buf, struct cpumask *dstp) | |||
| 622 | */ | 599 | */ |
| 623 | static inline int cpulist_parse(const char *buf, struct cpumask *dstp) | 600 | static inline int cpulist_parse(const char *buf, struct cpumask *dstp) |
| 624 | { | 601 | { |
| 625 | return bitmap_parselist(buf, cpumask_bits(dstp), nr_cpumask_bits); | 602 | return bitmap_parselist(buf, cpumask_bits(dstp), nr_cpu_ids); |
| 626 | } | 603 | } |
| 627 | 604 | ||
| 628 | /** | 605 | /** |
| @@ -817,7 +794,7 @@ static inline ssize_t | |||
| 817 | cpumap_print_to_pagebuf(bool list, char *buf, const struct cpumask *mask) | 794 | cpumap_print_to_pagebuf(bool list, char *buf, const struct cpumask *mask) |
| 818 | { | 795 | { |
| 819 | return bitmap_print_to_pagebuf(list, buf, cpumask_bits(mask), | 796 | return bitmap_print_to_pagebuf(list, buf, cpumask_bits(mask), |
| 820 | nr_cpumask_bits); | 797 | nr_cpu_ids); |
| 821 | } | 798 | } |
| 822 | 799 | ||
| 823 | /* | 800 | /* |
| @@ -905,13 +882,13 @@ static inline void __cpu_clear(int cpu, volatile cpumask_t *dstp) | |||
| 905 | } | 882 | } |
| 906 | 883 | ||
| 907 | #define cpus_setall(dst) __cpus_setall(&(dst), NR_CPUS) | 884 | #define cpus_setall(dst) __cpus_setall(&(dst), NR_CPUS) |
| 908 | static inline void __cpus_setall(cpumask_t *dstp, int nbits) | 885 | static inline void __cpus_setall(cpumask_t *dstp, unsigned int nbits) |
| 909 | { | 886 | { |
| 910 | bitmap_fill(dstp->bits, nbits); | 887 | bitmap_fill(dstp->bits, nbits); |
| 911 | } | 888 | } |
| 912 | 889 | ||
| 913 | #define cpus_clear(dst) __cpus_clear(&(dst), NR_CPUS) | 890 | #define cpus_clear(dst) __cpus_clear(&(dst), NR_CPUS) |
| 914 | static inline void __cpus_clear(cpumask_t *dstp, int nbits) | 891 | static inline void __cpus_clear(cpumask_t *dstp, unsigned int nbits) |
| 915 | { | 892 | { |
| 916 | bitmap_zero(dstp->bits, nbits); | 893 | bitmap_zero(dstp->bits, nbits); |
| 917 | } | 894 | } |
| @@ -927,21 +904,21 @@ static inline int __cpu_test_and_set(int cpu, cpumask_t *addr) | |||
| 927 | 904 | ||
| 928 | #define cpus_and(dst, src1, src2) __cpus_and(&(dst), &(src1), &(src2), NR_CPUS) | 905 | #define cpus_and(dst, src1, src2) __cpus_and(&(dst), &(src1), &(src2), NR_CPUS) |
| 929 | static inline int __cpus_and(cpumask_t *dstp, const cpumask_t *src1p, | 906 | static inline int __cpus_and(cpumask_t *dstp, const cpumask_t *src1p, |
| 930 | const cpumask_t *src2p, int nbits) | 907 | const cpumask_t *src2p, unsigned int nbits) |
| 931 | { | 908 | { |
| 932 | return bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits); | 909 | return bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits); |
| 933 | } | 910 | } |
| 934 | 911 | ||
| 935 | #define cpus_or(dst, src1, src2) __cpus_or(&(dst), &(src1), &(src2), NR_CPUS) | 912 | #define cpus_or(dst, src1, src2) __cpus_or(&(dst), &(src1), &(src2), NR_CPUS) |
| 936 | static inline void __cpus_or(cpumask_t *dstp, const cpumask_t *src1p, | 913 | static inline void __cpus_or(cpumask_t *dstp, const cpumask_t *src1p, |
| 937 | const cpumask_t *src2p, int nbits) | 914 | const cpumask_t *src2p, unsigned int nbits) |
| 938 | { | 915 | { |
| 939 | bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits); | 916 | bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits); |
| 940 | } | 917 | } |
| 941 | 918 | ||
| 942 | #define cpus_xor(dst, src1, src2) __cpus_xor(&(dst), &(src1), &(src2), NR_CPUS) | 919 | #define cpus_xor(dst, src1, src2) __cpus_xor(&(dst), &(src1), &(src2), NR_CPUS) |
| 943 | static inline void __cpus_xor(cpumask_t *dstp, const cpumask_t *src1p, | 920 | static inline void __cpus_xor(cpumask_t *dstp, const cpumask_t *src1p, |
| 944 | const cpumask_t *src2p, int nbits) | 921 | const cpumask_t *src2p, unsigned int nbits) |
| 945 | { | 922 | { |
| 946 | bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits); | 923 | bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits); |
| 947 | } | 924 | } |
| @@ -949,40 +926,40 @@ static inline void __cpus_xor(cpumask_t *dstp, const cpumask_t *src1p, | |||
| 949 | #define cpus_andnot(dst, src1, src2) \ | 926 | #define cpus_andnot(dst, src1, src2) \ |
| 950 | __cpus_andnot(&(dst), &(src1), &(src2), NR_CPUS) | 927 | __cpus_andnot(&(dst), &(src1), &(src2), NR_CPUS) |
| 951 | static inline int __cpus_andnot(cpumask_t *dstp, const cpumask_t *src1p, | 928 | static inline int __cpus_andnot(cpumask_t *dstp, const cpumask_t *src1p, |
| 952 | const cpumask_t *src2p, int nbits) | 929 | const cpumask_t *src2p, unsigned int nbits) |
| 953 | { | 930 | { |
| 954 | return bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits); | 931 | return bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits); |
| 955 | } | 932 | } |
| 956 | 933 | ||
| 957 | #define cpus_equal(src1, src2) __cpus_equal(&(src1), &(src2), NR_CPUS) | 934 | #define cpus_equal(src1, src2) __cpus_equal(&(src1), &(src2), NR_CPUS) |
| 958 | static inline int __cpus_equal(const cpumask_t *src1p, | 935 | static inline int __cpus_equal(const cpumask_t *src1p, |
| 959 | const cpumask_t *src2p, int nbits) | 936 | const cpumask_t *src2p, unsigned int nbits) |
| 960 | { | 937 | { |
| 961 | return bitmap_equal(src1p->bits, src2p->bits, nbits); | 938 | return bitmap_equal(src1p->bits, src2p->bits, nbits); |
| 962 | } | 939 | } |
| 963 | 940 | ||
| 964 | #define cpus_intersects(src1, src2) __cpus_intersects(&(src1), &(src2), NR_CPUS) | 941 | #define cpus_intersects(src1, src2) __cpus_intersects(&(src1), &(src2), NR_CPUS) |
| 965 | static inline int __cpus_intersects(const cpumask_t *src1p, | 942 | static inline int __cpus_intersects(const cpumask_t *src1p, |
| 966 | const cpumask_t *src2p, int nbits) | 943 | const cpumask_t *src2p, unsigned int nbits) |
| 967 | { | 944 | { |
| 968 | return bitmap_intersects(src1p->bits, src2p->bits, nbits); | 945 | return bitmap_intersects(src1p->bits, src2p->bits, nbits); |
| 969 | } | 946 | } |
| 970 | 947 | ||
| 971 | #define cpus_subset(src1, src2) __cpus_subset(&(src1), &(src2), NR_CPUS) | 948 | #define cpus_subset(src1, src2) __cpus_subset(&(src1), &(src2), NR_CPUS) |
| 972 | static inline int __cpus_subset(const cpumask_t *src1p, | 949 | static inline int __cpus_subset(const cpumask_t *src1p, |
| 973 | const cpumask_t *src2p, int nbits) | 950 | const cpumask_t *src2p, unsigned int nbits) |
| 974 | { | 951 | { |
| 975 | return bitmap_subset(src1p->bits, src2p->bits, nbits); | 952 | return bitmap_subset(src1p->bits, src2p->bits, nbits); |
| 976 | } | 953 | } |
| 977 | 954 | ||
| 978 | #define cpus_empty(src) __cpus_empty(&(src), NR_CPUS) | 955 | #define cpus_empty(src) __cpus_empty(&(src), NR_CPUS) |
| 979 | static inline int __cpus_empty(const cpumask_t *srcp, int nbits) | 956 | static inline int __cpus_empty(const cpumask_t *srcp, unsigned int nbits) |
| 980 | { | 957 | { |
| 981 | return bitmap_empty(srcp->bits, nbits); | 958 | return bitmap_empty(srcp->bits, nbits); |
| 982 | } | 959 | } |
| 983 | 960 | ||
| 984 | #define cpus_weight(cpumask) __cpus_weight(&(cpumask), NR_CPUS) | 961 | #define cpus_weight(cpumask) __cpus_weight(&(cpumask), NR_CPUS) |
| 985 | static inline int __cpus_weight(const cpumask_t *srcp, int nbits) | 962 | static inline int __cpus_weight(const cpumask_t *srcp, unsigned int nbits) |
| 986 | { | 963 | { |
| 987 | return bitmap_weight(srcp->bits, nbits); | 964 | return bitmap_weight(srcp->bits, nbits); |
| 988 | } | 965 | } |
diff --git a/include/linux/crypto.h b/include/linux/crypto.h index 9c8776d0ada8..fb5ef16d6a12 100644 --- a/include/linux/crypto.h +++ b/include/linux/crypto.h | |||
| @@ -1147,7 +1147,7 @@ static inline void ablkcipher_request_free(struct ablkcipher_request *req) | |||
| 1147 | * cipher operation completes. | 1147 | * cipher operation completes. |
| 1148 | * | 1148 | * |
| 1149 | * The callback function is registered with the ablkcipher_request handle and | 1149 | * The callback function is registered with the ablkcipher_request handle and |
| 1150 | * must comply with the following template: | 1150 | * must comply with the following template |
| 1151 | * | 1151 | * |
| 1152 | * void callback_function(struct crypto_async_request *req, int error) | 1152 | * void callback_function(struct crypto_async_request *req, int error) |
| 1153 | */ | 1153 | */ |
| @@ -1174,7 +1174,7 @@ static inline void ablkcipher_request_set_callback( | |||
| 1174 | * | 1174 | * |
| 1175 | * For encryption, the source is treated as the plaintext and the | 1175 | * For encryption, the source is treated as the plaintext and the |
| 1176 | * destination is the ciphertext. For a decryption operation, the use is | 1176 | * destination is the ciphertext. For a decryption operation, the use is |
| 1177 | * reversed: the source is the ciphertext and the destination is the plaintext. | 1177 | * reversed - the source is the ciphertext and the destination is the plaintext. |
| 1178 | */ | 1178 | */ |
| 1179 | static inline void ablkcipher_request_set_crypt( | 1179 | static inline void ablkcipher_request_set_crypt( |
| 1180 | struct ablkcipher_request *req, | 1180 | struct ablkcipher_request *req, |
| @@ -1412,6 +1412,9 @@ static inline int crypto_aead_encrypt(struct aead_request *req) | |||
| 1412 | */ | 1412 | */ |
| 1413 | static inline int crypto_aead_decrypt(struct aead_request *req) | 1413 | static inline int crypto_aead_decrypt(struct aead_request *req) |
| 1414 | { | 1414 | { |
| 1415 | if (req->cryptlen < crypto_aead_authsize(crypto_aead_reqtfm(req))) | ||
| 1416 | return -EINVAL; | ||
| 1417 | |||
| 1415 | return crypto_aead_crt(crypto_aead_reqtfm(req))->decrypt(req); | 1418 | return crypto_aead_crt(crypto_aead_reqtfm(req))->decrypt(req); |
| 1416 | } | 1419 | } |
| 1417 | 1420 | ||
| @@ -1506,7 +1509,7 @@ static inline void aead_request_free(struct aead_request *req) | |||
| 1506 | * completes | 1509 | * completes |
| 1507 | * | 1510 | * |
| 1508 | * The callback function is registered with the aead_request handle and | 1511 | * The callback function is registered with the aead_request handle and |
| 1509 | * must comply with the following template: | 1512 | * must comply with the following template |
| 1510 | * | 1513 | * |
| 1511 | * void callback_function(struct crypto_async_request *req, int error) | 1514 | * void callback_function(struct crypto_async_request *req, int error) |
| 1512 | */ | 1515 | */ |
| @@ -1533,7 +1536,7 @@ static inline void aead_request_set_callback(struct aead_request *req, | |||
| 1533 | * | 1536 | * |
| 1534 | * For encryption, the source is treated as the plaintext and the | 1537 | * For encryption, the source is treated as the plaintext and the |
| 1535 | * destination is the ciphertext. For a decryption operation, the use is | 1538 | * destination is the ciphertext. For a decryption operation, the use is |
| 1536 | * reversed: the source is the ciphertext and the destination is the plaintext. | 1539 | * reversed - the source is the ciphertext and the destination is the plaintext. |
| 1537 | * | 1540 | * |
| 1538 | * IMPORTANT NOTE AEAD requires an authentication tag (MAC). For decryption, | 1541 | * IMPORTANT NOTE AEAD requires an authentication tag (MAC). For decryption, |
| 1539 | * the caller must concatenate the ciphertext followed by the | 1542 | * the caller must concatenate the ciphertext followed by the |
diff --git a/include/linux/cryptohash.h b/include/linux/cryptohash.h index 2cd9f1cf9fa3..f4754282c9c2 100644 --- a/include/linux/cryptohash.h +++ b/include/linux/cryptohash.h | |||
| @@ -1,6 +1,8 @@ | |||
| 1 | #ifndef __CRYPTOHASH_H | 1 | #ifndef __CRYPTOHASH_H |
| 2 | #define __CRYPTOHASH_H | 2 | #define __CRYPTOHASH_H |
| 3 | 3 | ||
| 4 | #include <uapi/linux/types.h> | ||
| 5 | |||
| 4 | #define SHA_DIGEST_WORDS 5 | 6 | #define SHA_DIGEST_WORDS 5 |
| 5 | #define SHA_MESSAGE_BYTES (512 /*bits*/ / 8) | 7 | #define SHA_MESSAGE_BYTES (512 /*bits*/ / 8) |
| 6 | #define SHA_WORKSPACE_WORDS 16 | 8 | #define SHA_WORKSPACE_WORDS 16 |
diff --git a/include/linux/dcache.h b/include/linux/dcache.h index 5a813988e6d4..92c08cf7670e 100644 --- a/include/linux/dcache.h +++ b/include/linux/dcache.h | |||
| @@ -319,9 +319,6 @@ static inline unsigned d_count(const struct dentry *dentry) | |||
| 319 | return dentry->d_lockref.count; | 319 | return dentry->d_lockref.count; |
| 320 | } | 320 | } |
| 321 | 321 | ||
| 322 | /* validate "insecure" dentry pointer */ | ||
| 323 | extern int d_validate(struct dentry *, struct dentry *); | ||
| 324 | |||
| 325 | /* | 322 | /* |
| 326 | * helper function for dentry_operations.d_dname() members | 323 | * helper function for dentry_operations.d_dname() members |
| 327 | */ | 324 | */ |
diff --git a/include/linux/debugfs.h b/include/linux/debugfs.h index da4c4983adbe..cb25af461054 100644 --- a/include/linux/debugfs.h +++ b/include/linux/debugfs.h | |||
| @@ -51,11 +51,21 @@ struct dentry *debugfs_create_file(const char *name, umode_t mode, | |||
| 51 | struct dentry *parent, void *data, | 51 | struct dentry *parent, void *data, |
| 52 | const struct file_operations *fops); | 52 | const struct file_operations *fops); |
| 53 | 53 | ||
| 54 | struct dentry *debugfs_create_file_size(const char *name, umode_t mode, | ||
| 55 | struct dentry *parent, void *data, | ||
| 56 | const struct file_operations *fops, | ||
| 57 | loff_t file_size); | ||
| 58 | |||
| 54 | struct dentry *debugfs_create_dir(const char *name, struct dentry *parent); | 59 | struct dentry *debugfs_create_dir(const char *name, struct dentry *parent); |
| 55 | 60 | ||
| 56 | struct dentry *debugfs_create_symlink(const char *name, struct dentry *parent, | 61 | struct dentry *debugfs_create_symlink(const char *name, struct dentry *parent, |
| 57 | const char *dest); | 62 | const char *dest); |
| 58 | 63 | ||
| 64 | struct dentry *debugfs_create_automount(const char *name, | ||
| 65 | struct dentry *parent, | ||
| 66 | struct vfsmount *(*f)(void *), | ||
| 67 | void *data); | ||
| 68 | |||
| 59 | void debugfs_remove(struct dentry *dentry); | 69 | void debugfs_remove(struct dentry *dentry); |
| 60 | void debugfs_remove_recursive(struct dentry *dentry); | 70 | void debugfs_remove_recursive(struct dentry *dentry); |
| 61 | 71 | ||
| @@ -124,6 +134,14 @@ static inline struct dentry *debugfs_create_file(const char *name, umode_t mode, | |||
| 124 | return ERR_PTR(-ENODEV); | 134 | return ERR_PTR(-ENODEV); |
| 125 | } | 135 | } |
| 126 | 136 | ||
| 137 | static inline struct dentry *debugfs_create_file_size(const char *name, umode_t mode, | ||
| 138 | struct dentry *parent, void *data, | ||
| 139 | const struct file_operations *fops, | ||
| 140 | loff_t file_size) | ||
| 141 | { | ||
| 142 | return ERR_PTR(-ENODEV); | ||
| 143 | } | ||
| 144 | |||
| 127 | static inline struct dentry *debugfs_create_dir(const char *name, | 145 | static inline struct dentry *debugfs_create_dir(const char *name, |
| 128 | struct dentry *parent) | 146 | struct dentry *parent) |
| 129 | { | 147 | { |
diff --git a/include/linux/device-mapper.h b/include/linux/device-mapper.h index ca6d2acc5eb7..2646aed1d3fe 100644 --- a/include/linux/device-mapper.h +++ b/include/linux/device-mapper.h | |||
| @@ -48,6 +48,11 @@ typedef void (*dm_dtr_fn) (struct dm_target *ti); | |||
| 48 | typedef int (*dm_map_fn) (struct dm_target *ti, struct bio *bio); | 48 | typedef int (*dm_map_fn) (struct dm_target *ti, struct bio *bio); |
| 49 | typedef int (*dm_map_request_fn) (struct dm_target *ti, struct request *clone, | 49 | typedef int (*dm_map_request_fn) (struct dm_target *ti, struct request *clone, |
| 50 | union map_info *map_context); | 50 | union map_info *map_context); |
| 51 | typedef int (*dm_clone_and_map_request_fn) (struct dm_target *ti, | ||
| 52 | struct request *rq, | ||
| 53 | union map_info *map_context, | ||
| 54 | struct request **clone); | ||
| 55 | typedef void (*dm_release_clone_request_fn) (struct request *clone); | ||
| 51 | 56 | ||
| 52 | /* | 57 | /* |
| 53 | * Returns: | 58 | * Returns: |
| @@ -143,6 +148,8 @@ struct target_type { | |||
| 143 | dm_dtr_fn dtr; | 148 | dm_dtr_fn dtr; |
| 144 | dm_map_fn map; | 149 | dm_map_fn map; |
| 145 | dm_map_request_fn map_rq; | 150 | dm_map_request_fn map_rq; |
| 151 | dm_clone_and_map_request_fn clone_and_map_rq; | ||
| 152 | dm_release_clone_request_fn release_clone_rq; | ||
| 146 | dm_endio_fn end_io; | 153 | dm_endio_fn end_io; |
| 147 | dm_request_endio_fn rq_end_io; | 154 | dm_request_endio_fn rq_end_io; |
| 148 | dm_presuspend_fn presuspend; | 155 | dm_presuspend_fn presuspend; |
| @@ -600,9 +607,6 @@ static inline unsigned long to_bytes(sector_t n) | |||
| 600 | /*----------------------------------------------------------------- | 607 | /*----------------------------------------------------------------- |
| 601 | * Helper for block layer and dm core operations | 608 | * Helper for block layer and dm core operations |
| 602 | *---------------------------------------------------------------*/ | 609 | *---------------------------------------------------------------*/ |
| 603 | void dm_dispatch_request(struct request *rq); | ||
| 604 | void dm_requeue_unmapped_request(struct request *rq); | ||
| 605 | void dm_kill_unmapped_request(struct request *rq, int error); | ||
| 606 | int dm_underlying_device_busy(struct request_queue *q); | 610 | int dm_underlying_device_busy(struct request_queue *q); |
| 607 | 611 | ||
| 608 | #endif /* _LINUX_DEVICE_MAPPER_H */ | 612 | #endif /* _LINUX_DEVICE_MAPPER_H */ |
diff --git a/include/linux/device.h b/include/linux/device.h index fb506738f7b7..0eb8ee2dc6d1 100644 --- a/include/linux/device.h +++ b/include/linux/device.h | |||
| @@ -1038,22 +1038,22 @@ extern __printf(3, 4) | |||
| 1038 | int dev_printk_emit(int level, const struct device *dev, const char *fmt, ...); | 1038 | int dev_printk_emit(int level, const struct device *dev, const char *fmt, ...); |
| 1039 | 1039 | ||
| 1040 | extern __printf(3, 4) | 1040 | extern __printf(3, 4) |
| 1041 | int dev_printk(const char *level, const struct device *dev, | 1041 | void dev_printk(const char *level, const struct device *dev, |
| 1042 | const char *fmt, ...); | 1042 | const char *fmt, ...); |
| 1043 | extern __printf(2, 3) | 1043 | extern __printf(2, 3) |
| 1044 | int dev_emerg(const struct device *dev, const char *fmt, ...); | 1044 | void dev_emerg(const struct device *dev, const char *fmt, ...); |
| 1045 | extern __printf(2, 3) | 1045 | extern __printf(2, 3) |
| 1046 | int dev_alert(const struct device *dev, const char *fmt, ...); | 1046 | void dev_alert(const struct device *dev, const char *fmt, ...); |
| 1047 | extern __printf(2, 3) | 1047 | extern __printf(2, 3) |
| 1048 | int dev_crit(const struct device *dev, const char *fmt, ...); | 1048 | void dev_crit(const struct device *dev, const char *fmt, ...); |
| 1049 | extern __printf(2, 3) | 1049 | extern __printf(2, 3) |
| 1050 | int dev_err(const struct device *dev, const char *fmt, ...); | 1050 | void dev_err(const struct device *dev, const char *fmt, ...); |
| 1051 | extern __printf(2, 3) | 1051 | extern __printf(2, 3) |
| 1052 | int dev_warn(const struct device *dev, const char *fmt, ...); | 1052 | void dev_warn(const struct device *dev, const char *fmt, ...); |
| 1053 | extern __printf(2, 3) | 1053 | extern __printf(2, 3) |
| 1054 | int dev_notice(const struct device *dev, const char *fmt, ...); | 1054 | void dev_notice(const struct device *dev, const char *fmt, ...); |
| 1055 | extern __printf(2, 3) | 1055 | extern __printf(2, 3) |
| 1056 | int _dev_info(const struct device *dev, const char *fmt, ...); | 1056 | void _dev_info(const struct device *dev, const char *fmt, ...); |
| 1057 | 1057 | ||
| 1058 | #else | 1058 | #else |
| 1059 | 1059 | ||
| @@ -1065,35 +1065,35 @@ static inline __printf(3, 4) | |||
| 1065 | int dev_printk_emit(int level, const struct device *dev, const char *fmt, ...) | 1065 | int dev_printk_emit(int level, const struct device *dev, const char *fmt, ...) |
| 1066 | { return 0; } | 1066 | { return 0; } |
| 1067 | 1067 | ||
| 1068 | static inline int __dev_printk(const char *level, const struct device *dev, | 1068 | static inline void __dev_printk(const char *level, const struct device *dev, |
| 1069 | struct va_format *vaf) | 1069 | struct va_format *vaf) |
| 1070 | { return 0; } | 1070 | {} |
| 1071 | static inline __printf(3, 4) | 1071 | static inline __printf(3, 4) |
| 1072 | int dev_printk(const char *level, const struct device *dev, | 1072 | void dev_printk(const char *level, const struct device *dev, |
| 1073 | const char *fmt, ...) | 1073 | const char *fmt, ...) |
| 1074 | { return 0; } | 1074 | {} |
| 1075 | 1075 | ||
| 1076 | static inline __printf(2, 3) | 1076 | static inline __printf(2, 3) |
| 1077 | int dev_emerg(const struct device *dev, const char *fmt, ...) | 1077 | void dev_emerg(const struct device *dev, const char *fmt, ...) |
| 1078 | { return 0; } | 1078 | {} |
| 1079 | static inline __printf(2, 3) | 1079 | static inline __printf(2, 3) |
| 1080 | int dev_crit(const struct device *dev, const char *fmt, ...) | 1080 | void dev_crit(const struct device *dev, const char *fmt, ...) |
| 1081 | { return 0; } | 1081 | {} |
| 1082 | static inline __printf(2, 3) | 1082 | static inline __printf(2, 3) |
| 1083 | int dev_alert(const struct device *dev, const char *fmt, ...) | 1083 | void dev_alert(const struct device *dev, const char *fmt, ...) |
| 1084 | { return 0; } | 1084 | {} |
| 1085 | static inline __printf(2, 3) | 1085 | static inline __printf(2, 3) |
| 1086 | int dev_err(const struct device *dev, const char *fmt, ...) | 1086 | void dev_err(const struct device *dev, const char *fmt, ...) |
| 1087 | { return 0; } | 1087 | {} |
| 1088 | static inline __printf(2, 3) | 1088 | static inline __printf(2, 3) |
| 1089 | int dev_warn(const struct device *dev, const char *fmt, ...) | 1089 | void dev_warn(const struct device *dev, const char *fmt, ...) |
| 1090 | { return 0; } | 1090 | {} |
| 1091 | static inline __printf(2, 3) | 1091 | static inline __printf(2, 3) |
| 1092 | int dev_notice(const struct device *dev, const char *fmt, ...) | 1092 | void dev_notice(const struct device *dev, const char *fmt, ...) |
| 1093 | { return 0; } | 1093 | {} |
| 1094 | static inline __printf(2, 3) | 1094 | static inline __printf(2, 3) |
| 1095 | int _dev_info(const struct device *dev, const char *fmt, ...) | 1095 | void _dev_info(const struct device *dev, const char *fmt, ...) |
| 1096 | { return 0; } | 1096 | {} |
| 1097 | 1097 | ||
| 1098 | #endif | 1098 | #endif |
| 1099 | 1099 | ||
| @@ -1119,7 +1119,6 @@ do { \ | |||
| 1119 | ({ \ | 1119 | ({ \ |
| 1120 | if (0) \ | 1120 | if (0) \ |
| 1121 | dev_printk(KERN_DEBUG, dev, format, ##arg); \ | 1121 | dev_printk(KERN_DEBUG, dev, format, ##arg); \ |
| 1122 | 0; \ | ||
| 1123 | }) | 1122 | }) |
| 1124 | #endif | 1123 | #endif |
| 1125 | 1124 | ||
| @@ -1156,7 +1155,7 @@ do { \ | |||
| 1156 | #define dev_info_once(dev, fmt, ...) \ | 1155 | #define dev_info_once(dev, fmt, ...) \ |
| 1157 | dev_level_once(dev_info, dev, fmt, ##__VA_ARGS__) | 1156 | dev_level_once(dev_info, dev, fmt, ##__VA_ARGS__) |
| 1158 | #define dev_dbg_once(dev, fmt, ...) \ | 1157 | #define dev_dbg_once(dev, fmt, ...) \ |
| 1159 | dev_level_once(dev_info, dev, fmt, ##__VA_ARGS__) | 1158 | dev_level_once(dev_dbg, dev, fmt, ##__VA_ARGS__) |
| 1160 | 1159 | ||
| 1161 | #define dev_level_ratelimited(dev_level, dev, fmt, ...) \ | 1160 | #define dev_level_ratelimited(dev_level, dev, fmt, ...) \ |
| 1162 | do { \ | 1161 | do { \ |
| @@ -1215,7 +1214,6 @@ do { \ | |||
| 1215 | ({ \ | 1214 | ({ \ |
| 1216 | if (0) \ | 1215 | if (0) \ |
| 1217 | dev_printk(KERN_DEBUG, dev, format, ##arg); \ | 1216 | dev_printk(KERN_DEBUG, dev, format, ##arg); \ |
| 1218 | 0; \ | ||
| 1219 | }) | 1217 | }) |
| 1220 | #endif | 1218 | #endif |
| 1221 | 1219 | ||
diff --git a/include/linux/efi.h b/include/linux/efi.h index b674837e2b98..cf7e431cbc73 100644 --- a/include/linux/efi.h +++ b/include/linux/efi.h | |||
| @@ -875,6 +875,8 @@ static inline efi_status_t efi_query_variable_store(u32 attributes, unsigned lon | |||
| 875 | #endif | 875 | #endif |
| 876 | extern void __iomem *efi_lookup_mapped_addr(u64 phys_addr); | 876 | extern void __iomem *efi_lookup_mapped_addr(u64 phys_addr); |
| 877 | extern int efi_config_init(efi_config_table_type_t *arch_tables); | 877 | extern int efi_config_init(efi_config_table_type_t *arch_tables); |
| 878 | extern int efi_config_parse_tables(void *config_tables, int count, int sz, | ||
| 879 | efi_config_table_type_t *arch_tables); | ||
| 878 | extern u64 efi_get_iobase (void); | 880 | extern u64 efi_get_iobase (void); |
| 879 | extern u32 efi_mem_type (unsigned long phys_addr); | 881 | extern u32 efi_mem_type (unsigned long phys_addr); |
| 880 | extern u64 efi_mem_attributes (unsigned long phys_addr); | 882 | extern u64 efi_mem_attributes (unsigned long phys_addr); |
diff --git a/include/linux/exportfs.h b/include/linux/exportfs.h index 41b223a59a63..fa05e04c5531 100644 --- a/include/linux/exportfs.h +++ b/include/linux/exportfs.h | |||
| @@ -4,6 +4,7 @@ | |||
| 4 | #include <linux/types.h> | 4 | #include <linux/types.h> |
| 5 | 5 | ||
| 6 | struct dentry; | 6 | struct dentry; |
| 7 | struct iattr; | ||
| 7 | struct inode; | 8 | struct inode; |
| 8 | struct super_block; | 9 | struct super_block; |
| 9 | struct vfsmount; | 10 | struct vfsmount; |
| @@ -180,6 +181,21 @@ struct fid { | |||
| 180 | * get_name is not (which is possibly inconsistent) | 181 | * get_name is not (which is possibly inconsistent) |
| 181 | */ | 182 | */ |
| 182 | 183 | ||
| 184 | /* types of block ranges for multipage write mappings. */ | ||
| 185 | #define IOMAP_HOLE 0x01 /* no blocks allocated, need allocation */ | ||
| 186 | #define IOMAP_DELALLOC 0x02 /* delayed allocation blocks */ | ||
| 187 | #define IOMAP_MAPPED 0x03 /* blocks allocated @blkno */ | ||
| 188 | #define IOMAP_UNWRITTEN 0x04 /* blocks allocated @blkno in unwritten state */ | ||
| 189 | |||
| 190 | #define IOMAP_NULL_BLOCK -1LL /* blkno is not valid */ | ||
| 191 | |||
| 192 | struct iomap { | ||
| 193 | sector_t blkno; /* first sector of mapping */ | ||
| 194 | loff_t offset; /* file offset of mapping, bytes */ | ||
| 195 | u64 length; /* length of mapping, bytes */ | ||
| 196 | int type; /* type of mapping */ | ||
| 197 | }; | ||
| 198 | |||
| 183 | struct export_operations { | 199 | struct export_operations { |
| 184 | int (*encode_fh)(struct inode *inode, __u32 *fh, int *max_len, | 200 | int (*encode_fh)(struct inode *inode, __u32 *fh, int *max_len, |
| 185 | struct inode *parent); | 201 | struct inode *parent); |
| @@ -191,6 +207,13 @@ struct export_operations { | |||
| 191 | struct dentry *child); | 207 | struct dentry *child); |
| 192 | struct dentry * (*get_parent)(struct dentry *child); | 208 | struct dentry * (*get_parent)(struct dentry *child); |
| 193 | int (*commit_metadata)(struct inode *inode); | 209 | int (*commit_metadata)(struct inode *inode); |
| 210 | |||
| 211 | int (*get_uuid)(struct super_block *sb, u8 *buf, u32 *len, u64 *offset); | ||
| 212 | int (*map_blocks)(struct inode *inode, loff_t offset, | ||
| 213 | u64 len, struct iomap *iomap, | ||
| 214 | bool write, u32 *device_generation); | ||
| 215 | int (*commit_blocks)(struct inode *inode, struct iomap *iomaps, | ||
| 216 | int nr_iomaps, struct iattr *iattr); | ||
| 194 | }; | 217 | }; |
| 195 | 218 | ||
| 196 | extern int exportfs_encode_inode_fh(struct inode *inode, struct fid *fid, | 219 | extern int exportfs_encode_inode_fh(struct inode *inode, struct fid *fid, |
diff --git a/include/linux/f2fs_fs.h b/include/linux/f2fs_fs.h index 87f14e90e984..a23556c32703 100644 --- a/include/linux/f2fs_fs.h +++ b/include/linux/f2fs_fs.h | |||
| @@ -19,12 +19,16 @@ | |||
| 19 | #define F2FS_MAX_LOG_SECTOR_SIZE 12 /* 12 bits for 4096 bytes */ | 19 | #define F2FS_MAX_LOG_SECTOR_SIZE 12 /* 12 bits for 4096 bytes */ |
| 20 | #define F2FS_LOG_SECTORS_PER_BLOCK 3 /* log number for sector/blk */ | 20 | #define F2FS_LOG_SECTORS_PER_BLOCK 3 /* log number for sector/blk */ |
| 21 | #define F2FS_BLKSIZE 4096 /* support only 4KB block */ | 21 | #define F2FS_BLKSIZE 4096 /* support only 4KB block */ |
| 22 | #define F2FS_BLKSIZE_BITS 12 /* bits for F2FS_BLKSIZE */ | ||
| 22 | #define F2FS_MAX_EXTENSION 64 /* # of extension entries */ | 23 | #define F2FS_MAX_EXTENSION 64 /* # of extension entries */ |
| 23 | #define F2FS_BLK_ALIGN(x) (((x) + F2FS_BLKSIZE - 1) / F2FS_BLKSIZE) | 24 | #define F2FS_BLK_ALIGN(x) (((x) + F2FS_BLKSIZE - 1) / F2FS_BLKSIZE) |
| 24 | 25 | ||
| 25 | #define NULL_ADDR ((block_t)0) /* used as block_t addresses */ | 26 | #define NULL_ADDR ((block_t)0) /* used as block_t addresses */ |
| 26 | #define NEW_ADDR ((block_t)-1) /* used as block_t addresses */ | 27 | #define NEW_ADDR ((block_t)-1) /* used as block_t addresses */ |
| 27 | 28 | ||
| 29 | #define F2FS_BYTES_TO_BLK(bytes) ((bytes) >> F2FS_BLKSIZE_BITS) | ||
| 30 | #define F2FS_BLK_TO_BYTES(blk) ((blk) << F2FS_BLKSIZE_BITS) | ||
| 31 | |||
| 28 | /* 0, 1(node nid), 2(meta nid) are reserved node id */ | 32 | /* 0, 1(node nid), 2(meta nid) are reserved node id */ |
| 29 | #define F2FS_RESERVED_NODE_NUM 3 | 33 | #define F2FS_RESERVED_NODE_NUM 3 |
| 30 | 34 | ||
| @@ -87,6 +91,7 @@ struct f2fs_super_block { | |||
| 87 | /* | 91 | /* |
| 88 | * For checkpoint | 92 | * For checkpoint |
| 89 | */ | 93 | */ |
| 94 | #define CP_FASTBOOT_FLAG 0x00000020 | ||
| 90 | #define CP_FSCK_FLAG 0x00000010 | 95 | #define CP_FSCK_FLAG 0x00000010 |
| 91 | #define CP_ERROR_FLAG 0x00000008 | 96 | #define CP_ERROR_FLAG 0x00000008 |
| 92 | #define CP_COMPACT_SUM_FLAG 0x00000004 | 97 | #define CP_COMPACT_SUM_FLAG 0x00000004 |
| @@ -224,6 +229,8 @@ enum { | |||
| 224 | OFFSET_BIT_SHIFT | 229 | OFFSET_BIT_SHIFT |
| 225 | }; | 230 | }; |
| 226 | 231 | ||
| 232 | #define OFFSET_BIT_MASK (0x07) /* (0x01 << OFFSET_BIT_SHIFT) - 1 */ | ||
| 233 | |||
| 227 | struct node_footer { | 234 | struct node_footer { |
| 228 | __le32 nid; /* node id */ | 235 | __le32 nid; /* node id */ |
| 229 | __le32 ino; /* inode nunmber */ | 236 | __le32 ino; /* inode nunmber */ |
diff --git a/include/linux/fs.h b/include/linux/fs.h index f125b88443bd..447932aed1e1 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
| @@ -34,6 +34,7 @@ | |||
| 34 | #include <asm/byteorder.h> | 34 | #include <asm/byteorder.h> |
| 35 | #include <uapi/linux/fs.h> | 35 | #include <uapi/linux/fs.h> |
| 36 | 36 | ||
| 37 | struct backing_dev_info; | ||
| 37 | struct export_operations; | 38 | struct export_operations; |
| 38 | struct hd_geometry; | 39 | struct hd_geometry; |
| 39 | struct iovec; | 40 | struct iovec; |
| @@ -50,6 +51,7 @@ struct swap_info_struct; | |||
| 50 | struct seq_file; | 51 | struct seq_file; |
| 51 | struct workqueue_struct; | 52 | struct workqueue_struct; |
| 52 | struct iov_iter; | 53 | struct iov_iter; |
| 54 | struct vm_fault; | ||
| 53 | 55 | ||
| 54 | extern void __init inode_init(void); | 56 | extern void __init inode_init(void); |
| 55 | extern void __init inode_init_early(void); | 57 | extern void __init inode_init_early(void); |
| @@ -360,8 +362,6 @@ struct address_space_operations { | |||
| 360 | int (*releasepage) (struct page *, gfp_t); | 362 | int (*releasepage) (struct page *, gfp_t); |
| 361 | void (*freepage)(struct page *); | 363 | void (*freepage)(struct page *); |
| 362 | ssize_t (*direct_IO)(int, struct kiocb *, struct iov_iter *iter, loff_t offset); | 364 | ssize_t (*direct_IO)(int, struct kiocb *, struct iov_iter *iter, loff_t offset); |
| 363 | int (*get_xip_mem)(struct address_space *, pgoff_t, int, | ||
| 364 | void **, unsigned long *); | ||
| 365 | /* | 365 | /* |
| 366 | * migrate the contents of a page to the specified target. If | 366 | * migrate the contents of a page to the specified target. If |
| 367 | * migrate_mode is MIGRATE_ASYNC, it must not block. | 367 | * migrate_mode is MIGRATE_ASYNC, it must not block. |
| @@ -394,7 +394,6 @@ int pagecache_write_end(struct file *, struct address_space *mapping, | |||
| 394 | loff_t pos, unsigned len, unsigned copied, | 394 | loff_t pos, unsigned len, unsigned copied, |
| 395 | struct page *page, void *fsdata); | 395 | struct page *page, void *fsdata); |
| 396 | 396 | ||
| 397 | struct backing_dev_info; | ||
| 398 | struct address_space { | 397 | struct address_space { |
| 399 | struct inode *host; /* owner: inode, block_device */ | 398 | struct inode *host; /* owner: inode, block_device */ |
| 400 | struct radix_tree_root page_tree; /* radix tree of all pages */ | 399 | struct radix_tree_root page_tree; /* radix tree of all pages */ |
| @@ -408,7 +407,6 @@ struct address_space { | |||
| 408 | pgoff_t writeback_index;/* writeback starts here */ | 407 | pgoff_t writeback_index;/* writeback starts here */ |
| 409 | const struct address_space_operations *a_ops; /* methods */ | 408 | const struct address_space_operations *a_ops; /* methods */ |
| 410 | unsigned long flags; /* error bits/gfp mask */ | 409 | unsigned long flags; /* error bits/gfp mask */ |
| 411 | struct backing_dev_info *backing_dev_info; /* device readahead, etc */ | ||
| 412 | spinlock_t private_lock; /* for use by the address_space */ | 410 | spinlock_t private_lock; /* for use by the address_space */ |
| 413 | struct list_head private_list; /* ditto */ | 411 | struct list_head private_list; /* ditto */ |
| 414 | void *private_data; /* ditto */ | 412 | void *private_data; /* ditto */ |
| @@ -873,6 +871,7 @@ static inline struct file *get_file(struct file *f) | |||
| 873 | #define FL_DOWNGRADE_PENDING 256 /* Lease is being downgraded */ | 871 | #define FL_DOWNGRADE_PENDING 256 /* Lease is being downgraded */ |
| 874 | #define FL_UNLOCK_PENDING 512 /* Lease is being broken */ | 872 | #define FL_UNLOCK_PENDING 512 /* Lease is being broken */ |
| 875 | #define FL_OFDLCK 1024 /* lock is "owned" by struct file */ | 873 | #define FL_OFDLCK 1024 /* lock is "owned" by struct file */ |
| 874 | #define FL_LAYOUT 2048 /* outstanding pNFS layout */ | ||
| 876 | 875 | ||
| 877 | /* | 876 | /* |
| 878 | * Special return value from posix_lock_file() and vfs_lock_file() for | 877 | * Special return value from posix_lock_file() and vfs_lock_file() for |
| @@ -1200,8 +1199,6 @@ struct mm_struct; | |||
| 1200 | #define UMOUNT_NOFOLLOW 0x00000008 /* Don't follow symlink on umount */ | 1199 | #define UMOUNT_NOFOLLOW 0x00000008 /* Don't follow symlink on umount */ |
| 1201 | #define UMOUNT_UNUSED 0x80000000 /* Flag guaranteed to be unused */ | 1200 | #define UMOUNT_UNUSED 0x80000000 /* Flag guaranteed to be unused */ |
| 1202 | 1201 | ||
| 1203 | extern struct list_head super_blocks; | ||
| 1204 | extern spinlock_t sb_lock; | ||
| 1205 | 1202 | ||
| 1206 | /* Possible states of 'frozen' field */ | 1203 | /* Possible states of 'frozen' field */ |
| 1207 | enum { | 1204 | enum { |
| @@ -1518,6 +1515,26 @@ struct block_device_operations; | |||
| 1518 | #define HAVE_COMPAT_IOCTL 1 | 1515 | #define HAVE_COMPAT_IOCTL 1 |
| 1519 | #define HAVE_UNLOCKED_IOCTL 1 | 1516 | #define HAVE_UNLOCKED_IOCTL 1 |
| 1520 | 1517 | ||
| 1518 | /* | ||
| 1519 | * These flags let !MMU mmap() govern direct device mapping vs immediate | ||
| 1520 | * copying more easily for MAP_PRIVATE, especially for ROM filesystems. | ||
| 1521 | * | ||
| 1522 | * NOMMU_MAP_COPY: Copy can be mapped (MAP_PRIVATE) | ||
| 1523 | * NOMMU_MAP_DIRECT: Can be mapped directly (MAP_SHARED) | ||
| 1524 | * NOMMU_MAP_READ: Can be mapped for reading | ||
| 1525 | * NOMMU_MAP_WRITE: Can be mapped for writing | ||
| 1526 | * NOMMU_MAP_EXEC: Can be mapped for execution | ||
| 1527 | */ | ||
| 1528 | #define NOMMU_MAP_COPY 0x00000001 | ||
| 1529 | #define NOMMU_MAP_DIRECT 0x00000008 | ||
| 1530 | #define NOMMU_MAP_READ VM_MAYREAD | ||
| 1531 | #define NOMMU_MAP_WRITE VM_MAYWRITE | ||
| 1532 | #define NOMMU_MAP_EXEC VM_MAYEXEC | ||
| 1533 | |||
| 1534 | #define NOMMU_VMFLAGS \ | ||
| 1535 | (NOMMU_MAP_READ | NOMMU_MAP_WRITE | NOMMU_MAP_EXEC) | ||
| 1536 | |||
| 1537 | |||
| 1521 | struct iov_iter; | 1538 | struct iov_iter; |
| 1522 | 1539 | ||
| 1523 | struct file_operations { | 1540 | struct file_operations { |
| @@ -1552,6 +1569,9 @@ struct file_operations { | |||
| 1552 | long (*fallocate)(struct file *file, int mode, loff_t offset, | 1569 | long (*fallocate)(struct file *file, int mode, loff_t offset, |
| 1553 | loff_t len); | 1570 | loff_t len); |
| 1554 | void (*show_fdinfo)(struct seq_file *m, struct file *f); | 1571 | void (*show_fdinfo)(struct seq_file *m, struct file *f); |
| 1572 | #ifndef CONFIG_MMU | ||
| 1573 | unsigned (*mmap_capabilities)(struct file *); | ||
| 1574 | #endif | ||
| 1555 | }; | 1575 | }; |
| 1556 | 1576 | ||
| 1557 | struct inode_operations { | 1577 | struct inode_operations { |
| @@ -1634,8 +1654,10 @@ struct super_operations { | |||
| 1634 | struct dquot **(*get_dquots)(struct inode *); | 1654 | struct dquot **(*get_dquots)(struct inode *); |
| 1635 | #endif | 1655 | #endif |
| 1636 | int (*bdev_try_to_free_page)(struct super_block*, struct page*, gfp_t); | 1656 | int (*bdev_try_to_free_page)(struct super_block*, struct page*, gfp_t); |
| 1637 | long (*nr_cached_objects)(struct super_block *, int); | 1657 | long (*nr_cached_objects)(struct super_block *, |
| 1638 | long (*free_cached_objects)(struct super_block *, long, int); | 1658 | struct shrink_control *); |
| 1659 | long (*free_cached_objects)(struct super_block *, | ||
| 1660 | struct shrink_control *); | ||
| 1639 | }; | 1661 | }; |
| 1640 | 1662 | ||
| 1641 | /* | 1663 | /* |
| @@ -1654,6 +1676,11 @@ struct super_operations { | |||
| 1654 | #define S_IMA 1024 /* Inode has an associated IMA struct */ | 1676 | #define S_IMA 1024 /* Inode has an associated IMA struct */ |
| 1655 | #define S_AUTOMOUNT 2048 /* Automount/referral quasi-directory */ | 1677 | #define S_AUTOMOUNT 2048 /* Automount/referral quasi-directory */ |
| 1656 | #define S_NOSEC 4096 /* no suid or xattr security attributes */ | 1678 | #define S_NOSEC 4096 /* no suid or xattr security attributes */ |
| 1679 | #ifdef CONFIG_FS_DAX | ||
| 1680 | #define S_DAX 8192 /* Direct Access, avoiding the page cache */ | ||
| 1681 | #else | ||
| 1682 | #define S_DAX 0 /* Make all the DAX code disappear */ | ||
| 1683 | #endif | ||
| 1657 | 1684 | ||
| 1658 | /* | 1685 | /* |
| 1659 | * Note that nosuid etc flags are inode-specific: setting some file-system | 1686 | * Note that nosuid etc flags are inode-specific: setting some file-system |
| @@ -1691,6 +1718,7 @@ struct super_operations { | |||
| 1691 | #define IS_IMA(inode) ((inode)->i_flags & S_IMA) | 1718 | #define IS_IMA(inode) ((inode)->i_flags & S_IMA) |
| 1692 | #define IS_AUTOMOUNT(inode) ((inode)->i_flags & S_AUTOMOUNT) | 1719 | #define IS_AUTOMOUNT(inode) ((inode)->i_flags & S_AUTOMOUNT) |
| 1693 | #define IS_NOSEC(inode) ((inode)->i_flags & S_NOSEC) | 1720 | #define IS_NOSEC(inode) ((inode)->i_flags & S_NOSEC) |
| 1721 | #define IS_DAX(inode) ((inode)->i_flags & S_DAX) | ||
| 1694 | 1722 | ||
| 1695 | #define IS_WHITEOUT(inode) (S_ISCHR(inode->i_mode) && \ | 1723 | #define IS_WHITEOUT(inode) (S_ISCHR(inode->i_mode) && \ |
| 1696 | (inode)->i_rdev == WHITEOUT_DEV) | 1724 | (inode)->i_rdev == WHITEOUT_DEV) |
| @@ -1762,8 +1790,12 @@ struct super_operations { | |||
| 1762 | #define __I_DIO_WAKEUP 9 | 1790 | #define __I_DIO_WAKEUP 9 |
| 1763 | #define I_DIO_WAKEUP (1 << I_DIO_WAKEUP) | 1791 | #define I_DIO_WAKEUP (1 << I_DIO_WAKEUP) |
| 1764 | #define I_LINKABLE (1 << 10) | 1792 | #define I_LINKABLE (1 << 10) |
| 1793 | #define I_DIRTY_TIME (1 << 11) | ||
| 1794 | #define __I_DIRTY_TIME_EXPIRED 12 | ||
| 1795 | #define I_DIRTY_TIME_EXPIRED (1 << __I_DIRTY_TIME_EXPIRED) | ||
| 1765 | 1796 | ||
| 1766 | #define I_DIRTY (I_DIRTY_SYNC | I_DIRTY_DATASYNC | I_DIRTY_PAGES) | 1797 | #define I_DIRTY (I_DIRTY_SYNC | I_DIRTY_DATASYNC | I_DIRTY_PAGES) |
| 1798 | #define I_DIRTY_ALL (I_DIRTY | I_DIRTY_TIME) | ||
| 1767 | 1799 | ||
| 1768 | extern void __mark_inode_dirty(struct inode *, int); | 1800 | extern void __mark_inode_dirty(struct inode *, int); |
| 1769 | static inline void mark_inode_dirty(struct inode *inode) | 1801 | static inline void mark_inode_dirty(struct inode *inode) |
| @@ -1926,6 +1958,7 @@ extern int current_umask(void); | |||
| 1926 | 1958 | ||
| 1927 | extern void ihold(struct inode * inode); | 1959 | extern void ihold(struct inode * inode); |
| 1928 | extern void iput(struct inode *); | 1960 | extern void iput(struct inode *); |
| 1961 | extern int generic_update_time(struct inode *, struct timespec *, int); | ||
| 1929 | 1962 | ||
| 1930 | static inline struct inode *file_inode(const struct file *f) | 1963 | static inline struct inode *file_inode(const struct file *f) |
| 1931 | { | 1964 | { |
| @@ -2035,6 +2068,16 @@ static inline int break_deleg_wait(struct inode **delegated_inode) | |||
| 2035 | return ret; | 2068 | return ret; |
| 2036 | } | 2069 | } |
| 2037 | 2070 | ||
| 2071 | static inline int break_layout(struct inode *inode, bool wait) | ||
| 2072 | { | ||
| 2073 | smp_mb(); | ||
| 2074 | if (inode->i_flctx && !list_empty_careful(&inode->i_flctx->flc_lease)) | ||
| 2075 | return __break_lease(inode, | ||
| 2076 | wait ? O_WRONLY : O_WRONLY | O_NONBLOCK, | ||
| 2077 | FL_LAYOUT); | ||
| 2078 | return 0; | ||
| 2079 | } | ||
| 2080 | |||
| 2038 | #else /* !CONFIG_FILE_LOCKING */ | 2081 | #else /* !CONFIG_FILE_LOCKING */ |
| 2039 | static inline int locks_mandatory_locked(struct file *file) | 2082 | static inline int locks_mandatory_locked(struct file *file) |
| 2040 | { | 2083 | { |
| @@ -2090,6 +2133,11 @@ static inline int break_deleg_wait(struct inode **delegated_inode) | |||
| 2090 | return 0; | 2133 | return 0; |
| 2091 | } | 2134 | } |
| 2092 | 2135 | ||
| 2136 | static inline int break_layout(struct inode *inode, bool wait) | ||
| 2137 | { | ||
| 2138 | return 0; | ||
| 2139 | } | ||
| 2140 | |||
| 2093 | #endif /* CONFIG_FILE_LOCKING */ | 2141 | #endif /* CONFIG_FILE_LOCKING */ |
| 2094 | 2142 | ||
| 2095 | /* fs/open.c */ | 2143 | /* fs/open.c */ |
| @@ -2098,6 +2146,7 @@ struct filename { | |||
| 2098 | const char *name; /* pointer to actual string */ | 2146 | const char *name; /* pointer to actual string */ |
| 2099 | const __user char *uptr; /* original userland pointer */ | 2147 | const __user char *uptr; /* original userland pointer */ |
| 2100 | struct audit_names *aname; | 2148 | struct audit_names *aname; |
| 2149 | int refcnt; | ||
| 2101 | bool separate; /* should "name" be freed? */ | 2150 | bool separate; /* should "name" be freed? */ |
| 2102 | }; | 2151 | }; |
| 2103 | 2152 | ||
| @@ -2119,6 +2168,7 @@ extern int filp_close(struct file *, fl_owner_t id); | |||
| 2119 | extern struct filename *getname_flags(const char __user *, int, int *); | 2168 | extern struct filename *getname_flags(const char __user *, int, int *); |
| 2120 | extern struct filename *getname(const char __user *); | 2169 | extern struct filename *getname(const char __user *); |
| 2121 | extern struct filename *getname_kernel(const char *); | 2170 | extern struct filename *getname_kernel(const char *); |
| 2171 | extern void putname(struct filename *name); | ||
| 2122 | 2172 | ||
| 2123 | enum { | 2173 | enum { |
| 2124 | FILE_CREATED = 1, | 2174 | FILE_CREATED = 1, |
| @@ -2139,15 +2189,8 @@ extern void __init vfs_caches_init(unsigned long); | |||
| 2139 | 2189 | ||
| 2140 | extern struct kmem_cache *names_cachep; | 2190 | extern struct kmem_cache *names_cachep; |
| 2141 | 2191 | ||
| 2142 | extern void final_putname(struct filename *name); | ||
| 2143 | |||
| 2144 | #define __getname() kmem_cache_alloc(names_cachep, GFP_KERNEL) | 2192 | #define __getname() kmem_cache_alloc(names_cachep, GFP_KERNEL) |
| 2145 | #define __putname(name) kmem_cache_free(names_cachep, (void *)(name)) | 2193 | #define __putname(name) kmem_cache_free(names_cachep, (void *)(name)) |
| 2146 | #ifndef CONFIG_AUDITSYSCALL | ||
| 2147 | #define putname(name) final_putname(name) | ||
| 2148 | #else | ||
| 2149 | extern void putname(struct filename *name); | ||
| 2150 | #endif | ||
| 2151 | 2194 | ||
| 2152 | #ifdef CONFIG_BLOCK | 2195 | #ifdef CONFIG_BLOCK |
| 2153 | extern int register_blkdev(unsigned int, const char *); | 2196 | extern int register_blkdev(unsigned int, const char *); |
| @@ -2454,6 +2497,11 @@ extern struct inode *ilookup(struct super_block *sb, unsigned long ino); | |||
| 2454 | 2497 | ||
| 2455 | extern struct inode * iget5_locked(struct super_block *, unsigned long, int (*test)(struct inode *, void *), int (*set)(struct inode *, void *), void *); | 2498 | extern struct inode * iget5_locked(struct super_block *, unsigned long, int (*test)(struct inode *, void *), int (*set)(struct inode *, void *), void *); |
| 2456 | extern struct inode * iget_locked(struct super_block *, unsigned long); | 2499 | extern struct inode * iget_locked(struct super_block *, unsigned long); |
| 2500 | extern struct inode *find_inode_nowait(struct super_block *, | ||
| 2501 | unsigned long, | ||
| 2502 | int (*match)(struct inode *, | ||
| 2503 | unsigned long, void *), | ||
| 2504 | void *data); | ||
| 2457 | extern int insert_inode_locked4(struct inode *, unsigned long, int (*test)(struct inode *, void *), void *); | 2505 | extern int insert_inode_locked4(struct inode *, unsigned long, int (*test)(struct inode *, void *), void *); |
| 2458 | extern int insert_inode_locked(struct inode *); | 2506 | extern int insert_inode_locked(struct inode *); |
| 2459 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | 2507 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
| @@ -2510,6 +2558,9 @@ extern ssize_t do_sync_write(struct file *filp, const char __user *buf, size_t l | |||
| 2510 | extern ssize_t new_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos); | 2558 | extern ssize_t new_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos); |
| 2511 | extern ssize_t new_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos); | 2559 | extern ssize_t new_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos); |
| 2512 | 2560 | ||
| 2561 | ssize_t vfs_iter_read(struct file *file, struct iov_iter *iter, loff_t *ppos); | ||
| 2562 | ssize_t vfs_iter_write(struct file *file, struct iov_iter *iter, loff_t *ppos); | ||
| 2563 | |||
| 2513 | /* fs/block_dev.c */ | 2564 | /* fs/block_dev.c */ |
| 2514 | extern ssize_t blkdev_read_iter(struct kiocb *iocb, struct iov_iter *to); | 2565 | extern ssize_t blkdev_read_iter(struct kiocb *iocb, struct iov_iter *to); |
| 2515 | extern ssize_t blkdev_write_iter(struct kiocb *iocb, struct iov_iter *from); | 2566 | extern ssize_t blkdev_write_iter(struct kiocb *iocb, struct iov_iter *from); |
| @@ -2543,19 +2594,13 @@ extern loff_t fixed_size_llseek(struct file *file, loff_t offset, | |||
| 2543 | extern int generic_file_open(struct inode * inode, struct file * filp); | 2594 | extern int generic_file_open(struct inode * inode, struct file * filp); |
| 2544 | extern int nonseekable_open(struct inode * inode, struct file * filp); | 2595 | extern int nonseekable_open(struct inode * inode, struct file * filp); |
| 2545 | 2596 | ||
| 2546 | #ifdef CONFIG_FS_XIP | 2597 | ssize_t dax_do_io(int rw, struct kiocb *, struct inode *, struct iov_iter *, |
| 2547 | extern ssize_t xip_file_read(struct file *filp, char __user *buf, size_t len, | 2598 | loff_t, get_block_t, dio_iodone_t, int flags); |
| 2548 | loff_t *ppos); | 2599 | int dax_clear_blocks(struct inode *, sector_t block, long size); |
| 2549 | extern int xip_file_mmap(struct file * file, struct vm_area_struct * vma); | 2600 | int dax_zero_page_range(struct inode *, loff_t from, unsigned len, get_block_t); |
| 2550 | extern ssize_t xip_file_write(struct file *filp, const char __user *buf, | 2601 | int dax_truncate_page(struct inode *, loff_t from, get_block_t); |
| 2551 | size_t len, loff_t *ppos); | 2602 | int dax_fault(struct vm_area_struct *, struct vm_fault *, get_block_t); |
| 2552 | extern int xip_truncate_page(struct address_space *mapping, loff_t from); | 2603 | #define dax_mkwrite(vma, vmf, gb) dax_fault(vma, vmf, gb) |
| 2553 | #else | ||
| 2554 | static inline int xip_truncate_page(struct address_space *mapping, loff_t from) | ||
| 2555 | { | ||
| 2556 | return 0; | ||
| 2557 | } | ||
| 2558 | #endif | ||
| 2559 | 2604 | ||
| 2560 | #ifdef CONFIG_BLOCK | 2605 | #ifdef CONFIG_BLOCK |
| 2561 | typedef void (dio_submit_t)(int rw, struct bio *bio, struct inode *inode, | 2606 | typedef void (dio_submit_t)(int rw, struct bio *bio, struct inode *inode, |
| @@ -2712,6 +2757,11 @@ extern int generic_show_options(struct seq_file *m, struct dentry *root); | |||
| 2712 | extern void save_mount_options(struct super_block *sb, char *options); | 2757 | extern void save_mount_options(struct super_block *sb, char *options); |
| 2713 | extern void replace_mount_options(struct super_block *sb, char *options); | 2758 | extern void replace_mount_options(struct super_block *sb, char *options); |
| 2714 | 2759 | ||
| 2760 | static inline bool io_is_direct(struct file *filp) | ||
| 2761 | { | ||
| 2762 | return (filp->f_flags & O_DIRECT) || IS_DAX(file_inode(filp)); | ||
| 2763 | } | ||
| 2764 | |||
| 2715 | static inline ino_t parent_ino(struct dentry *dentry) | 2765 | static inline ino_t parent_ino(struct dentry *dentry) |
| 2716 | { | 2766 | { |
| 2717 | ino_t res; | 2767 | ino_t res; |
diff --git a/include/linux/fs_pin.h b/include/linux/fs_pin.h index f66525e72ccf..9dc4e0384bfb 100644 --- a/include/linux/fs_pin.h +++ b/include/linux/fs_pin.h | |||
| @@ -1,17 +1,22 @@ | |||
| 1 | #include <linux/fs.h> | 1 | #include <linux/wait.h> |
| 2 | 2 | ||
| 3 | struct fs_pin { | 3 | struct fs_pin { |
| 4 | atomic_long_t count; | 4 | wait_queue_head_t wait; |
| 5 | union { | 5 | int done; |
| 6 | struct { | 6 | struct hlist_node s_list; |
| 7 | struct hlist_node s_list; | 7 | struct hlist_node m_list; |
| 8 | struct hlist_node m_list; | ||
| 9 | }; | ||
| 10 | struct rcu_head rcu; | ||
| 11 | }; | ||
| 12 | void (*kill)(struct fs_pin *); | 8 | void (*kill)(struct fs_pin *); |
| 13 | }; | 9 | }; |
| 14 | 10 | ||
| 15 | void pin_put(struct fs_pin *); | 11 | struct vfsmount; |
| 12 | |||
| 13 | static inline void init_fs_pin(struct fs_pin *p, void (*kill)(struct fs_pin *)) | ||
| 14 | { | ||
| 15 | init_waitqueue_head(&p->wait); | ||
| 16 | p->kill = kill; | ||
| 17 | } | ||
| 18 | |||
| 16 | void pin_remove(struct fs_pin *); | 19 | void pin_remove(struct fs_pin *); |
| 20 | void pin_insert_group(struct fs_pin *, struct vfsmount *, struct hlist_head *); | ||
| 17 | void pin_insert(struct fs_pin *, struct vfsmount *); | 21 | void pin_insert(struct fs_pin *, struct vfsmount *); |
| 22 | void pin_kill(struct fs_pin *); | ||
diff --git a/include/linux/ftrace_event.h b/include/linux/ftrace_event.h index d36f68b08acc..c674ee8f7fca 100644 --- a/include/linux/ftrace_event.h +++ b/include/linux/ftrace_event.h | |||
| @@ -44,6 +44,10 @@ const char *ftrace_print_bitmask_seq(struct trace_seq *p, void *bitmask_ptr, | |||
| 44 | const char *ftrace_print_hex_seq(struct trace_seq *p, | 44 | const char *ftrace_print_hex_seq(struct trace_seq *p, |
| 45 | const unsigned char *buf, int len); | 45 | const unsigned char *buf, int len); |
| 46 | 46 | ||
| 47 | const char *ftrace_print_array_seq(struct trace_seq *p, | ||
| 48 | const void *buf, int buf_len, | ||
| 49 | size_t el_size); | ||
| 50 | |||
| 47 | struct trace_iterator; | 51 | struct trace_iterator; |
| 48 | struct trace_event; | 52 | struct trace_event; |
| 49 | 53 | ||
diff --git a/include/linux/gfp.h b/include/linux/gfp.h index b840e3b2770d..51bd1e72a917 100644 --- a/include/linux/gfp.h +++ b/include/linux/gfp.h | |||
| @@ -334,18 +334,22 @@ alloc_pages(gfp_t gfp_mask, unsigned int order) | |||
| 334 | } | 334 | } |
| 335 | extern struct page *alloc_pages_vma(gfp_t gfp_mask, int order, | 335 | extern struct page *alloc_pages_vma(gfp_t gfp_mask, int order, |
| 336 | struct vm_area_struct *vma, unsigned long addr, | 336 | struct vm_area_struct *vma, unsigned long addr, |
| 337 | int node); | 337 | int node, bool hugepage); |
| 338 | #define alloc_hugepage_vma(gfp_mask, vma, addr, order) \ | ||
| 339 | alloc_pages_vma(gfp_mask, order, vma, addr, numa_node_id(), true) | ||
| 338 | #else | 340 | #else |
| 339 | #define alloc_pages(gfp_mask, order) \ | 341 | #define alloc_pages(gfp_mask, order) \ |
| 340 | alloc_pages_node(numa_node_id(), gfp_mask, order) | 342 | alloc_pages_node(numa_node_id(), gfp_mask, order) |
| 341 | #define alloc_pages_vma(gfp_mask, order, vma, addr, node) \ | 343 | #define alloc_pages_vma(gfp_mask, order, vma, addr, node, false)\ |
| 344 | alloc_pages(gfp_mask, order) | ||
| 345 | #define alloc_hugepage_vma(gfp_mask, vma, addr, order) \ | ||
| 342 | alloc_pages(gfp_mask, order) | 346 | alloc_pages(gfp_mask, order) |
| 343 | #endif | 347 | #endif |
| 344 | #define alloc_page(gfp_mask) alloc_pages(gfp_mask, 0) | 348 | #define alloc_page(gfp_mask) alloc_pages(gfp_mask, 0) |
| 345 | #define alloc_page_vma(gfp_mask, vma, addr) \ | 349 | #define alloc_page_vma(gfp_mask, vma, addr) \ |
| 346 | alloc_pages_vma(gfp_mask, 0, vma, addr, numa_node_id()) | 350 | alloc_pages_vma(gfp_mask, 0, vma, addr, numa_node_id(), false) |
| 347 | #define alloc_page_vma_node(gfp_mask, vma, addr, node) \ | 351 | #define alloc_page_vma_node(gfp_mask, vma, addr, node) \ |
| 348 | alloc_pages_vma(gfp_mask, 0, vma, addr, node) | 352 | alloc_pages_vma(gfp_mask, 0, vma, addr, node, false) |
| 349 | 353 | ||
| 350 | extern struct page *alloc_kmem_pages(gfp_t gfp_mask, unsigned int order); | 354 | extern struct page *alloc_kmem_pages(gfp_t gfp_mask, unsigned int order); |
| 351 | extern struct page *alloc_kmem_pages_node(int nid, gfp_t gfp_mask, | 355 | extern struct page *alloc_kmem_pages_node(int nid, gfp_t gfp_mask, |
diff --git a/include/linux/host1x.h b/include/linux/host1x.h index bb9840fd1e18..464f33814a94 100644 --- a/include/linux/host1x.h +++ b/include/linux/host1x.h | |||
| @@ -250,17 +250,29 @@ void host1x_job_unpin(struct host1x_job *job); | |||
| 250 | struct host1x_device; | 250 | struct host1x_device; |
| 251 | 251 | ||
| 252 | struct host1x_driver { | 252 | struct host1x_driver { |
| 253 | struct device_driver driver; | ||
| 254 | |||
| 253 | const struct of_device_id *subdevs; | 255 | const struct of_device_id *subdevs; |
| 254 | struct list_head list; | 256 | struct list_head list; |
| 255 | const char *name; | ||
| 256 | 257 | ||
| 257 | int (*probe)(struct host1x_device *device); | 258 | int (*probe)(struct host1x_device *device); |
| 258 | int (*remove)(struct host1x_device *device); | 259 | int (*remove)(struct host1x_device *device); |
| 260 | void (*shutdown)(struct host1x_device *device); | ||
| 259 | }; | 261 | }; |
| 260 | 262 | ||
| 261 | int host1x_driver_register(struct host1x_driver *driver); | 263 | static inline struct host1x_driver * |
| 264 | to_host1x_driver(struct device_driver *driver) | ||
| 265 | { | ||
| 266 | return container_of(driver, struct host1x_driver, driver); | ||
| 267 | } | ||
| 268 | |||
| 269 | int host1x_driver_register_full(struct host1x_driver *driver, | ||
| 270 | struct module *owner); | ||
| 262 | void host1x_driver_unregister(struct host1x_driver *driver); | 271 | void host1x_driver_unregister(struct host1x_driver *driver); |
| 263 | 272 | ||
| 273 | #define host1x_driver_register(driver) \ | ||
| 274 | host1x_driver_register_full(driver, THIS_MODULE) | ||
| 275 | |||
| 264 | struct host1x_device { | 276 | struct host1x_device { |
| 265 | struct host1x_driver *driver; | 277 | struct host1x_driver *driver; |
| 266 | struct list_head list; | 278 | struct list_head list; |
| @@ -272,6 +284,8 @@ struct host1x_device { | |||
| 272 | 284 | ||
| 273 | struct mutex clients_lock; | 285 | struct mutex clients_lock; |
| 274 | struct list_head clients; | 286 | struct list_head clients; |
| 287 | |||
| 288 | bool registered; | ||
| 275 | }; | 289 | }; |
| 276 | 290 | ||
| 277 | static inline struct host1x_device *to_host1x_device(struct device *dev) | 291 | static inline struct host1x_device *to_host1x_device(struct device *dev) |
diff --git a/include/linux/huge_mm.h b/include/linux/huge_mm.h index ad9051bab267..f10b20f05159 100644 --- a/include/linux/huge_mm.h +++ b/include/linux/huge_mm.h | |||
| @@ -157,6 +157,13 @@ static inline int hpage_nr_pages(struct page *page) | |||
| 157 | extern int do_huge_pmd_numa_page(struct mm_struct *mm, struct vm_area_struct *vma, | 157 | extern int do_huge_pmd_numa_page(struct mm_struct *mm, struct vm_area_struct *vma, |
| 158 | unsigned long addr, pmd_t pmd, pmd_t *pmdp); | 158 | unsigned long addr, pmd_t pmd, pmd_t *pmdp); |
| 159 | 159 | ||
| 160 | extern struct page *huge_zero_page; | ||
| 161 | |||
| 162 | static inline bool is_huge_zero_page(struct page *page) | ||
| 163 | { | ||
| 164 | return ACCESS_ONCE(huge_zero_page) == page; | ||
| 165 | } | ||
| 166 | |||
| 160 | #else /* CONFIG_TRANSPARENT_HUGEPAGE */ | 167 | #else /* CONFIG_TRANSPARENT_HUGEPAGE */ |
| 161 | #define HPAGE_PMD_SHIFT ({ BUILD_BUG(); 0; }) | 168 | #define HPAGE_PMD_SHIFT ({ BUILD_BUG(); 0; }) |
| 162 | #define HPAGE_PMD_MASK ({ BUILD_BUG(); 0; }) | 169 | #define HPAGE_PMD_MASK ({ BUILD_BUG(); 0; }) |
| @@ -206,6 +213,11 @@ static inline int do_huge_pmd_numa_page(struct mm_struct *mm, struct vm_area_str | |||
| 206 | return 0; | 213 | return 0; |
| 207 | } | 214 | } |
| 208 | 215 | ||
| 216 | static inline bool is_huge_zero_page(struct page *page) | ||
| 217 | { | ||
| 218 | return false; | ||
| 219 | } | ||
| 220 | |||
| 209 | #endif /* CONFIG_TRANSPARENT_HUGEPAGE */ | 221 | #endif /* CONFIG_TRANSPARENT_HUGEPAGE */ |
| 210 | 222 | ||
| 211 | #endif /* _LINUX_HUGE_MM_H */ | 223 | #endif /* _LINUX_HUGE_MM_H */ |
diff --git a/include/linux/hugetlb.h b/include/linux/hugetlb.h index 7d7856359920..7b5785032049 100644 --- a/include/linux/hugetlb.h +++ b/include/linux/hugetlb.h | |||
| @@ -99,9 +99,9 @@ int huge_pmd_unshare(struct mm_struct *mm, unsigned long *addr, pte_t *ptep); | |||
| 99 | struct page *follow_huge_addr(struct mm_struct *mm, unsigned long address, | 99 | struct page *follow_huge_addr(struct mm_struct *mm, unsigned long address, |
| 100 | int write); | 100 | int write); |
| 101 | struct page *follow_huge_pmd(struct mm_struct *mm, unsigned long address, | 101 | struct page *follow_huge_pmd(struct mm_struct *mm, unsigned long address, |
| 102 | pmd_t *pmd, int write); | 102 | pmd_t *pmd, int flags); |
| 103 | struct page *follow_huge_pud(struct mm_struct *mm, unsigned long address, | 103 | struct page *follow_huge_pud(struct mm_struct *mm, unsigned long address, |
| 104 | pud_t *pud, int write); | 104 | pud_t *pud, int flags); |
| 105 | int pmd_huge(pmd_t pmd); | 105 | int pmd_huge(pmd_t pmd); |
| 106 | int pud_huge(pud_t pmd); | 106 | int pud_huge(pud_t pmd); |
| 107 | unsigned long hugetlb_change_protection(struct vm_area_struct *vma, | 107 | unsigned long hugetlb_change_protection(struct vm_area_struct *vma, |
| @@ -133,8 +133,8 @@ static inline void hugetlb_report_meminfo(struct seq_file *m) | |||
| 133 | static inline void hugetlb_show_meminfo(void) | 133 | static inline void hugetlb_show_meminfo(void) |
| 134 | { | 134 | { |
| 135 | } | 135 | } |
| 136 | #define follow_huge_pmd(mm, addr, pmd, write) NULL | 136 | #define follow_huge_pmd(mm, addr, pmd, flags) NULL |
| 137 | #define follow_huge_pud(mm, addr, pud, write) NULL | 137 | #define follow_huge_pud(mm, addr, pud, flags) NULL |
| 138 | #define prepare_hugepage_range(file, addr, len) (-EINVAL) | 138 | #define prepare_hugepage_range(file, addr, len) (-EINVAL) |
| 139 | #define pmd_huge(x) 0 | 139 | #define pmd_huge(x) 0 |
| 140 | #define pud_huge(x) 0 | 140 | #define pud_huge(x) 0 |
diff --git a/include/linux/hw_random.h b/include/linux/hw_random.h index 914bb08cd738..eb7b414d232b 100644 --- a/include/linux/hw_random.h +++ b/include/linux/hw_random.h | |||
| @@ -12,8 +12,10 @@ | |||
| 12 | #ifndef LINUX_HWRANDOM_H_ | 12 | #ifndef LINUX_HWRANDOM_H_ |
| 13 | #define LINUX_HWRANDOM_H_ | 13 | #define LINUX_HWRANDOM_H_ |
| 14 | 14 | ||
| 15 | #include <linux/completion.h> | ||
| 15 | #include <linux/types.h> | 16 | #include <linux/types.h> |
| 16 | #include <linux/list.h> | 17 | #include <linux/list.h> |
| 18 | #include <linux/kref.h> | ||
| 17 | 19 | ||
| 18 | /** | 20 | /** |
| 19 | * struct hwrng - Hardware Random Number Generator driver | 21 | * struct hwrng - Hardware Random Number Generator driver |
| @@ -44,6 +46,8 @@ struct hwrng { | |||
| 44 | 46 | ||
| 45 | /* internal. */ | 47 | /* internal. */ |
| 46 | struct list_head list; | 48 | struct list_head list; |
| 49 | struct kref ref; | ||
| 50 | struct completion cleanup_done; | ||
| 47 | }; | 51 | }; |
| 48 | 52 | ||
| 49 | /** Register a new Hardware Random Number Generator driver. */ | 53 | /** Register a new Hardware Random Number Generator driver. */ |
diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h index 476c685ca6f9..5a2ba674795e 100644 --- a/include/linux/hyperv.h +++ b/include/linux/hyperv.h | |||
| @@ -57,6 +57,18 @@ struct hv_multipage_buffer { | |||
| 57 | u64 pfn_array[MAX_MULTIPAGE_BUFFER_COUNT]; | 57 | u64 pfn_array[MAX_MULTIPAGE_BUFFER_COUNT]; |
| 58 | }; | 58 | }; |
| 59 | 59 | ||
| 60 | /* | ||
| 61 | * Multiple-page buffer array; the pfn array is variable size: | ||
| 62 | * The number of entries in the PFN array is determined by | ||
| 63 | * "len" and "offset". | ||
| 64 | */ | ||
| 65 | struct hv_mpb_array { | ||
| 66 | /* Length and Offset determines the # of pfns in the array */ | ||
| 67 | u32 len; | ||
| 68 | u32 offset; | ||
| 69 | u64 pfn_array[]; | ||
| 70 | }; | ||
| 71 | |||
| 60 | /* 0x18 includes the proprietary packet header */ | 72 | /* 0x18 includes the proprietary packet header */ |
| 61 | #define MAX_PAGE_BUFFER_PACKET (0x18 + \ | 73 | #define MAX_PAGE_BUFFER_PACKET (0x18 + \ |
| 62 | (sizeof(struct hv_page_buffer) * \ | 74 | (sizeof(struct hv_page_buffer) * \ |
| @@ -722,7 +734,12 @@ struct vmbus_channel { | |||
| 722 | */ | 734 | */ |
| 723 | void (*sc_creation_callback)(struct vmbus_channel *new_sc); | 735 | void (*sc_creation_callback)(struct vmbus_channel *new_sc); |
| 724 | 736 | ||
| 725 | spinlock_t sc_lock; | 737 | /* |
| 738 | * The spinlock to protect the structure. It is being used to protect | ||
| 739 | * test-and-set access to various attributes of the structure as well | ||
| 740 | * as all sc_list operations. | ||
| 741 | */ | ||
| 742 | spinlock_t lock; | ||
| 726 | /* | 743 | /* |
| 727 | * All Sub-channels of a primary channel are linked here. | 744 | * All Sub-channels of a primary channel are linked here. |
| 728 | */ | 745 | */ |
| @@ -814,6 +831,18 @@ struct vmbus_channel_packet_multipage_buffer { | |||
| 814 | struct hv_multipage_buffer range; | 831 | struct hv_multipage_buffer range; |
| 815 | } __packed; | 832 | } __packed; |
| 816 | 833 | ||
| 834 | /* The format must be the same as struct vmdata_gpa_direct */ | ||
| 835 | struct vmbus_packet_mpb_array { | ||
| 836 | u16 type; | ||
| 837 | u16 dataoffset8; | ||
| 838 | u16 length8; | ||
| 839 | u16 flags; | ||
| 840 | u64 transactionid; | ||
| 841 | u32 reserved; | ||
| 842 | u32 rangecount; /* Always 1 in this case */ | ||
| 843 | struct hv_mpb_array range; | ||
| 844 | } __packed; | ||
| 845 | |||
| 817 | 846 | ||
| 818 | extern int vmbus_open(struct vmbus_channel *channel, | 847 | extern int vmbus_open(struct vmbus_channel *channel, |
| 819 | u32 send_ringbuffersize, | 848 | u32 send_ringbuffersize, |
| @@ -845,6 +874,13 @@ extern int vmbus_sendpacket_multipagebuffer(struct vmbus_channel *channel, | |||
| 845 | u32 bufferlen, | 874 | u32 bufferlen, |
| 846 | u64 requestid); | 875 | u64 requestid); |
| 847 | 876 | ||
| 877 | extern int vmbus_sendpacket_mpb_desc(struct vmbus_channel *channel, | ||
| 878 | struct vmbus_packet_mpb_array *mpb, | ||
| 879 | u32 desc_size, | ||
| 880 | void *buffer, | ||
| 881 | u32 bufferlen, | ||
| 882 | u64 requestid); | ||
| 883 | |||
| 848 | extern int vmbus_establish_gpadl(struct vmbus_channel *channel, | 884 | extern int vmbus_establish_gpadl(struct vmbus_channel *channel, |
| 849 | void *kbuffer, | 885 | void *kbuffer, |
| 850 | u32 size, | 886 | u32 size, |
diff --git a/include/linux/i2o.h b/include/linux/i2o.h deleted file mode 100644 index d23c3c20b201..000000000000 --- a/include/linux/i2o.h +++ /dev/null | |||
| @@ -1,988 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * I2O kernel space accessible structures/APIs | ||
| 3 | * | ||
| 4 | * (c) Copyright 1999, 2000 Red Hat Software | ||
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or | ||
| 7 | * modify it under the terms of the GNU General Public License | ||
| 8 | * as published by the Free Software Foundation; either version | ||
| 9 | * 2 of the License, or (at your option) any later version. | ||
| 10 | * | ||
| 11 | ************************************************************************* | ||
| 12 | * | ||
| 13 | * This header file defined the I2O APIs/structures for use by | ||
| 14 | * the I2O kernel modules. | ||
| 15 | * | ||
| 16 | */ | ||
| 17 | |||
| 18 | #ifndef _I2O_H | ||
| 19 | #define _I2O_H | ||
| 20 | |||
| 21 | #include <linux/i2o-dev.h> | ||
| 22 | |||
| 23 | /* How many different OSM's are we allowing */ | ||
| 24 | #define I2O_MAX_DRIVERS 8 | ||
| 25 | |||
| 26 | #include <linux/pci.h> | ||
| 27 | #include <linux/bug.h> | ||
| 28 | #include <linux/dma-mapping.h> | ||
| 29 | #include <linux/string.h> | ||
| 30 | #include <linux/slab.h> | ||
| 31 | #include <linux/workqueue.h> /* work_struct */ | ||
| 32 | #include <linux/mempool.h> | ||
| 33 | #include <linux/mutex.h> | ||
| 34 | #include <linux/scatterlist.h> | ||
| 35 | #include <linux/semaphore.h> /* Needed for MUTEX init macros */ | ||
| 36 | |||
| 37 | #include <asm/io.h> | ||
| 38 | |||
| 39 | /* message queue empty */ | ||
| 40 | #define I2O_QUEUE_EMPTY 0xffffffff | ||
| 41 | |||
| 42 | /* | ||
| 43 | * Cache strategies | ||
| 44 | */ | ||
| 45 | |||
| 46 | /* The NULL strategy leaves everything up to the controller. This tends to be a | ||
| 47 | * pessimal but functional choice. | ||
| 48 | */ | ||
| 49 | #define CACHE_NULL 0 | ||
| 50 | /* Prefetch data when reading. We continually attempt to load the next 32 sectors | ||
| 51 | * into the controller cache. | ||
| 52 | */ | ||
| 53 | #define CACHE_PREFETCH 1 | ||
| 54 | /* Prefetch data when reading. We sometimes attempt to load the next 32 sectors | ||
| 55 | * into the controller cache. When an I/O is less <= 8K we assume its probably | ||
| 56 | * not sequential and don't prefetch (default) | ||
| 57 | */ | ||
| 58 | #define CACHE_SMARTFETCH 2 | ||
| 59 | /* Data is written to the cache and then out on to the disk. The I/O must be | ||
| 60 | * physically on the medium before the write is acknowledged (default without | ||
| 61 | * NVRAM) | ||
| 62 | */ | ||
| 63 | #define CACHE_WRITETHROUGH 17 | ||
| 64 | /* Data is written to the cache and then out on to the disk. The controller | ||
| 65 | * is permitted to write back the cache any way it wants. (default if battery | ||
| 66 | * backed NVRAM is present). It can be useful to set this for swap regardless of | ||
| 67 | * battery state. | ||
| 68 | */ | ||
| 69 | #define CACHE_WRITEBACK 18 | ||
| 70 | /* Optimise for under powered controllers, especially on RAID1 and RAID0. We | ||
| 71 | * write large I/O's directly to disk bypassing the cache to avoid the extra | ||
| 72 | * memory copy hits. Small writes are writeback cached | ||
| 73 | */ | ||
| 74 | #define CACHE_SMARTBACK 19 | ||
| 75 | /* Optimise for under powered controllers, especially on RAID1 and RAID0. We | ||
| 76 | * write large I/O's directly to disk bypassing the cache to avoid the extra | ||
| 77 | * memory copy hits. Small writes are writethrough cached. Suitable for devices | ||
| 78 | * lacking battery backup | ||
| 79 | */ | ||
| 80 | #define CACHE_SMARTTHROUGH 20 | ||
| 81 | |||
| 82 | /* | ||
| 83 | * Ioctl structures | ||
| 84 | */ | ||
| 85 | |||
| 86 | #define BLKI2OGRSTRAT _IOR('2', 1, int) | ||
| 87 | #define BLKI2OGWSTRAT _IOR('2', 2, int) | ||
| 88 | #define BLKI2OSRSTRAT _IOW('2', 3, int) | ||
| 89 | #define BLKI2OSWSTRAT _IOW('2', 4, int) | ||
| 90 | |||
| 91 | /* | ||
| 92 | * I2O Function codes | ||
| 93 | */ | ||
| 94 | |||
| 95 | /* | ||
| 96 | * Executive Class | ||
| 97 | */ | ||
| 98 | #define I2O_CMD_ADAPTER_ASSIGN 0xB3 | ||
| 99 | #define I2O_CMD_ADAPTER_READ 0xB2 | ||
| 100 | #define I2O_CMD_ADAPTER_RELEASE 0xB5 | ||
| 101 | #define I2O_CMD_BIOS_INFO_SET 0xA5 | ||
| 102 | #define I2O_CMD_BOOT_DEVICE_SET 0xA7 | ||
| 103 | #define I2O_CMD_CONFIG_VALIDATE 0xBB | ||
| 104 | #define I2O_CMD_CONN_SETUP 0xCA | ||
| 105 | #define I2O_CMD_DDM_DESTROY 0xB1 | ||
| 106 | #define I2O_CMD_DDM_ENABLE 0xD5 | ||
| 107 | #define I2O_CMD_DDM_QUIESCE 0xC7 | ||
| 108 | #define I2O_CMD_DDM_RESET 0xD9 | ||
| 109 | #define I2O_CMD_DDM_SUSPEND 0xAF | ||
| 110 | #define I2O_CMD_DEVICE_ASSIGN 0xB7 | ||
| 111 | #define I2O_CMD_DEVICE_RELEASE 0xB9 | ||
| 112 | #define I2O_CMD_HRT_GET 0xA8 | ||
| 113 | #define I2O_CMD_ADAPTER_CLEAR 0xBE | ||
| 114 | #define I2O_CMD_ADAPTER_CONNECT 0xC9 | ||
| 115 | #define I2O_CMD_ADAPTER_RESET 0xBD | ||
| 116 | #define I2O_CMD_LCT_NOTIFY 0xA2 | ||
| 117 | #define I2O_CMD_OUTBOUND_INIT 0xA1 | ||
| 118 | #define I2O_CMD_PATH_ENABLE 0xD3 | ||
| 119 | #define I2O_CMD_PATH_QUIESCE 0xC5 | ||
| 120 | #define I2O_CMD_PATH_RESET 0xD7 | ||
| 121 | #define I2O_CMD_STATIC_MF_CREATE 0xDD | ||
| 122 | #define I2O_CMD_STATIC_MF_RELEASE 0xDF | ||
| 123 | #define I2O_CMD_STATUS_GET 0xA0 | ||
| 124 | #define I2O_CMD_SW_DOWNLOAD 0xA9 | ||
| 125 | #define I2O_CMD_SW_UPLOAD 0xAB | ||
| 126 | #define I2O_CMD_SW_REMOVE 0xAD | ||
| 127 | #define I2O_CMD_SYS_ENABLE 0xD1 | ||
| 128 | #define I2O_CMD_SYS_MODIFY 0xC1 | ||
| 129 | #define I2O_CMD_SYS_QUIESCE 0xC3 | ||
| 130 | #define I2O_CMD_SYS_TAB_SET 0xA3 | ||
| 131 | |||
| 132 | /* | ||
| 133 | * Utility Class | ||
| 134 | */ | ||
| 135 | #define I2O_CMD_UTIL_NOP 0x00 | ||
| 136 | #define I2O_CMD_UTIL_ABORT 0x01 | ||
| 137 | #define I2O_CMD_UTIL_CLAIM 0x09 | ||
| 138 | #define I2O_CMD_UTIL_RELEASE 0x0B | ||
| 139 | #define I2O_CMD_UTIL_PARAMS_GET 0x06 | ||
| 140 | #define I2O_CMD_UTIL_PARAMS_SET 0x05 | ||
| 141 | #define I2O_CMD_UTIL_EVT_REGISTER 0x13 | ||
| 142 | #define I2O_CMD_UTIL_EVT_ACK 0x14 | ||
| 143 | #define I2O_CMD_UTIL_CONFIG_DIALOG 0x10 | ||
| 144 | #define I2O_CMD_UTIL_DEVICE_RESERVE 0x0D | ||
| 145 | #define I2O_CMD_UTIL_DEVICE_RELEASE 0x0F | ||
| 146 | #define I2O_CMD_UTIL_LOCK 0x17 | ||
| 147 | #define I2O_CMD_UTIL_LOCK_RELEASE 0x19 | ||
| 148 | #define I2O_CMD_UTIL_REPLY_FAULT_NOTIFY 0x15 | ||
| 149 | |||
| 150 | /* | ||
| 151 | * SCSI Host Bus Adapter Class | ||
| 152 | */ | ||
| 153 | #define I2O_CMD_SCSI_EXEC 0x81 | ||
| 154 | #define I2O_CMD_SCSI_ABORT 0x83 | ||
| 155 | #define I2O_CMD_SCSI_BUSRESET 0x27 | ||
| 156 | |||
| 157 | /* | ||
| 158 | * Bus Adapter Class | ||
| 159 | */ | ||
| 160 | #define I2O_CMD_BUS_ADAPTER_RESET 0x85 | ||
| 161 | #define I2O_CMD_BUS_RESET 0x87 | ||
| 162 | #define I2O_CMD_BUS_SCAN 0x89 | ||
| 163 | #define I2O_CMD_BUS_QUIESCE 0x8b | ||
| 164 | |||
| 165 | /* | ||
| 166 | * Random Block Storage Class | ||
| 167 | */ | ||
| 168 | #define I2O_CMD_BLOCK_READ 0x30 | ||
| 169 | #define I2O_CMD_BLOCK_WRITE 0x31 | ||
| 170 | #define I2O_CMD_BLOCK_CFLUSH 0x37 | ||
| 171 | #define I2O_CMD_BLOCK_MLOCK 0x49 | ||
| 172 | #define I2O_CMD_BLOCK_MUNLOCK 0x4B | ||
| 173 | #define I2O_CMD_BLOCK_MMOUNT 0x41 | ||
| 174 | #define I2O_CMD_BLOCK_MEJECT 0x43 | ||
| 175 | #define I2O_CMD_BLOCK_POWER 0x70 | ||
| 176 | |||
| 177 | #define I2O_CMD_PRIVATE 0xFF | ||
| 178 | |||
| 179 | /* Command status values */ | ||
| 180 | |||
| 181 | #define I2O_CMD_IN_PROGRESS 0x01 | ||
| 182 | #define I2O_CMD_REJECTED 0x02 | ||
| 183 | #define I2O_CMD_FAILED 0x03 | ||
| 184 | #define I2O_CMD_COMPLETED 0x04 | ||
| 185 | |||
| 186 | /* I2O API function return values */ | ||
| 187 | |||
| 188 | #define I2O_RTN_NO_ERROR 0 | ||
| 189 | #define I2O_RTN_NOT_INIT 1 | ||
| 190 | #define I2O_RTN_FREE_Q_EMPTY 2 | ||
| 191 | #define I2O_RTN_TCB_ERROR 3 | ||
| 192 | #define I2O_RTN_TRANSACTION_ERROR 4 | ||
| 193 | #define I2O_RTN_ADAPTER_ALREADY_INIT 5 | ||
| 194 | #define I2O_RTN_MALLOC_ERROR 6 | ||
| 195 | #define I2O_RTN_ADPTR_NOT_REGISTERED 7 | ||
| 196 | #define I2O_RTN_MSG_REPLY_TIMEOUT 8 | ||
| 197 | #define I2O_RTN_NO_STATUS 9 | ||
| 198 | #define I2O_RTN_NO_FIRM_VER 10 | ||
| 199 | #define I2O_RTN_NO_LINK_SPEED 11 | ||
| 200 | |||
| 201 | /* Reply message status defines for all messages */ | ||
| 202 | |||
| 203 | #define I2O_REPLY_STATUS_SUCCESS 0x00 | ||
| 204 | #define I2O_REPLY_STATUS_ABORT_DIRTY 0x01 | ||
| 205 | #define I2O_REPLY_STATUS_ABORT_NO_DATA_TRANSFER 0x02 | ||
| 206 | #define I2O_REPLY_STATUS_ABORT_PARTIAL_TRANSFER 0x03 | ||
| 207 | #define I2O_REPLY_STATUS_ERROR_DIRTY 0x04 | ||
| 208 | #define I2O_REPLY_STATUS_ERROR_NO_DATA_TRANSFER 0x05 | ||
| 209 | #define I2O_REPLY_STATUS_ERROR_PARTIAL_TRANSFER 0x06 | ||
| 210 | #define I2O_REPLY_STATUS_PROCESS_ABORT_DIRTY 0x08 | ||
| 211 | #define I2O_REPLY_STATUS_PROCESS_ABORT_NO_DATA_TRANSFER 0x09 | ||
| 212 | #define I2O_REPLY_STATUS_PROCESS_ABORT_PARTIAL_TRANSFER 0x0A | ||
| 213 | #define I2O_REPLY_STATUS_TRANSACTION_ERROR 0x0B | ||
| 214 | #define I2O_REPLY_STATUS_PROGRESS_REPORT 0x80 | ||
| 215 | |||
| 216 | /* Status codes and Error Information for Parameter functions */ | ||
| 217 | |||
| 218 | #define I2O_PARAMS_STATUS_SUCCESS 0x00 | ||
| 219 | #define I2O_PARAMS_STATUS_BAD_KEY_ABORT 0x01 | ||
| 220 | #define I2O_PARAMS_STATUS_BAD_KEY_CONTINUE 0x02 | ||
| 221 | #define I2O_PARAMS_STATUS_BUFFER_FULL 0x03 | ||
| 222 | #define I2O_PARAMS_STATUS_BUFFER_TOO_SMALL 0x04 | ||
| 223 | #define I2O_PARAMS_STATUS_FIELD_UNREADABLE 0x05 | ||
| 224 | #define I2O_PARAMS_STATUS_FIELD_UNWRITEABLE 0x06 | ||
| 225 | #define I2O_PARAMS_STATUS_INSUFFICIENT_FIELDS 0x07 | ||
| 226 | #define I2O_PARAMS_STATUS_INVALID_GROUP_ID 0x08 | ||
| 227 | #define I2O_PARAMS_STATUS_INVALID_OPERATION 0x09 | ||
| 228 | #define I2O_PARAMS_STATUS_NO_KEY_FIELD 0x0A | ||
| 229 | #define I2O_PARAMS_STATUS_NO_SUCH_FIELD 0x0B | ||
| 230 | #define I2O_PARAMS_STATUS_NON_DYNAMIC_GROUP 0x0C | ||
| 231 | #define I2O_PARAMS_STATUS_OPERATION_ERROR 0x0D | ||
| 232 | #define I2O_PARAMS_STATUS_SCALAR_ERROR 0x0E | ||
| 233 | #define I2O_PARAMS_STATUS_TABLE_ERROR 0x0F | ||
| 234 | #define I2O_PARAMS_STATUS_WRONG_GROUP_TYPE 0x10 | ||
| 235 | |||
| 236 | /* DetailedStatusCode defines for Executive, DDM, Util and Transaction error | ||
| 237 | * messages: Table 3-2 Detailed Status Codes.*/ | ||
| 238 | |||
| 239 | #define I2O_DSC_SUCCESS 0x0000 | ||
| 240 | #define I2O_DSC_BAD_KEY 0x0002 | ||
| 241 | #define I2O_DSC_TCL_ERROR 0x0003 | ||
| 242 | #define I2O_DSC_REPLY_BUFFER_FULL 0x0004 | ||
| 243 | #define I2O_DSC_NO_SUCH_PAGE 0x0005 | ||
| 244 | #define I2O_DSC_INSUFFICIENT_RESOURCE_SOFT 0x0006 | ||
| 245 | #define I2O_DSC_INSUFFICIENT_RESOURCE_HARD 0x0007 | ||
| 246 | #define I2O_DSC_CHAIN_BUFFER_TOO_LARGE 0x0009 | ||
| 247 | #define I2O_DSC_UNSUPPORTED_FUNCTION 0x000A | ||
| 248 | #define I2O_DSC_DEVICE_LOCKED 0x000B | ||
| 249 | #define I2O_DSC_DEVICE_RESET 0x000C | ||
| 250 | #define I2O_DSC_INAPPROPRIATE_FUNCTION 0x000D | ||
| 251 | #define I2O_DSC_INVALID_INITIATOR_ADDRESS 0x000E | ||
| 252 | #define I2O_DSC_INVALID_MESSAGE_FLAGS 0x000F | ||
| 253 | #define I2O_DSC_INVALID_OFFSET 0x0010 | ||
| 254 | #define I2O_DSC_INVALID_PARAMETER 0x0011 | ||
| 255 | #define I2O_DSC_INVALID_REQUEST 0x0012 | ||
| 256 | #define I2O_DSC_INVALID_TARGET_ADDRESS 0x0013 | ||
| 257 | #define I2O_DSC_MESSAGE_TOO_LARGE 0x0014 | ||
| 258 | #define I2O_DSC_MESSAGE_TOO_SMALL 0x0015 | ||
| 259 | #define I2O_DSC_MISSING_PARAMETER 0x0016 | ||
| 260 | #define I2O_DSC_TIMEOUT 0x0017 | ||
| 261 | #define I2O_DSC_UNKNOWN_ERROR 0x0018 | ||
| 262 | #define I2O_DSC_UNKNOWN_FUNCTION 0x0019 | ||
| 263 | #define I2O_DSC_UNSUPPORTED_VERSION 0x001A | ||
| 264 | #define I2O_DSC_DEVICE_BUSY 0x001B | ||
| 265 | #define I2O_DSC_DEVICE_NOT_AVAILABLE 0x001C | ||
| 266 | |||
| 267 | /* DetailedStatusCode defines for Block Storage Operation: Table 6-7 Detailed | ||
| 268 | Status Codes.*/ | ||
| 269 | |||
| 270 | #define I2O_BSA_DSC_SUCCESS 0x0000 | ||
| 271 | #define I2O_BSA_DSC_MEDIA_ERROR 0x0001 | ||
| 272 | #define I2O_BSA_DSC_ACCESS_ERROR 0x0002 | ||
| 273 | #define I2O_BSA_DSC_DEVICE_FAILURE 0x0003 | ||
| 274 | #define I2O_BSA_DSC_DEVICE_NOT_READY 0x0004 | ||
| 275 | #define I2O_BSA_DSC_MEDIA_NOT_PRESENT 0x0005 | ||
| 276 | #define I2O_BSA_DSC_MEDIA_LOCKED 0x0006 | ||
| 277 | #define I2O_BSA_DSC_MEDIA_FAILURE 0x0007 | ||
| 278 | #define I2O_BSA_DSC_PROTOCOL_FAILURE 0x0008 | ||
| 279 | #define I2O_BSA_DSC_BUS_FAILURE 0x0009 | ||
| 280 | #define I2O_BSA_DSC_ACCESS_VIOLATION 0x000A | ||
| 281 | #define I2O_BSA_DSC_WRITE_PROTECTED 0x000B | ||
| 282 | #define I2O_BSA_DSC_DEVICE_RESET 0x000C | ||
| 283 | #define I2O_BSA_DSC_VOLUME_CHANGED 0x000D | ||
| 284 | #define I2O_BSA_DSC_TIMEOUT 0x000E | ||
| 285 | |||
| 286 | /* FailureStatusCodes, Table 3-3 Message Failure Codes */ | ||
| 287 | |||
| 288 | #define I2O_FSC_TRANSPORT_SERVICE_SUSPENDED 0x81 | ||
| 289 | #define I2O_FSC_TRANSPORT_SERVICE_TERMINATED 0x82 | ||
| 290 | #define I2O_FSC_TRANSPORT_CONGESTION 0x83 | ||
| 291 | #define I2O_FSC_TRANSPORT_FAILURE 0x84 | ||
| 292 | #define I2O_FSC_TRANSPORT_STATE_ERROR 0x85 | ||
| 293 | #define I2O_FSC_TRANSPORT_TIME_OUT 0x86 | ||
| 294 | #define I2O_FSC_TRANSPORT_ROUTING_FAILURE 0x87 | ||
| 295 | #define I2O_FSC_TRANSPORT_INVALID_VERSION 0x88 | ||
| 296 | #define I2O_FSC_TRANSPORT_INVALID_OFFSET 0x89 | ||
| 297 | #define I2O_FSC_TRANSPORT_INVALID_MSG_FLAGS 0x8A | ||
| 298 | #define I2O_FSC_TRANSPORT_FRAME_TOO_SMALL 0x8B | ||
| 299 | #define I2O_FSC_TRANSPORT_FRAME_TOO_LARGE 0x8C | ||
| 300 | #define I2O_FSC_TRANSPORT_INVALID_TARGET_ID 0x8D | ||
| 301 | #define I2O_FSC_TRANSPORT_INVALID_INITIATOR_ID 0x8E | ||
| 302 | #define I2O_FSC_TRANSPORT_INVALID_INITIATOR_CONTEXT 0x8F | ||
| 303 | #define I2O_FSC_TRANSPORT_UNKNOWN_FAILURE 0xFF | ||
| 304 | |||
| 305 | /* Device Claim Types */ | ||
| 306 | #define I2O_CLAIM_PRIMARY 0x01000000 | ||
| 307 | #define I2O_CLAIM_MANAGEMENT 0x02000000 | ||
| 308 | #define I2O_CLAIM_AUTHORIZED 0x03000000 | ||
| 309 | #define I2O_CLAIM_SECONDARY 0x04000000 | ||
| 310 | |||
| 311 | /* Message header defines for VersionOffset */ | ||
| 312 | #define I2OVER15 0x0001 | ||
| 313 | #define I2OVER20 0x0002 | ||
| 314 | |||
| 315 | /* Default is 1.5 */ | ||
| 316 | #define I2OVERSION I2OVER15 | ||
| 317 | |||
| 318 | #define SGL_OFFSET_0 I2OVERSION | ||
| 319 | #define SGL_OFFSET_4 (0x0040 | I2OVERSION) | ||
| 320 | #define SGL_OFFSET_5 (0x0050 | I2OVERSION) | ||
| 321 | #define SGL_OFFSET_6 (0x0060 | I2OVERSION) | ||
| 322 | #define SGL_OFFSET_7 (0x0070 | I2OVERSION) | ||
| 323 | #define SGL_OFFSET_8 (0x0080 | I2OVERSION) | ||
| 324 | #define SGL_OFFSET_9 (0x0090 | I2OVERSION) | ||
| 325 | #define SGL_OFFSET_10 (0x00A0 | I2OVERSION) | ||
| 326 | #define SGL_OFFSET_11 (0x00B0 | I2OVERSION) | ||
| 327 | #define SGL_OFFSET_12 (0x00C0 | I2OVERSION) | ||
| 328 | #define SGL_OFFSET(x) (((x)<<4) | I2OVERSION) | ||
| 329 | |||
| 330 | /* Transaction Reply Lists (TRL) Control Word structure */ | ||
| 331 | #define TRL_SINGLE_FIXED_LENGTH 0x00 | ||
| 332 | #define TRL_SINGLE_VARIABLE_LENGTH 0x40 | ||
| 333 | #define TRL_MULTIPLE_FIXED_LENGTH 0x80 | ||
| 334 | |||
| 335 | /* msg header defines for MsgFlags */ | ||
| 336 | #define MSG_STATIC 0x0100 | ||
| 337 | #define MSG_64BIT_CNTXT 0x0200 | ||
| 338 | #define MSG_MULTI_TRANS 0x1000 | ||
| 339 | #define MSG_FAIL 0x2000 | ||
| 340 | #define MSG_FINAL 0x4000 | ||
| 341 | #define MSG_REPLY 0x8000 | ||
| 342 | |||
| 343 | /* minimum size msg */ | ||
| 344 | #define THREE_WORD_MSG_SIZE 0x00030000 | ||
| 345 | #define FOUR_WORD_MSG_SIZE 0x00040000 | ||
| 346 | #define FIVE_WORD_MSG_SIZE 0x00050000 | ||
| 347 | #define SIX_WORD_MSG_SIZE 0x00060000 | ||
| 348 | #define SEVEN_WORD_MSG_SIZE 0x00070000 | ||
| 349 | #define EIGHT_WORD_MSG_SIZE 0x00080000 | ||
| 350 | #define NINE_WORD_MSG_SIZE 0x00090000 | ||
| 351 | #define TEN_WORD_MSG_SIZE 0x000A0000 | ||
| 352 | #define ELEVEN_WORD_MSG_SIZE 0x000B0000 | ||
| 353 | #define I2O_MESSAGE_SIZE(x) ((x)<<16) | ||
| 354 | |||
| 355 | /* special TID assignments */ | ||
| 356 | #define ADAPTER_TID 0 | ||
| 357 | #define HOST_TID 1 | ||
| 358 | |||
| 359 | /* outbound queue defines */ | ||
| 360 | #define I2O_MAX_OUTBOUND_MSG_FRAMES 128 | ||
| 361 | #define I2O_OUTBOUND_MSG_FRAME_SIZE 128 /* in 32-bit words */ | ||
| 362 | |||
| 363 | /* inbound queue definitions */ | ||
| 364 | #define I2O_MSG_INPOOL_MIN 32 | ||
| 365 | #define I2O_INBOUND_MSG_FRAME_SIZE 128 /* in 32-bit words */ | ||
| 366 | |||
| 367 | #define I2O_POST_WAIT_OK 0 | ||
| 368 | #define I2O_POST_WAIT_TIMEOUT -ETIMEDOUT | ||
| 369 | |||
| 370 | #define I2O_CONTEXT_LIST_MIN_LENGTH 15 | ||
| 371 | #define I2O_CONTEXT_LIST_USED 0x01 | ||
| 372 | #define I2O_CONTEXT_LIST_DELETED 0x02 | ||
| 373 | |||
| 374 | /* timeouts */ | ||
| 375 | #define I2O_TIMEOUT_INIT_OUTBOUND_QUEUE 15 | ||
| 376 | #define I2O_TIMEOUT_MESSAGE_GET 5 | ||
| 377 | #define I2O_TIMEOUT_RESET 30 | ||
| 378 | #define I2O_TIMEOUT_STATUS_GET 5 | ||
| 379 | #define I2O_TIMEOUT_LCT_GET 360 | ||
| 380 | #define I2O_TIMEOUT_SCSI_SCB_ABORT 240 | ||
| 381 | |||
| 382 | /* retries */ | ||
| 383 | #define I2O_HRT_GET_TRIES 3 | ||
| 384 | #define I2O_LCT_GET_TRIES 3 | ||
| 385 | |||
| 386 | /* defines for max_sectors and max_phys_segments */ | ||
| 387 | #define I2O_MAX_SECTORS 1024 | ||
| 388 | #define I2O_MAX_SECTORS_LIMITED 128 | ||
| 389 | #define I2O_MAX_PHYS_SEGMENTS BLK_MAX_SEGMENTS | ||
| 390 | |||
| 391 | /* | ||
| 392 | * Message structures | ||
| 393 | */ | ||
| 394 | struct i2o_message { | ||
| 395 | union { | ||
| 396 | struct { | ||
| 397 | u8 version_offset; | ||
| 398 | u8 flags; | ||
| 399 | u16 size; | ||
| 400 | u32 target_tid:12; | ||
| 401 | u32 init_tid:12; | ||
| 402 | u32 function:8; | ||
| 403 | u32 icntxt; /* initiator context */ | ||
| 404 | u32 tcntxt; /* transaction context */ | ||
| 405 | } s; | ||
| 406 | u32 head[4]; | ||
| 407 | } u; | ||
| 408 | /* List follows */ | ||
| 409 | u32 body[0]; | ||
| 410 | }; | ||
| 411 | |||
| 412 | /* MFA and I2O message used by mempool */ | ||
| 413 | struct i2o_msg_mfa { | ||
| 414 | u32 mfa; /* MFA returned by the controller */ | ||
| 415 | struct i2o_message msg; /* I2O message */ | ||
| 416 | }; | ||
| 417 | |||
| 418 | /* | ||
| 419 | * Each I2O device entity has one of these. There is one per device. | ||
| 420 | */ | ||
| 421 | struct i2o_device { | ||
| 422 | i2o_lct_entry lct_data; /* Device LCT information */ | ||
| 423 | |||
| 424 | struct i2o_controller *iop; /* Controlling IOP */ | ||
| 425 | struct list_head list; /* node in IOP devices list */ | ||
| 426 | |||
| 427 | struct device device; | ||
| 428 | |||
| 429 | struct mutex lock; /* device lock */ | ||
| 430 | }; | ||
| 431 | |||
| 432 | /* | ||
| 433 | * Event structure provided to the event handling function | ||
| 434 | */ | ||
| 435 | struct i2o_event { | ||
| 436 | struct work_struct work; | ||
| 437 | struct i2o_device *i2o_dev; /* I2O device pointer from which the | ||
| 438 | event reply was initiated */ | ||
| 439 | u16 size; /* Size of data in 32-bit words */ | ||
| 440 | u32 tcntxt; /* Transaction context used at | ||
| 441 | registration */ | ||
| 442 | u32 event_indicator; /* Event indicator from reply */ | ||
| 443 | u32 data[0]; /* Event data from reply */ | ||
| 444 | }; | ||
| 445 | |||
| 446 | /* | ||
| 447 | * I2O classes which could be handled by the OSM | ||
| 448 | */ | ||
| 449 | struct i2o_class_id { | ||
| 450 | u16 class_id:12; | ||
| 451 | }; | ||
| 452 | |||
| 453 | /* | ||
| 454 | * I2O driver structure for OSMs | ||
| 455 | */ | ||
| 456 | struct i2o_driver { | ||
| 457 | char *name; /* OSM name */ | ||
| 458 | int context; /* Low 8 bits of the transaction info */ | ||
| 459 | struct i2o_class_id *classes; /* I2O classes that this OSM handles */ | ||
| 460 | |||
| 461 | /* Message reply handler */ | ||
| 462 | int (*reply) (struct i2o_controller *, u32, struct i2o_message *); | ||
| 463 | |||
| 464 | /* Event handler */ | ||
| 465 | work_func_t event; | ||
| 466 | |||
| 467 | struct workqueue_struct *event_queue; /* Event queue */ | ||
| 468 | |||
| 469 | struct device_driver driver; | ||
| 470 | |||
| 471 | /* notification of changes */ | ||
| 472 | void (*notify_controller_add) (struct i2o_controller *); | ||
| 473 | void (*notify_controller_remove) (struct i2o_controller *); | ||
| 474 | void (*notify_device_add) (struct i2o_device *); | ||
| 475 | void (*notify_device_remove) (struct i2o_device *); | ||
| 476 | |||
| 477 | struct semaphore lock; | ||
| 478 | }; | ||
| 479 | |||
| 480 | /* | ||
| 481 | * Contains DMA mapped address information | ||
| 482 | */ | ||
| 483 | struct i2o_dma { | ||
| 484 | void *virt; | ||
| 485 | dma_addr_t phys; | ||
| 486 | size_t len; | ||
| 487 | }; | ||
| 488 | |||
| 489 | /* | ||
| 490 | * Contains slab cache and mempool information | ||
| 491 | */ | ||
| 492 | struct i2o_pool { | ||
| 493 | char *name; | ||
| 494 | struct kmem_cache *slab; | ||
| 495 | mempool_t *mempool; | ||
| 496 | }; | ||
| 497 | |||
| 498 | /* | ||
| 499 | * Contains IO mapped address information | ||
| 500 | */ | ||
| 501 | struct i2o_io { | ||
| 502 | void __iomem *virt; | ||
| 503 | unsigned long phys; | ||
| 504 | unsigned long len; | ||
| 505 | }; | ||
| 506 | |||
| 507 | /* | ||
| 508 | * Context queue entry, used for 32-bit context on 64-bit systems | ||
| 509 | */ | ||
| 510 | struct i2o_context_list_element { | ||
| 511 | struct list_head list; | ||
| 512 | u32 context; | ||
| 513 | void *ptr; | ||
| 514 | unsigned long timestamp; | ||
| 515 | }; | ||
| 516 | |||
| 517 | /* | ||
| 518 | * Each I2O controller has one of these objects | ||
| 519 | */ | ||
| 520 | struct i2o_controller { | ||
| 521 | char name[16]; | ||
| 522 | int unit; | ||
| 523 | int type; | ||
| 524 | |||
| 525 | struct pci_dev *pdev; /* PCI device */ | ||
| 526 | |||
| 527 | unsigned int promise:1; /* Promise controller */ | ||
| 528 | unsigned int adaptec:1; /* DPT / Adaptec controller */ | ||
| 529 | unsigned int raptor:1; /* split bar */ | ||
| 530 | unsigned int no_quiesce:1; /* dont quiesce before reset */ | ||
| 531 | unsigned int short_req:1; /* use small block sizes */ | ||
| 532 | unsigned int limit_sectors:1; /* limit number of sectors / request */ | ||
| 533 | unsigned int pae_support:1; /* controller has 64-bit SGL support */ | ||
| 534 | |||
| 535 | struct list_head devices; /* list of I2O devices */ | ||
| 536 | struct list_head list; /* Controller list */ | ||
| 537 | |||
| 538 | void __iomem *in_port; /* Inbout port address */ | ||
| 539 | void __iomem *out_port; /* Outbound port address */ | ||
| 540 | void __iomem *irq_status; /* Interrupt status register address */ | ||
| 541 | void __iomem *irq_mask; /* Interrupt mask register address */ | ||
| 542 | |||
| 543 | struct i2o_dma status; /* IOP status block */ | ||
| 544 | |||
| 545 | struct i2o_dma hrt; /* HW Resource Table */ | ||
| 546 | i2o_lct *lct; /* Logical Config Table */ | ||
| 547 | struct i2o_dma dlct; /* Temp LCT */ | ||
| 548 | struct mutex lct_lock; /* Lock for LCT updates */ | ||
| 549 | struct i2o_dma status_block; /* IOP status block */ | ||
| 550 | |||
| 551 | struct i2o_io base; /* controller messaging unit */ | ||
| 552 | struct i2o_io in_queue; /* inbound message queue Host->IOP */ | ||
| 553 | struct i2o_dma out_queue; /* outbound message queue IOP->Host */ | ||
| 554 | |||
| 555 | struct i2o_pool in_msg; /* mempool for inbound messages */ | ||
| 556 | |||
| 557 | unsigned int battery:1; /* Has a battery backup */ | ||
| 558 | unsigned int io_alloc:1; /* An I/O resource was allocated */ | ||
| 559 | unsigned int mem_alloc:1; /* A memory resource was allocated */ | ||
| 560 | |||
| 561 | struct resource io_resource; /* I/O resource allocated to the IOP */ | ||
| 562 | struct resource mem_resource; /* Mem resource allocated to the IOP */ | ||
| 563 | |||
| 564 | struct device device; | ||
| 565 | struct i2o_device *exec; /* Executive */ | ||
| 566 | #if BITS_PER_LONG == 64 | ||
| 567 | spinlock_t context_list_lock; /* lock for context_list */ | ||
| 568 | atomic_t context_list_counter; /* needed for unique contexts */ | ||
| 569 | struct list_head context_list; /* list of context id's | ||
| 570 | and pointers */ | ||
| 571 | #endif | ||
| 572 | spinlock_t lock; /* lock for controller | ||
| 573 | configuration */ | ||
| 574 | void *driver_data[I2O_MAX_DRIVERS]; /* storage for drivers */ | ||
| 575 | }; | ||
| 576 | |||
| 577 | /* | ||
| 578 | * I2O System table entry | ||
| 579 | * | ||
| 580 | * The system table contains information about all the IOPs in the | ||
| 581 | * system. It is sent to all IOPs so that they can create peer2peer | ||
| 582 | * connections between them. | ||
| 583 | */ | ||
| 584 | struct i2o_sys_tbl_entry { | ||
| 585 | u16 org_id; | ||
| 586 | u16 reserved1; | ||
| 587 | u32 iop_id:12; | ||
| 588 | u32 reserved2:20; | ||
| 589 | u16 seg_num:12; | ||
| 590 | u16 i2o_version:4; | ||
| 591 | u8 iop_state; | ||
| 592 | u8 msg_type; | ||
| 593 | u16 frame_size; | ||
| 594 | u16 reserved3; | ||
| 595 | u32 last_changed; | ||
| 596 | u32 iop_capabilities; | ||
| 597 | u32 inbound_low; | ||
| 598 | u32 inbound_high; | ||
| 599 | }; | ||
| 600 | |||
| 601 | struct i2o_sys_tbl { | ||
| 602 | u8 num_entries; | ||
| 603 | u8 version; | ||
| 604 | u16 reserved1; | ||
| 605 | u32 change_ind; | ||
| 606 | u32 reserved2; | ||
| 607 | u32 reserved3; | ||
| 608 | struct i2o_sys_tbl_entry iops[0]; | ||
| 609 | }; | ||
| 610 | |||
| 611 | extern struct list_head i2o_controllers; | ||
| 612 | |||
| 613 | /* Message functions */ | ||
| 614 | extern struct i2o_message *i2o_msg_get_wait(struct i2o_controller *, int); | ||
| 615 | extern int i2o_msg_post_wait_mem(struct i2o_controller *, struct i2o_message *, | ||
| 616 | unsigned long, struct i2o_dma *); | ||
| 617 | |||
| 618 | /* IOP functions */ | ||
| 619 | extern int i2o_status_get(struct i2o_controller *); | ||
| 620 | |||
| 621 | extern int i2o_event_register(struct i2o_device *, struct i2o_driver *, int, | ||
| 622 | u32); | ||
| 623 | extern struct i2o_device *i2o_iop_find_device(struct i2o_controller *, u16); | ||
| 624 | extern struct i2o_controller *i2o_find_iop(int); | ||
| 625 | |||
| 626 | /* Functions needed for handling 64-bit pointers in 32-bit context */ | ||
| 627 | #if BITS_PER_LONG == 64 | ||
| 628 | extern u32 i2o_cntxt_list_add(struct i2o_controller *, void *); | ||
| 629 | extern void *i2o_cntxt_list_get(struct i2o_controller *, u32); | ||
| 630 | extern u32 i2o_cntxt_list_remove(struct i2o_controller *, void *); | ||
| 631 | extern u32 i2o_cntxt_list_get_ptr(struct i2o_controller *, void *); | ||
| 632 | |||
| 633 | static inline u32 i2o_ptr_low(void *ptr) | ||
| 634 | { | ||
| 635 | return (u32) (u64) ptr; | ||
| 636 | }; | ||
| 637 | |||
| 638 | static inline u32 i2o_ptr_high(void *ptr) | ||
| 639 | { | ||
| 640 | return (u32) ((u64) ptr >> 32); | ||
| 641 | }; | ||
| 642 | |||
| 643 | static inline u32 i2o_dma_low(dma_addr_t dma_addr) | ||
| 644 | { | ||
| 645 | return (u32) (u64) dma_addr; | ||
| 646 | }; | ||
| 647 | |||
| 648 | static inline u32 i2o_dma_high(dma_addr_t dma_addr) | ||
| 649 | { | ||
| 650 | return (u32) ((u64) dma_addr >> 32); | ||
| 651 | }; | ||
| 652 | #else | ||
| 653 | static inline u32 i2o_cntxt_list_add(struct i2o_controller *c, void *ptr) | ||
| 654 | { | ||
| 655 | return (u32) ptr; | ||
| 656 | }; | ||
| 657 | |||
| 658 | static inline void *i2o_cntxt_list_get(struct i2o_controller *c, u32 context) | ||
| 659 | { | ||
| 660 | return (void *)context; | ||
| 661 | }; | ||
| 662 | |||
| 663 | static inline u32 i2o_cntxt_list_remove(struct i2o_controller *c, void *ptr) | ||
| 664 | { | ||
| 665 | return (u32) ptr; | ||
| 666 | }; | ||
| 667 | |||
| 668 | static inline u32 i2o_cntxt_list_get_ptr(struct i2o_controller *c, void *ptr) | ||
| 669 | { | ||
| 670 | return (u32) ptr; | ||
| 671 | }; | ||
| 672 | |||
| 673 | static inline u32 i2o_ptr_low(void *ptr) | ||
| 674 | { | ||
| 675 | return (u32) ptr; | ||
| 676 | }; | ||
| 677 | |||
| 678 | static inline u32 i2o_ptr_high(void *ptr) | ||
| 679 | { | ||
| 680 | return 0; | ||
| 681 | }; | ||
| 682 | |||
| 683 | static inline u32 i2o_dma_low(dma_addr_t dma_addr) | ||
| 684 | { | ||
| 685 | return (u32) dma_addr; | ||
| 686 | }; | ||
| 687 | |||
| 688 | static inline u32 i2o_dma_high(dma_addr_t dma_addr) | ||
| 689 | { | ||
| 690 | return 0; | ||
| 691 | }; | ||
| 692 | #endif | ||
| 693 | |||
| 694 | extern u16 i2o_sg_tablesize(struct i2o_controller *c, u16 body_size); | ||
| 695 | extern dma_addr_t i2o_dma_map_single(struct i2o_controller *c, void *ptr, | ||
| 696 | size_t size, | ||
| 697 | enum dma_data_direction direction, | ||
| 698 | u32 ** sg_ptr); | ||
| 699 | extern int i2o_dma_map_sg(struct i2o_controller *c, | ||
| 700 | struct scatterlist *sg, int sg_count, | ||
| 701 | enum dma_data_direction direction, | ||
| 702 | u32 ** sg_ptr); | ||
| 703 | extern int i2o_dma_alloc(struct device *dev, struct i2o_dma *addr, size_t len); | ||
| 704 | extern void i2o_dma_free(struct device *dev, struct i2o_dma *addr); | ||
| 705 | extern int i2o_dma_realloc(struct device *dev, struct i2o_dma *addr, | ||
| 706 | size_t len); | ||
| 707 | extern int i2o_pool_alloc(struct i2o_pool *pool, const char *name, | ||
| 708 | size_t size, int min_nr); | ||
| 709 | extern void i2o_pool_free(struct i2o_pool *pool); | ||
| 710 | /* I2O driver (OSM) functions */ | ||
| 711 | extern int i2o_driver_register(struct i2o_driver *); | ||
| 712 | extern void i2o_driver_unregister(struct i2o_driver *); | ||
| 713 | |||
| 714 | /** | ||
| 715 | * i2o_driver_notify_controller_add - Send notification of added controller | ||
| 716 | * @drv: I2O driver | ||
| 717 | * @c: I2O controller | ||
| 718 | * | ||
| 719 | * Send notification of added controller to a single registered driver. | ||
| 720 | */ | ||
| 721 | static inline void i2o_driver_notify_controller_add(struct i2o_driver *drv, | ||
| 722 | struct i2o_controller *c) | ||
| 723 | { | ||
| 724 | if (drv->notify_controller_add) | ||
| 725 | drv->notify_controller_add(c); | ||
| 726 | }; | ||
| 727 | |||
| 728 | /** | ||
| 729 | * i2o_driver_notify_controller_remove - Send notification of removed controller | ||
| 730 | * @drv: I2O driver | ||
| 731 | * @c: I2O controller | ||
| 732 | * | ||
| 733 | * Send notification of removed controller to a single registered driver. | ||
| 734 | */ | ||
| 735 | static inline void i2o_driver_notify_controller_remove(struct i2o_driver *drv, | ||
| 736 | struct i2o_controller *c) | ||
| 737 | { | ||
| 738 | if (drv->notify_controller_remove) | ||
| 739 | drv->notify_controller_remove(c); | ||
| 740 | }; | ||
| 741 | |||
| 742 | /** | ||
| 743 | * i2o_driver_notify_device_add - Send notification of added device | ||
| 744 | * @drv: I2O driver | ||
| 745 | * @i2o_dev: the added i2o_device | ||
| 746 | * | ||
| 747 | * Send notification of added device to a single registered driver. | ||
| 748 | */ | ||
| 749 | static inline void i2o_driver_notify_device_add(struct i2o_driver *drv, | ||
| 750 | struct i2o_device *i2o_dev) | ||
| 751 | { | ||
| 752 | if (drv->notify_device_add) | ||
| 753 | drv->notify_device_add(i2o_dev); | ||
| 754 | }; | ||
| 755 | |||
| 756 | /** | ||
| 757 | * i2o_driver_notify_device_remove - Send notification of removed device | ||
| 758 | * @drv: I2O driver | ||
| 759 | * @i2o_dev: the added i2o_device | ||
| 760 | * | ||
| 761 | * Send notification of removed device to a single registered driver. | ||
| 762 | */ | ||
| 763 | static inline void i2o_driver_notify_device_remove(struct i2o_driver *drv, | ||
| 764 | struct i2o_device *i2o_dev) | ||
| 765 | { | ||
| 766 | if (drv->notify_device_remove) | ||
| 767 | drv->notify_device_remove(i2o_dev); | ||
| 768 | }; | ||
| 769 | |||
| 770 | extern void i2o_driver_notify_controller_add_all(struct i2o_controller *); | ||
| 771 | extern void i2o_driver_notify_controller_remove_all(struct i2o_controller *); | ||
| 772 | extern void i2o_driver_notify_device_add_all(struct i2o_device *); | ||
| 773 | extern void i2o_driver_notify_device_remove_all(struct i2o_device *); | ||
| 774 | |||
| 775 | /* I2O device functions */ | ||
| 776 | extern int i2o_device_claim(struct i2o_device *); | ||
| 777 | extern int i2o_device_claim_release(struct i2o_device *); | ||
| 778 | |||
| 779 | /* Exec OSM functions */ | ||
| 780 | extern int i2o_exec_lct_get(struct i2o_controller *); | ||
| 781 | |||
| 782 | /* device / driver / kobject conversion functions */ | ||
| 783 | #define to_i2o_driver(drv) container_of(drv,struct i2o_driver, driver) | ||
| 784 | #define to_i2o_device(dev) container_of(dev, struct i2o_device, device) | ||
| 785 | #define to_i2o_controller(dev) container_of(dev, struct i2o_controller, device) | ||
| 786 | |||
| 787 | /** | ||
| 788 | * i2o_out_to_virt - Turn an I2O message to a virtual address | ||
| 789 | * @c: controller | ||
| 790 | * @m: message engine value | ||
| 791 | * | ||
| 792 | * Turn a receive message from an I2O controller bus address into | ||
| 793 | * a Linux virtual address. The shared page frame is a linear block | ||
| 794 | * so we simply have to shift the offset. This function does not | ||
| 795 | * work for sender side messages as they are ioremap objects | ||
| 796 | * provided by the I2O controller. | ||
| 797 | */ | ||
| 798 | static inline struct i2o_message *i2o_msg_out_to_virt(struct i2o_controller *c, | ||
| 799 | u32 m) | ||
| 800 | { | ||
| 801 | BUG_ON(m < c->out_queue.phys | ||
| 802 | || m >= c->out_queue.phys + c->out_queue.len); | ||
| 803 | |||
| 804 | return c->out_queue.virt + (m - c->out_queue.phys); | ||
| 805 | }; | ||
| 806 | |||
| 807 | /** | ||
| 808 | * i2o_msg_in_to_virt - Turn an I2O message to a virtual address | ||
| 809 | * @c: controller | ||
| 810 | * @m: message engine value | ||
| 811 | * | ||
| 812 | * Turn a send message from an I2O controller bus address into | ||
| 813 | * a Linux virtual address. The shared page frame is a linear block | ||
| 814 | * so we simply have to shift the offset. This function does not | ||
| 815 | * work for receive side messages as they are kmalloc objects | ||
| 816 | * in a different pool. | ||
| 817 | */ | ||
| 818 | static inline struct i2o_message __iomem *i2o_msg_in_to_virt(struct | ||
| 819 | i2o_controller *c, | ||
| 820 | u32 m) | ||
| 821 | { | ||
| 822 | return c->in_queue.virt + m; | ||
| 823 | }; | ||
| 824 | |||
| 825 | /** | ||
| 826 | * i2o_msg_get - obtain an I2O message from the IOP | ||
| 827 | * @c: I2O controller | ||
| 828 | * | ||
| 829 | * This function tries to get a message frame. If no message frame is | ||
| 830 | * available do not wait until one is available (see also i2o_msg_get_wait). | ||
| 831 | * The returned pointer to the message frame is not in I/O memory, it is | ||
| 832 | * allocated from a mempool. But because a MFA is allocated from the | ||
| 833 | * controller too it is guaranteed that i2o_msg_post() will never fail. | ||
| 834 | * | ||
| 835 | * On a success a pointer to the message frame is returned. If the message | ||
| 836 | * queue is empty -EBUSY is returned and if no memory is available -ENOMEM | ||
| 837 | * is returned. | ||
| 838 | */ | ||
| 839 | static inline struct i2o_message *i2o_msg_get(struct i2o_controller *c) | ||
| 840 | { | ||
| 841 | struct i2o_msg_mfa *mmsg = mempool_alloc(c->in_msg.mempool, GFP_ATOMIC); | ||
| 842 | if (!mmsg) | ||
| 843 | return ERR_PTR(-ENOMEM); | ||
| 844 | |||
| 845 | mmsg->mfa = readl(c->in_port); | ||
| 846 | if (unlikely(mmsg->mfa >= c->in_queue.len)) { | ||
| 847 | u32 mfa = mmsg->mfa; | ||
| 848 | |||
| 849 | mempool_free(mmsg, c->in_msg.mempool); | ||
| 850 | |||
| 851 | if (mfa == I2O_QUEUE_EMPTY) | ||
| 852 | return ERR_PTR(-EBUSY); | ||
| 853 | return ERR_PTR(-EFAULT); | ||
| 854 | } | ||
| 855 | |||
| 856 | return &mmsg->msg; | ||
| 857 | }; | ||
| 858 | |||
| 859 | /** | ||
| 860 | * i2o_msg_post - Post I2O message to I2O controller | ||
| 861 | * @c: I2O controller to which the message should be send | ||
| 862 | * @msg: message returned by i2o_msg_get() | ||
| 863 | * | ||
| 864 | * Post the message to the I2O controller and return immediately. | ||
| 865 | */ | ||
| 866 | static inline void i2o_msg_post(struct i2o_controller *c, | ||
| 867 | struct i2o_message *msg) | ||
| 868 | { | ||
| 869 | struct i2o_msg_mfa *mmsg; | ||
| 870 | |||
| 871 | mmsg = container_of(msg, struct i2o_msg_mfa, msg); | ||
| 872 | memcpy_toio(i2o_msg_in_to_virt(c, mmsg->mfa), msg, | ||
| 873 | (le32_to_cpu(msg->u.head[0]) >> 16) << 2); | ||
| 874 | writel(mmsg->mfa, c->in_port); | ||
| 875 | mempool_free(mmsg, c->in_msg.mempool); | ||
| 876 | }; | ||
| 877 | |||
| 878 | /** | ||
| 879 | * i2o_msg_post_wait - Post and wait a message and wait until return | ||
| 880 | * @c: controller | ||
| 881 | * @msg: message to post | ||
| 882 | * @timeout: time in seconds to wait | ||
| 883 | * | ||
| 884 | * This API allows an OSM to post a message and then be told whether or | ||
| 885 | * not the system received a successful reply. If the message times out | ||
| 886 | * then the value '-ETIMEDOUT' is returned. | ||
| 887 | * | ||
| 888 | * Returns 0 on success or negative error code on failure. | ||
| 889 | */ | ||
| 890 | static inline int i2o_msg_post_wait(struct i2o_controller *c, | ||
| 891 | struct i2o_message *msg, | ||
| 892 | unsigned long timeout) | ||
| 893 | { | ||
| 894 | return i2o_msg_post_wait_mem(c, msg, timeout, NULL); | ||
| 895 | }; | ||
| 896 | |||
| 897 | /** | ||
| 898 | * i2o_msg_nop_mfa - Returns a fetched MFA back to the controller | ||
| 899 | * @c: I2O controller from which the MFA was fetched | ||
| 900 | * @mfa: MFA which should be returned | ||
| 901 | * | ||
| 902 | * This function must be used for preserved messages, because i2o_msg_nop() | ||
| 903 | * also returns the allocated memory back to the msg_pool mempool. | ||
| 904 | */ | ||
| 905 | static inline void i2o_msg_nop_mfa(struct i2o_controller *c, u32 mfa) | ||
| 906 | { | ||
| 907 | struct i2o_message __iomem *msg; | ||
| 908 | u32 nop[3] = { | ||
| 909 | THREE_WORD_MSG_SIZE | SGL_OFFSET_0, | ||
| 910 | I2O_CMD_UTIL_NOP << 24 | HOST_TID << 12 | ADAPTER_TID, | ||
| 911 | 0x00000000 | ||
| 912 | }; | ||
| 913 | |||
| 914 | msg = i2o_msg_in_to_virt(c, mfa); | ||
| 915 | memcpy_toio(msg, nop, sizeof(nop)); | ||
| 916 | writel(mfa, c->in_port); | ||
| 917 | }; | ||
| 918 | |||
| 919 | /** | ||
| 920 | * i2o_msg_nop - Returns a message which is not used | ||
| 921 | * @c: I2O controller from which the message was created | ||
| 922 | * @msg: message which should be returned | ||
| 923 | * | ||
| 924 | * If you fetch a message via i2o_msg_get, and can't use it, you must | ||
| 925 | * return the message with this function. Otherwise the MFA is lost as well | ||
| 926 | * as the allocated memory from the mempool. | ||
| 927 | */ | ||
| 928 | static inline void i2o_msg_nop(struct i2o_controller *c, | ||
| 929 | struct i2o_message *msg) | ||
| 930 | { | ||
| 931 | struct i2o_msg_mfa *mmsg; | ||
| 932 | mmsg = container_of(msg, struct i2o_msg_mfa, msg); | ||
| 933 | |||
| 934 | i2o_msg_nop_mfa(c, mmsg->mfa); | ||
| 935 | mempool_free(mmsg, c->in_msg.mempool); | ||
| 936 | }; | ||
| 937 | |||
| 938 | /** | ||
| 939 | * i2o_flush_reply - Flush reply from I2O controller | ||
| 940 | * @c: I2O controller | ||
| 941 | * @m: the message identifier | ||
| 942 | * | ||
| 943 | * The I2O controller must be informed that the reply message is not needed | ||
| 944 | * anymore. If you forget to flush the reply, the message frame can't be | ||
| 945 | * used by the controller anymore and is therefore lost. | ||
| 946 | */ | ||
| 947 | static inline void i2o_flush_reply(struct i2o_controller *c, u32 m) | ||
| 948 | { | ||
| 949 | writel(m, c->out_port); | ||
| 950 | }; | ||
| 951 | |||
| 952 | /* | ||
| 953 | * Endian handling wrapped into the macro - keeps the core code | ||
| 954 | * cleaner. | ||
| 955 | */ | ||
| 956 | |||
| 957 | #define i2o_raw_writel(val, mem) __raw_writel(cpu_to_le32(val), mem) | ||
| 958 | |||
| 959 | extern int i2o_parm_field_get(struct i2o_device *, int, int, void *, int); | ||
| 960 | extern int i2o_parm_table_get(struct i2o_device *, int, int, int, void *, int, | ||
| 961 | void *, int); | ||
| 962 | |||
| 963 | /* debugging and troubleshooting/diagnostic helpers. */ | ||
| 964 | #define osm_printk(level, format, arg...) \ | ||
| 965 | printk(level "%s: " format, OSM_NAME , ## arg) | ||
| 966 | |||
| 967 | #ifdef DEBUG | ||
| 968 | #define osm_debug(format, arg...) \ | ||
| 969 | osm_printk(KERN_DEBUG, format , ## arg) | ||
| 970 | #else | ||
| 971 | #define osm_debug(format, arg...) \ | ||
| 972 | do { } while (0) | ||
| 973 | #endif | ||
| 974 | |||
| 975 | #define osm_err(format, arg...) \ | ||
| 976 | osm_printk(KERN_ERR, format , ## arg) | ||
| 977 | #define osm_info(format, arg...) \ | ||
| 978 | osm_printk(KERN_INFO, format , ## arg) | ||
| 979 | #define osm_warn(format, arg...) \ | ||
| 980 | osm_printk(KERN_WARNING, format , ## arg) | ||
| 981 | |||
| 982 | /* debugging functions */ | ||
| 983 | extern void i2o_report_status(const char *, const char *, struct i2o_message *); | ||
| 984 | extern void i2o_dump_message(struct i2o_message *); | ||
| 985 | extern void i2o_dump_hrt(struct i2o_controller *c); | ||
| 986 | extern void i2o_debug_state(struct i2o_controller *c); | ||
| 987 | |||
| 988 | #endif /* _I2O_H */ | ||
diff --git a/include/linux/iio/buffer.h b/include/linux/iio/buffer.h index 519392763393..b65850a41127 100644 --- a/include/linux/iio/buffer.h +++ b/include/linux/iio/buffer.h | |||
| @@ -25,9 +25,7 @@ struct iio_buffer; | |||
| 25 | * available. | 25 | * available. |
| 26 | * @request_update: if a parameter change has been marked, update underlying | 26 | * @request_update: if a parameter change has been marked, update underlying |
| 27 | * storage. | 27 | * storage. |
| 28 | * @get_bytes_per_datum:get current bytes per datum | ||
| 29 | * @set_bytes_per_datum:set number of bytes per datum | 28 | * @set_bytes_per_datum:set number of bytes per datum |
| 30 | * @get_length: get number of datums in buffer | ||
| 31 | * @set_length: set number of datums in buffer | 29 | * @set_length: set number of datums in buffer |
| 32 | * @release: called when the last reference to the buffer is dropped, | 30 | * @release: called when the last reference to the buffer is dropped, |
| 33 | * should free all resources allocated by the buffer. | 31 | * should free all resources allocated by the buffer. |
| @@ -49,9 +47,7 @@ struct iio_buffer_access_funcs { | |||
| 49 | 47 | ||
| 50 | int (*request_update)(struct iio_buffer *buffer); | 48 | int (*request_update)(struct iio_buffer *buffer); |
| 51 | 49 | ||
| 52 | int (*get_bytes_per_datum)(struct iio_buffer *buffer); | ||
| 53 | int (*set_bytes_per_datum)(struct iio_buffer *buffer, size_t bpd); | 50 | int (*set_bytes_per_datum)(struct iio_buffer *buffer, size_t bpd); |
| 54 | int (*get_length)(struct iio_buffer *buffer); | ||
| 55 | int (*set_length)(struct iio_buffer *buffer, int length); | 51 | int (*set_length)(struct iio_buffer *buffer, int length); |
| 56 | 52 | ||
| 57 | void (*release)(struct iio_buffer *buffer); | 53 | void (*release)(struct iio_buffer *buffer); |
| @@ -85,10 +81,11 @@ struct iio_buffer { | |||
| 85 | bool scan_timestamp; | 81 | bool scan_timestamp; |
| 86 | const struct iio_buffer_access_funcs *access; | 82 | const struct iio_buffer_access_funcs *access; |
| 87 | struct list_head scan_el_dev_attr_list; | 83 | struct list_head scan_el_dev_attr_list; |
| 84 | struct attribute_group buffer_group; | ||
| 88 | struct attribute_group scan_el_group; | 85 | struct attribute_group scan_el_group; |
| 89 | wait_queue_head_t pollq; | 86 | wait_queue_head_t pollq; |
| 90 | bool stufftoread; | 87 | bool stufftoread; |
| 91 | const struct attribute_group *attrs; | 88 | const struct attribute **attrs; |
| 92 | struct list_head demux_list; | 89 | struct list_head demux_list; |
| 93 | void *demux_bounce; | 90 | void *demux_bounce; |
| 94 | struct list_head buffer_list; | 91 | struct list_head buffer_list; |
| @@ -117,15 +114,6 @@ int iio_scan_mask_query(struct iio_dev *indio_dev, | |||
| 117 | struct iio_buffer *buffer, int bit); | 114 | struct iio_buffer *buffer, int bit); |
| 118 | 115 | ||
| 119 | /** | 116 | /** |
| 120 | * iio_scan_mask_set() - set particular bit in the scan mask | ||
| 121 | * @indio_dev IIO device structure | ||
| 122 | * @buffer: the buffer whose scan mask we are interested in | ||
| 123 | * @bit: the bit to be set. | ||
| 124 | **/ | ||
| 125 | int iio_scan_mask_set(struct iio_dev *indio_dev, | ||
| 126 | struct iio_buffer *buffer, int bit); | ||
| 127 | |||
| 128 | /** | ||
| 129 | * iio_push_to_buffers() - push to a registered buffer. | 117 | * iio_push_to_buffers() - push to a registered buffer. |
| 130 | * @indio_dev: iio_dev structure for device. | 118 | * @indio_dev: iio_dev structure for device. |
| 131 | * @data: Full scan. | 119 | * @data: Full scan. |
| @@ -159,56 +147,6 @@ static inline int iio_push_to_buffers_with_timestamp(struct iio_dev *indio_dev, | |||
| 159 | 147 | ||
| 160 | int iio_update_demux(struct iio_dev *indio_dev); | 148 | int iio_update_demux(struct iio_dev *indio_dev); |
| 161 | 149 | ||
| 162 | /** | ||
| 163 | * iio_buffer_register() - register the buffer with IIO core | ||
| 164 | * @indio_dev: device with the buffer to be registered | ||
| 165 | * @channels: the channel descriptions used to construct buffer | ||
| 166 | * @num_channels: the number of channels | ||
| 167 | **/ | ||
| 168 | int iio_buffer_register(struct iio_dev *indio_dev, | ||
| 169 | const struct iio_chan_spec *channels, | ||
| 170 | int num_channels); | ||
| 171 | |||
| 172 | /** | ||
| 173 | * iio_buffer_unregister() - unregister the buffer from IIO core | ||
| 174 | * @indio_dev: the device with the buffer to be unregistered | ||
| 175 | **/ | ||
| 176 | void iio_buffer_unregister(struct iio_dev *indio_dev); | ||
| 177 | |||
| 178 | /** | ||
| 179 | * iio_buffer_read_length() - attr func to get number of datums in the buffer | ||
| 180 | **/ | ||
| 181 | ssize_t iio_buffer_read_length(struct device *dev, | ||
| 182 | struct device_attribute *attr, | ||
| 183 | char *buf); | ||
| 184 | /** | ||
| 185 | * iio_buffer_write_length() - attr func to set number of datums in the buffer | ||
| 186 | **/ | ||
| 187 | ssize_t iio_buffer_write_length(struct device *dev, | ||
| 188 | struct device_attribute *attr, | ||
| 189 | const char *buf, | ||
| 190 | size_t len); | ||
| 191 | /** | ||
| 192 | * iio_buffer_store_enable() - attr to turn the buffer on | ||
| 193 | **/ | ||
| 194 | ssize_t iio_buffer_store_enable(struct device *dev, | ||
| 195 | struct device_attribute *attr, | ||
| 196 | const char *buf, | ||
| 197 | size_t len); | ||
| 198 | /** | ||
| 199 | * iio_buffer_show_enable() - attr to see if the buffer is on | ||
| 200 | **/ | ||
| 201 | ssize_t iio_buffer_show_enable(struct device *dev, | ||
| 202 | struct device_attribute *attr, | ||
| 203 | char *buf); | ||
| 204 | #define IIO_BUFFER_LENGTH_ATTR DEVICE_ATTR(length, S_IRUGO | S_IWUSR, \ | ||
| 205 | iio_buffer_read_length, \ | ||
| 206 | iio_buffer_write_length) | ||
| 207 | |||
| 208 | #define IIO_BUFFER_ENABLE_ATTR DEVICE_ATTR(enable, S_IRUGO | S_IWUSR, \ | ||
| 209 | iio_buffer_show_enable, \ | ||
| 210 | iio_buffer_store_enable) | ||
| 211 | |||
| 212 | bool iio_validate_scan_mask_onehot(struct iio_dev *indio_dev, | 150 | bool iio_validate_scan_mask_onehot(struct iio_dev *indio_dev, |
| 213 | const unsigned long *mask); | 151 | const unsigned long *mask); |
| 214 | 152 | ||
| @@ -232,16 +170,6 @@ static inline void iio_device_attach_buffer(struct iio_dev *indio_dev, | |||
| 232 | 170 | ||
| 233 | #else /* CONFIG_IIO_BUFFER */ | 171 | #else /* CONFIG_IIO_BUFFER */ |
| 234 | 172 | ||
| 235 | static inline int iio_buffer_register(struct iio_dev *indio_dev, | ||
| 236 | const struct iio_chan_spec *channels, | ||
| 237 | int num_channels) | ||
| 238 | { | ||
| 239 | return 0; | ||
| 240 | } | ||
| 241 | |||
| 242 | static inline void iio_buffer_unregister(struct iio_dev *indio_dev) | ||
| 243 | {} | ||
| 244 | |||
| 245 | static inline void iio_buffer_get(struct iio_buffer *buffer) {} | 173 | static inline void iio_buffer_get(struct iio_buffer *buffer) {} |
| 246 | static inline void iio_buffer_put(struct iio_buffer *buffer) {} | 174 | static inline void iio_buffer_put(struct iio_buffer *buffer) {} |
| 247 | 175 | ||
diff --git a/include/linux/iio/common/ssp_sensors.h b/include/linux/iio/common/ssp_sensors.h new file mode 100644 index 000000000000..f4d1b0edb432 --- /dev/null +++ b/include/linux/iio/common/ssp_sensors.h | |||
| @@ -0,0 +1,82 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2014, Samsung Electronics Co. Ltd. All Rights Reserved. | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License as published by | ||
| 6 | * the Free Software Foundation; either version 2 of the License, or | ||
| 7 | * (at your option) any later version. | ||
| 8 | * | ||
| 9 | * This program is distributed in the hope that it will be useful, | ||
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | * GNU General Public License for more details. | ||
| 13 | * | ||
| 14 | */ | ||
| 15 | #ifndef _SSP_SENSORS_H_ | ||
| 16 | #define _SSP_SENSORS_H_ | ||
| 17 | |||
| 18 | #include <linux/iio/iio.h> | ||
| 19 | |||
| 20 | #define SSP_TIME_SIZE 4 | ||
| 21 | #define SSP_ACCELEROMETER_SIZE 6 | ||
| 22 | #define SSP_GYROSCOPE_SIZE 6 | ||
| 23 | #define SSP_BIO_HRM_RAW_SIZE 8 | ||
| 24 | #define SSP_BIO_HRM_RAW_FAC_SIZE 36 | ||
| 25 | #define SSP_BIO_HRM_LIB_SIZE 8 | ||
| 26 | |||
| 27 | /** | ||
| 28 | * enum ssp_sensor_type - SSP sensor type | ||
| 29 | */ | ||
| 30 | enum ssp_sensor_type { | ||
| 31 | SSP_ACCELEROMETER_SENSOR = 0, | ||
| 32 | SSP_GYROSCOPE_SENSOR, | ||
| 33 | SSP_GEOMAGNETIC_UNCALIB_SENSOR, | ||
| 34 | SSP_GEOMAGNETIC_RAW, | ||
| 35 | SSP_GEOMAGNETIC_SENSOR, | ||
| 36 | SSP_PRESSURE_SENSOR, | ||
| 37 | SSP_GESTURE_SENSOR, | ||
| 38 | SSP_PROXIMITY_SENSOR, | ||
| 39 | SSP_TEMPERATURE_HUMIDITY_SENSOR, | ||
| 40 | SSP_LIGHT_SENSOR, | ||
| 41 | SSP_PROXIMITY_RAW, | ||
| 42 | SSP_ORIENTATION_SENSOR, | ||
| 43 | SSP_STEP_DETECTOR, | ||
| 44 | SSP_SIG_MOTION_SENSOR, | ||
| 45 | SSP_GYRO_UNCALIB_SENSOR, | ||
| 46 | SSP_GAME_ROTATION_VECTOR, | ||
| 47 | SSP_ROTATION_VECTOR, | ||
| 48 | SSP_STEP_COUNTER, | ||
| 49 | SSP_BIO_HRM_RAW, | ||
| 50 | SSP_BIO_HRM_RAW_FAC, | ||
| 51 | SSP_BIO_HRM_LIB, | ||
| 52 | SSP_SENSOR_MAX, | ||
| 53 | }; | ||
| 54 | |||
| 55 | struct ssp_data; | ||
| 56 | |||
| 57 | /** | ||
| 58 | * struct ssp_sensor_data - Sensor object | ||
| 59 | * @process_data: Callback to feed sensor data. | ||
| 60 | * @type: Used sensor type. | ||
| 61 | * @buffer: Received data buffer. | ||
| 62 | */ | ||
| 63 | struct ssp_sensor_data { | ||
| 64 | int (*process_data)(struct iio_dev *indio_dev, void *buf, | ||
| 65 | int64_t timestamp); | ||
| 66 | enum ssp_sensor_type type; | ||
| 67 | u8 *buffer; | ||
| 68 | }; | ||
| 69 | |||
| 70 | void ssp_register_consumer(struct iio_dev *indio_dev, | ||
| 71 | enum ssp_sensor_type type); | ||
| 72 | |||
| 73 | int ssp_enable_sensor(struct ssp_data *data, enum ssp_sensor_type type, | ||
| 74 | u32 delay); | ||
| 75 | |||
| 76 | int ssp_disable_sensor(struct ssp_data *data, enum ssp_sensor_type type); | ||
| 77 | |||
| 78 | u32 ssp_get_sensor_delay(struct ssp_data *data, enum ssp_sensor_type); | ||
| 79 | |||
| 80 | int ssp_change_delay(struct ssp_data *data, enum ssp_sensor_type type, | ||
| 81 | u32 delay); | ||
| 82 | #endif /* _SSP_SENSORS_H_ */ | ||
diff --git a/include/linux/iio/consumer.h b/include/linux/iio/consumer.h index 651f9a0e2765..26fb8f6342bb 100644 --- a/include/linux/iio/consumer.h +++ b/include/linux/iio/consumer.h | |||
| @@ -151,6 +151,16 @@ int iio_read_channel_average_raw(struct iio_channel *chan, int *val); | |||
| 151 | int iio_read_channel_processed(struct iio_channel *chan, int *val); | 151 | int iio_read_channel_processed(struct iio_channel *chan, int *val); |
| 152 | 152 | ||
| 153 | /** | 153 | /** |
| 154 | * iio_write_channel_raw() - write to a given channel | ||
| 155 | * @chan: The channel being queried. | ||
| 156 | * @val: Value being written. | ||
| 157 | * | ||
| 158 | * Note raw writes to iio channels are in dac counts and hence | ||
| 159 | * scale will need to be applied if standard units required. | ||
| 160 | */ | ||
| 161 | int iio_write_channel_raw(struct iio_channel *chan, int val); | ||
| 162 | |||
| 163 | /** | ||
| 154 | * iio_get_channel_type() - get the type of a channel | 164 | * iio_get_channel_type() - get the type of a channel |
| 155 | * @channel: The channel being queried. | 165 | * @channel: The channel being queried. |
| 156 | * @type: The type of the channel. | 166 | * @type: The type of the channel. |
| @@ -191,7 +201,7 @@ int iio_read_channel_scale(struct iio_channel *chan, int *val, | |||
| 191 | * The scale factor allows to increase the precession of the returned value. For | 201 | * The scale factor allows to increase the precession of the returned value. For |
| 192 | * a scale factor of 1 the function will return the result in the normal IIO | 202 | * a scale factor of 1 the function will return the result in the normal IIO |
| 193 | * unit for the channel type. E.g. millivolt for voltage channels, if you want | 203 | * unit for the channel type. E.g. millivolt for voltage channels, if you want |
| 194 | * nanovolts instead pass 1000 as the scale factor. | 204 | * nanovolts instead pass 1000000 as the scale factor. |
| 195 | */ | 205 | */ |
| 196 | int iio_convert_raw_to_processed(struct iio_channel *chan, int raw, | 206 | int iio_convert_raw_to_processed(struct iio_channel *chan, int raw, |
| 197 | int *processed, unsigned int scale); | 207 | int *processed, unsigned int scale); |
diff --git a/include/linux/iio/iio.h b/include/linux/iio/iio.h index 3642ce7ef512..80d855061064 100644 --- a/include/linux/iio/iio.h +++ b/include/linux/iio/iio.h | |||
| @@ -38,6 +38,11 @@ enum iio_chan_info_enum { | |||
| 38 | IIO_CHAN_INFO_HARDWAREGAIN, | 38 | IIO_CHAN_INFO_HARDWAREGAIN, |
| 39 | IIO_CHAN_INFO_HYSTERESIS, | 39 | IIO_CHAN_INFO_HYSTERESIS, |
| 40 | IIO_CHAN_INFO_INT_TIME, | 40 | IIO_CHAN_INFO_INT_TIME, |
| 41 | IIO_CHAN_INFO_ENABLE, | ||
| 42 | IIO_CHAN_INFO_CALIBHEIGHT, | ||
| 43 | IIO_CHAN_INFO_CALIBWEIGHT, | ||
| 44 | IIO_CHAN_INFO_DEBOUNCE_COUNT, | ||
| 45 | IIO_CHAN_INFO_DEBOUNCE_TIME, | ||
| 41 | }; | 46 | }; |
| 42 | 47 | ||
| 43 | enum iio_shared_by { | 48 | enum iio_shared_by { |
| @@ -284,10 +289,11 @@ static inline s64 iio_get_time_ns(void) | |||
| 284 | /* Device operating modes */ | 289 | /* Device operating modes */ |
| 285 | #define INDIO_DIRECT_MODE 0x01 | 290 | #define INDIO_DIRECT_MODE 0x01 |
| 286 | #define INDIO_BUFFER_TRIGGERED 0x02 | 291 | #define INDIO_BUFFER_TRIGGERED 0x02 |
| 292 | #define INDIO_BUFFER_SOFTWARE 0x04 | ||
| 287 | #define INDIO_BUFFER_HARDWARE 0x08 | 293 | #define INDIO_BUFFER_HARDWARE 0x08 |
| 288 | 294 | ||
| 289 | #define INDIO_ALL_BUFFER_MODES \ | 295 | #define INDIO_ALL_BUFFER_MODES \ |
| 290 | (INDIO_BUFFER_TRIGGERED | INDIO_BUFFER_HARDWARE) | 296 | (INDIO_BUFFER_TRIGGERED | INDIO_BUFFER_HARDWARE | INDIO_BUFFER_SOFTWARE) |
| 291 | 297 | ||
| 292 | #define INDIO_MAX_RAW_ELEMENTS 4 | 298 | #define INDIO_MAX_RAW_ELEMENTS 4 |
| 293 | 299 | ||
| @@ -591,7 +597,8 @@ void devm_iio_trigger_free(struct device *dev, struct iio_trigger *iio_trig); | |||
| 591 | static inline bool iio_buffer_enabled(struct iio_dev *indio_dev) | 597 | static inline bool iio_buffer_enabled(struct iio_dev *indio_dev) |
| 592 | { | 598 | { |
| 593 | return indio_dev->currentmode | 599 | return indio_dev->currentmode |
| 594 | & (INDIO_BUFFER_TRIGGERED | INDIO_BUFFER_HARDWARE); | 600 | & (INDIO_BUFFER_TRIGGERED | INDIO_BUFFER_HARDWARE | |
| 601 | INDIO_BUFFER_SOFTWARE); | ||
| 595 | } | 602 | } |
| 596 | 603 | ||
| 597 | /** | 604 | /** |
diff --git a/include/linux/iio/kfifo_buf.h b/include/linux/iio/kfifo_buf.h index 25eeac762e84..1683bc710d14 100644 --- a/include/linux/iio/kfifo_buf.h +++ b/include/linux/iio/kfifo_buf.h | |||
| @@ -5,7 +5,10 @@ | |||
| 5 | #include <linux/iio/iio.h> | 5 | #include <linux/iio/iio.h> |
| 6 | #include <linux/iio/buffer.h> | 6 | #include <linux/iio/buffer.h> |
| 7 | 7 | ||
| 8 | struct iio_buffer *iio_kfifo_allocate(struct iio_dev *indio_dev); | 8 | struct iio_buffer *iio_kfifo_allocate(void); |
| 9 | void iio_kfifo_free(struct iio_buffer *r); | 9 | void iio_kfifo_free(struct iio_buffer *r); |
| 10 | 10 | ||
| 11 | struct iio_buffer *devm_iio_kfifo_allocate(struct device *dev); | ||
| 12 | void devm_iio_kfifo_free(struct device *dev, struct iio_buffer *r); | ||
| 13 | |||
| 11 | #endif | 14 | #endif |
diff --git a/include/linux/iio/types.h b/include/linux/iio/types.h index 4a2af8adf874..580ed5bdb3fa 100644 --- a/include/linux/iio/types.h +++ b/include/linux/iio/types.h | |||
| @@ -30,6 +30,11 @@ enum iio_chan_type { | |||
| 30 | IIO_CCT, | 30 | IIO_CCT, |
| 31 | IIO_PRESSURE, | 31 | IIO_PRESSURE, |
| 32 | IIO_HUMIDITYRELATIVE, | 32 | IIO_HUMIDITYRELATIVE, |
| 33 | IIO_ACTIVITY, | ||
| 34 | IIO_STEPS, | ||
| 35 | IIO_ENERGY, | ||
| 36 | IIO_DISTANCE, | ||
| 37 | IIO_VELOCITY, | ||
| 33 | }; | 38 | }; |
| 34 | 39 | ||
| 35 | enum iio_modifier { | 40 | enum iio_modifier { |
| @@ -59,7 +64,12 @@ enum iio_modifier { | |||
| 59 | IIO_MOD_NORTH_MAGN, | 64 | IIO_MOD_NORTH_MAGN, |
| 60 | IIO_MOD_NORTH_TRUE, | 65 | IIO_MOD_NORTH_TRUE, |
| 61 | IIO_MOD_NORTH_MAGN_TILT_COMP, | 66 | IIO_MOD_NORTH_MAGN_TILT_COMP, |
| 62 | IIO_MOD_NORTH_TRUE_TILT_COMP | 67 | IIO_MOD_NORTH_TRUE_TILT_COMP, |
| 68 | IIO_MOD_RUNNING, | ||
| 69 | IIO_MOD_JOGGING, | ||
| 70 | IIO_MOD_WALKING, | ||
| 71 | IIO_MOD_STILL, | ||
| 72 | IIO_MOD_ROOT_SUM_SQUARED_X_Y_Z, | ||
| 63 | }; | 73 | }; |
| 64 | 74 | ||
| 65 | enum iio_event_type { | 75 | enum iio_event_type { |
| @@ -68,6 +78,7 @@ enum iio_event_type { | |||
| 68 | IIO_EV_TYPE_ROC, | 78 | IIO_EV_TYPE_ROC, |
| 69 | IIO_EV_TYPE_THRESH_ADAPTIVE, | 79 | IIO_EV_TYPE_THRESH_ADAPTIVE, |
| 70 | IIO_EV_TYPE_MAG_ADAPTIVE, | 80 | IIO_EV_TYPE_MAG_ADAPTIVE, |
| 81 | IIO_EV_TYPE_CHANGE, | ||
| 71 | }; | 82 | }; |
| 72 | 83 | ||
| 73 | enum iio_event_info { | 84 | enum iio_event_info { |
| @@ -81,6 +92,7 @@ enum iio_event_direction { | |||
| 81 | IIO_EV_DIR_EITHER, | 92 | IIO_EV_DIR_EITHER, |
| 82 | IIO_EV_DIR_RISING, | 93 | IIO_EV_DIR_RISING, |
| 83 | IIO_EV_DIR_FALLING, | 94 | IIO_EV_DIR_FALLING, |
| 95 | IIO_EV_DIR_NONE, | ||
| 84 | }; | 96 | }; |
| 85 | 97 | ||
| 86 | #define IIO_VAL_INT 1 | 98 | #define IIO_VAL_INT 1 |
diff --git a/include/linux/init_task.h b/include/linux/init_task.h index 3037fc085e8e..696d22312b31 100644 --- a/include/linux/init_task.h +++ b/include/linux/init_task.h | |||
| @@ -175,6 +175,13 @@ extern struct task_group root_task_group; | |||
| 175 | # define INIT_NUMA_BALANCING(tsk) | 175 | # define INIT_NUMA_BALANCING(tsk) |
| 176 | #endif | 176 | #endif |
| 177 | 177 | ||
| 178 | #ifdef CONFIG_KASAN | ||
| 179 | # define INIT_KASAN(tsk) \ | ||
| 180 | .kasan_depth = 1, | ||
| 181 | #else | ||
| 182 | # define INIT_KASAN(tsk) | ||
| 183 | #endif | ||
| 184 | |||
| 178 | /* | 185 | /* |
| 179 | * INIT_TASK is used to set up the first task table, touch at | 186 | * INIT_TASK is used to set up the first task table, touch at |
| 180 | * your own risk!. Base=0, limit=0x1fffff (=2MB) | 187 | * your own risk!. Base=0, limit=0x1fffff (=2MB) |
| @@ -193,6 +200,9 @@ extern struct task_group root_task_group; | |||
| 193 | .nr_cpus_allowed= NR_CPUS, \ | 200 | .nr_cpus_allowed= NR_CPUS, \ |
| 194 | .mm = NULL, \ | 201 | .mm = NULL, \ |
| 195 | .active_mm = &init_mm, \ | 202 | .active_mm = &init_mm, \ |
| 203 | .restart_block = { \ | ||
| 204 | .fn = do_no_restart_syscall, \ | ||
| 205 | }, \ | ||
| 196 | .se = { \ | 206 | .se = { \ |
| 197 | .group_node = LIST_HEAD_INIT(tsk.se.group_node), \ | 207 | .group_node = LIST_HEAD_INIT(tsk.se.group_node), \ |
| 198 | }, \ | 208 | }, \ |
| @@ -247,6 +257,7 @@ extern struct task_group root_task_group; | |||
| 247 | INIT_RT_MUTEXES(tsk) \ | 257 | INIT_RT_MUTEXES(tsk) \ |
| 248 | INIT_VTIME(tsk) \ | 258 | INIT_VTIME(tsk) \ |
| 249 | INIT_NUMA_BALANCING(tsk) \ | 259 | INIT_NUMA_BALANCING(tsk) \ |
| 260 | INIT_KASAN(tsk) \ | ||
| 250 | } | 261 | } |
| 251 | 262 | ||
| 252 | 263 | ||
diff --git a/include/linux/iopoll.h b/include/linux/iopoll.h new file mode 100644 index 000000000000..1c30014ed176 --- /dev/null +++ b/include/linux/iopoll.h | |||
| @@ -0,0 +1,144 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2012-2014 The Linux Foundation. All rights reserved. | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License version 2 and | ||
| 6 | * only version 2 as published by the Free Software Foundation. | ||
| 7 | * | ||
| 8 | * This program is distributed in the hope that it will be useful, | ||
| 9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 11 | * GNU General Public License for more details. | ||
| 12 | * | ||
| 13 | */ | ||
| 14 | |||
| 15 | #ifndef _LINUX_IOPOLL_H | ||
| 16 | #define _LINUX_IOPOLL_H | ||
| 17 | |||
| 18 | #include <linux/kernel.h> | ||
| 19 | #include <linux/types.h> | ||
| 20 | #include <linux/hrtimer.h> | ||
| 21 | #include <linux/delay.h> | ||
| 22 | #include <linux/errno.h> | ||
| 23 | #include <linux/io.h> | ||
| 24 | |||
| 25 | /** | ||
| 26 | * readx_poll_timeout - Periodically poll an address until a condition is met or a timeout occurs | ||
| 27 | * @op: accessor function (takes @addr as its only argument) | ||
| 28 | * @addr: Address to poll | ||
| 29 | * @val: Variable to read the value into | ||
| 30 | * @cond: Break condition (usually involving @val) | ||
| 31 | * @sleep_us: Maximum time to sleep between reads in us (0 | ||
| 32 | * tight-loops). Should be less than ~20ms since usleep_range | ||
| 33 | * is used (see Documentation/timers/timers-howto.txt). | ||
| 34 | * @timeout_us: Timeout in us, 0 means never timeout | ||
| 35 | * | ||
| 36 | * Returns 0 on success and -ETIMEDOUT upon a timeout. In either | ||
| 37 | * case, the last read value at @addr is stored in @val. Must not | ||
| 38 | * be called from atomic context if sleep_us or timeout_us are used. | ||
| 39 | * | ||
| 40 | * When available, you'll probably want to use one of the specialized | ||
| 41 | * macros defined below rather than this macro directly. | ||
| 42 | */ | ||
| 43 | #define readx_poll_timeout(op, addr, val, cond, sleep_us, timeout_us) \ | ||
| 44 | ({ \ | ||
| 45 | ktime_t timeout = ktime_add_us(ktime_get(), timeout_us); \ | ||
| 46 | might_sleep_if(sleep_us); \ | ||
| 47 | for (;;) { \ | ||
| 48 | (val) = op(addr); \ | ||
| 49 | if (cond) \ | ||
| 50 | break; \ | ||
| 51 | if (timeout_us && ktime_compare(ktime_get(), timeout) > 0) { \ | ||
| 52 | (val) = op(addr); \ | ||
| 53 | break; \ | ||
| 54 | } \ | ||
| 55 | if (sleep_us) \ | ||
| 56 | usleep_range((sleep_us >> 2) + 1, sleep_us); \ | ||
| 57 | } \ | ||
| 58 | (cond) ? 0 : -ETIMEDOUT; \ | ||
| 59 | }) | ||
| 60 | |||
| 61 | /** | ||
| 62 | * readx_poll_timeout_atomic - Periodically poll an address until a condition is met or a timeout occurs | ||
| 63 | * @op: accessor function (takes @addr as its only argument) | ||
| 64 | * @addr: Address to poll | ||
| 65 | * @val: Variable to read the value into | ||
| 66 | * @cond: Break condition (usually involving @val) | ||
| 67 | * @delay_us: Time to udelay between reads in us (0 tight-loops). Should | ||
| 68 | * be less than ~10us since udelay is used (see | ||
| 69 | * Documentation/timers/timers-howto.txt). | ||
| 70 | * @timeout_us: Timeout in us, 0 means never timeout | ||
| 71 | * | ||
| 72 | * Returns 0 on success and -ETIMEDOUT upon a timeout. In either | ||
| 73 | * case, the last read value at @addr is stored in @val. | ||
| 74 | * | ||
| 75 | * When available, you'll probably want to use one of the specialized | ||
| 76 | * macros defined below rather than this macro directly. | ||
| 77 | */ | ||
| 78 | #define readx_poll_timeout_atomic(op, addr, val, cond, delay_us, timeout_us) \ | ||
| 79 | ({ \ | ||
| 80 | ktime_t timeout = ktime_add_us(ktime_get(), timeout_us); \ | ||
| 81 | for (;;) { \ | ||
| 82 | (val) = op(addr); \ | ||
| 83 | if (cond) \ | ||
| 84 | break; \ | ||
| 85 | if (timeout_us && ktime_compare(ktime_get(), timeout) > 0) { \ | ||
| 86 | (val) = op(addr); \ | ||
| 87 | break; \ | ||
| 88 | } \ | ||
| 89 | if (delay_us) \ | ||
| 90 | udelay(delay_us); \ | ||
| 91 | } \ | ||
| 92 | (cond) ? 0 : -ETIMEDOUT; \ | ||
| 93 | }) | ||
| 94 | |||
| 95 | |||
| 96 | #define readb_poll_timeout(addr, val, cond, delay_us, timeout_us) \ | ||
| 97 | readx_poll_timeout(readb, addr, val, cond, delay_us, timeout_us) | ||
| 98 | |||
| 99 | #define readb_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ | ||
| 100 | readx_poll_timeout_atomic(readb, addr, val, cond, delay_us, timeout_us) | ||
| 101 | |||
| 102 | #define readw_poll_timeout(addr, val, cond, delay_us, timeout_us) \ | ||
| 103 | readx_poll_timeout(readw, addr, val, cond, delay_us, timeout_us) | ||
| 104 | |||
| 105 | #define readw_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ | ||
| 106 | readx_poll_timeout_atomic(readw, addr, val, cond, delay_us, timeout_us) | ||
| 107 | |||
| 108 | #define readl_poll_timeout(addr, val, cond, delay_us, timeout_us) \ | ||
| 109 | readx_poll_timeout(readl, addr, val, cond, delay_us, timeout_us) | ||
| 110 | |||
| 111 | #define readl_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ | ||
| 112 | readx_poll_timeout_atomic(readl, addr, val, cond, delay_us, timeout_us) | ||
| 113 | |||
| 114 | #define readq_poll_timeout(addr, val, cond, delay_us, timeout_us) \ | ||
| 115 | readx_poll_timeout(readq, addr, val, cond, delay_us, timeout_us) | ||
| 116 | |||
| 117 | #define readq_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ | ||
| 118 | readx_poll_timeout_atomic(readq, addr, val, cond, delay_us, timeout_us) | ||
| 119 | |||
| 120 | #define readb_relaxed_poll_timeout(addr, val, cond, delay_us, timeout_us) \ | ||
| 121 | readx_poll_timeout(readb_relaxed, addr, val, cond, delay_us, timeout_us) | ||
| 122 | |||
| 123 | #define readb_relaxed_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ | ||
| 124 | readx_poll_timeout_atomic(readb_relaxed, addr, val, cond, delay_us, timeout_us) | ||
| 125 | |||
| 126 | #define readw_relaxed_poll_timeout(addr, val, cond, delay_us, timeout_us) \ | ||
| 127 | readx_poll_timeout(readw_relaxed, addr, val, cond, delay_us, timeout_us) | ||
| 128 | |||
| 129 | #define readw_relaxed_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ | ||
| 130 | readx_poll_timeout_atomic(readw_relaxed, addr, val, cond, delay_us, timeout_us) | ||
| 131 | |||
| 132 | #define readl_relaxed_poll_timeout(addr, val, cond, delay_us, timeout_us) \ | ||
| 133 | readx_poll_timeout(readl_relaxed, addr, val, cond, delay_us, timeout_us) | ||
| 134 | |||
| 135 | #define readl_relaxed_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ | ||
| 136 | readx_poll_timeout_atomic(readl_relaxed, addr, val, cond, delay_us, timeout_us) | ||
| 137 | |||
| 138 | #define readq_relaxed_poll_timeout(addr, val, cond, delay_us, timeout_us) \ | ||
| 139 | readx_poll_timeout(readq_relaxed, addr, val, cond, delay_us, timeout_us) | ||
| 140 | |||
| 141 | #define readq_relaxed_poll_timeout_atomic(addr, val, cond, delay_us, timeout_us) \ | ||
| 142 | readx_poll_timeout_atomic(readq_relaxed, addr, val, cond, delay_us, timeout_us) | ||
| 143 | |||
| 144 | #endif /* _LINUX_IOPOLL_H */ | ||
diff --git a/include/linux/iova.h b/include/linux/iova.h index 19e81d5ccb6d..3920a19d8194 100644 --- a/include/linux/iova.h +++ b/include/linux/iova.h | |||
| @@ -16,9 +16,6 @@ | |||
| 16 | #include <linux/rbtree.h> | 16 | #include <linux/rbtree.h> |
| 17 | #include <linux/dma-mapping.h> | 17 | #include <linux/dma-mapping.h> |
| 18 | 18 | ||
| 19 | /* IO virtual address start page frame number */ | ||
| 20 | #define IOVA_START_PFN (1) | ||
| 21 | |||
| 22 | /* iova structure */ | 19 | /* iova structure */ |
| 23 | struct iova { | 20 | struct iova { |
| 24 | struct rb_node node; | 21 | struct rb_node node; |
| @@ -31,6 +28,8 @@ struct iova_domain { | |||
| 31 | spinlock_t iova_rbtree_lock; /* Lock to protect update of rbtree */ | 28 | spinlock_t iova_rbtree_lock; /* Lock to protect update of rbtree */ |
| 32 | struct rb_root rbroot; /* iova domain rbtree root */ | 29 | struct rb_root rbroot; /* iova domain rbtree root */ |
| 33 | struct rb_node *cached32_node; /* Save last alloced node */ | 30 | struct rb_node *cached32_node; /* Save last alloced node */ |
| 31 | unsigned long granule; /* pfn granularity for this domain */ | ||
| 32 | unsigned long start_pfn; /* Lower limit for this domain */ | ||
| 34 | unsigned long dma_32bit_pfn; | 33 | unsigned long dma_32bit_pfn; |
| 35 | }; | 34 | }; |
| 36 | 35 | ||
| @@ -39,6 +38,39 @@ static inline unsigned long iova_size(struct iova *iova) | |||
| 39 | return iova->pfn_hi - iova->pfn_lo + 1; | 38 | return iova->pfn_hi - iova->pfn_lo + 1; |
| 40 | } | 39 | } |
| 41 | 40 | ||
| 41 | static inline unsigned long iova_shift(struct iova_domain *iovad) | ||
| 42 | { | ||
| 43 | return __ffs(iovad->granule); | ||
| 44 | } | ||
| 45 | |||
| 46 | static inline unsigned long iova_mask(struct iova_domain *iovad) | ||
| 47 | { | ||
| 48 | return iovad->granule - 1; | ||
| 49 | } | ||
| 50 | |||
| 51 | static inline size_t iova_offset(struct iova_domain *iovad, dma_addr_t iova) | ||
| 52 | { | ||
| 53 | return iova & iova_mask(iovad); | ||
| 54 | } | ||
| 55 | |||
| 56 | static inline size_t iova_align(struct iova_domain *iovad, size_t size) | ||
| 57 | { | ||
| 58 | return ALIGN(size, iovad->granule); | ||
| 59 | } | ||
| 60 | |||
| 61 | static inline dma_addr_t iova_dma_addr(struct iova_domain *iovad, struct iova *iova) | ||
| 62 | { | ||
| 63 | return (dma_addr_t)iova->pfn_lo << iova_shift(iovad); | ||
| 64 | } | ||
| 65 | |||
| 66 | static inline unsigned long iova_pfn(struct iova_domain *iovad, dma_addr_t iova) | ||
| 67 | { | ||
| 68 | return iova >> iova_shift(iovad); | ||
| 69 | } | ||
| 70 | |||
| 71 | int iommu_iova_cache_init(void); | ||
| 72 | void iommu_iova_cache_destroy(void); | ||
| 73 | |||
| 42 | struct iova *alloc_iova_mem(void); | 74 | struct iova *alloc_iova_mem(void); |
| 43 | void free_iova_mem(struct iova *iova); | 75 | void free_iova_mem(struct iova *iova); |
| 44 | void free_iova(struct iova_domain *iovad, unsigned long pfn); | 76 | void free_iova(struct iova_domain *iovad, unsigned long pfn); |
| @@ -49,7 +81,8 @@ struct iova *alloc_iova(struct iova_domain *iovad, unsigned long size, | |||
| 49 | struct iova *reserve_iova(struct iova_domain *iovad, unsigned long pfn_lo, | 81 | struct iova *reserve_iova(struct iova_domain *iovad, unsigned long pfn_lo, |
| 50 | unsigned long pfn_hi); | 82 | unsigned long pfn_hi); |
| 51 | void copy_reserved_iova(struct iova_domain *from, struct iova_domain *to); | 83 | void copy_reserved_iova(struct iova_domain *from, struct iova_domain *to); |
| 52 | void init_iova_domain(struct iova_domain *iovad, unsigned long pfn_32bit); | 84 | void init_iova_domain(struct iova_domain *iovad, unsigned long granule, |
| 85 | unsigned long start_pfn, unsigned long pfn_32bit); | ||
| 53 | struct iova *find_iova(struct iova_domain *iovad, unsigned long pfn); | 86 | struct iova *find_iova(struct iova_domain *iovad, unsigned long pfn); |
| 54 | void put_iova_domain(struct iova_domain *iovad); | 87 | void put_iova_domain(struct iova_domain *iovad); |
| 55 | struct iova *split_and_remove_iova(struct iova_domain *iovad, | 88 | struct iova *split_and_remove_iova(struct iova_domain *iovad, |
diff --git a/include/linux/irqchip/arm-gic-v3.h b/include/linux/irqchip/arm-gic-v3.h index 1e8b0cf30792..800544bc7bfd 100644 --- a/include/linux/irqchip/arm-gic-v3.h +++ b/include/linux/irqchip/arm-gic-v3.h | |||
| @@ -33,6 +33,7 @@ | |||
| 33 | #define GICD_SETSPI_SR 0x0050 | 33 | #define GICD_SETSPI_SR 0x0050 |
| 34 | #define GICD_CLRSPI_SR 0x0058 | 34 | #define GICD_CLRSPI_SR 0x0058 |
| 35 | #define GICD_SEIR 0x0068 | 35 | #define GICD_SEIR 0x0068 |
| 36 | #define GICD_IGROUPR 0x0080 | ||
| 36 | #define GICD_ISENABLER 0x0100 | 37 | #define GICD_ISENABLER 0x0100 |
| 37 | #define GICD_ICENABLER 0x0180 | 38 | #define GICD_ICENABLER 0x0180 |
| 38 | #define GICD_ISPENDR 0x0200 | 39 | #define GICD_ISPENDR 0x0200 |
| @@ -41,14 +42,37 @@ | |||
| 41 | #define GICD_ICACTIVER 0x0380 | 42 | #define GICD_ICACTIVER 0x0380 |
| 42 | #define GICD_IPRIORITYR 0x0400 | 43 | #define GICD_IPRIORITYR 0x0400 |
| 43 | #define GICD_ICFGR 0x0C00 | 44 | #define GICD_ICFGR 0x0C00 |
| 45 | #define GICD_IGRPMODR 0x0D00 | ||
| 46 | #define GICD_NSACR 0x0E00 | ||
| 44 | #define GICD_IROUTER 0x6000 | 47 | #define GICD_IROUTER 0x6000 |
| 48 | #define GICD_IDREGS 0xFFD0 | ||
| 45 | #define GICD_PIDR2 0xFFE8 | 49 | #define GICD_PIDR2 0xFFE8 |
| 46 | 50 | ||
| 51 | /* | ||
| 52 | * Those registers are actually from GICv2, but the spec demands that they | ||
| 53 | * are implemented as RES0 if ARE is 1 (which we do in KVM's emulated GICv3). | ||
| 54 | */ | ||
| 55 | #define GICD_ITARGETSR 0x0800 | ||
| 56 | #define GICD_SGIR 0x0F00 | ||
| 57 | #define GICD_CPENDSGIR 0x0F10 | ||
| 58 | #define GICD_SPENDSGIR 0x0F20 | ||
| 59 | |||
| 47 | #define GICD_CTLR_RWP (1U << 31) | 60 | #define GICD_CTLR_RWP (1U << 31) |
| 61 | #define GICD_CTLR_DS (1U << 6) | ||
| 48 | #define GICD_CTLR_ARE_NS (1U << 4) | 62 | #define GICD_CTLR_ARE_NS (1U << 4) |
| 49 | #define GICD_CTLR_ENABLE_G1A (1U << 1) | 63 | #define GICD_CTLR_ENABLE_G1A (1U << 1) |
| 50 | #define GICD_CTLR_ENABLE_G1 (1U << 0) | 64 | #define GICD_CTLR_ENABLE_G1 (1U << 0) |
| 51 | 65 | ||
| 66 | /* | ||
| 67 | * In systems with a single security state (what we emulate in KVM) | ||
| 68 | * the meaning of the interrupt group enable bits is slightly different | ||
| 69 | */ | ||
| 70 | #define GICD_CTLR_ENABLE_SS_G1 (1U << 1) | ||
| 71 | #define GICD_CTLR_ENABLE_SS_G0 (1U << 0) | ||
| 72 | |||
| 73 | #define GICD_TYPER_LPIS (1U << 17) | ||
| 74 | #define GICD_TYPER_MBIS (1U << 16) | ||
| 75 | |||
| 52 | #define GICD_TYPER_ID_BITS(typer) ((((typer) >> 19) & 0x1f) + 1) | 76 | #define GICD_TYPER_ID_BITS(typer) ((((typer) >> 19) & 0x1f) + 1) |
| 53 | #define GICD_TYPER_IRQS(typer) ((((typer) & 0x1f) + 1) * 32) | 77 | #define GICD_TYPER_IRQS(typer) ((((typer) & 0x1f) + 1) * 32) |
| 54 | #define GICD_TYPER_LPIS (1U << 17) | 78 | #define GICD_TYPER_LPIS (1U << 17) |
| @@ -60,6 +84,8 @@ | |||
| 60 | #define GIC_PIDR2_ARCH_GICv3 0x30 | 84 | #define GIC_PIDR2_ARCH_GICv3 0x30 |
| 61 | #define GIC_PIDR2_ARCH_GICv4 0x40 | 85 | #define GIC_PIDR2_ARCH_GICv4 0x40 |
| 62 | 86 | ||
| 87 | #define GIC_V3_DIST_SIZE 0x10000 | ||
| 88 | |||
| 63 | /* | 89 | /* |
| 64 | * Re-Distributor registers, offsets from RD_base | 90 | * Re-Distributor registers, offsets from RD_base |
| 65 | */ | 91 | */ |
| @@ -78,6 +104,7 @@ | |||
| 78 | #define GICR_SYNCR 0x00C0 | 104 | #define GICR_SYNCR 0x00C0 |
| 79 | #define GICR_MOVLPIR 0x0100 | 105 | #define GICR_MOVLPIR 0x0100 |
| 80 | #define GICR_MOVALLR 0x0110 | 106 | #define GICR_MOVALLR 0x0110 |
| 107 | #define GICR_IDREGS GICD_IDREGS | ||
| 81 | #define GICR_PIDR2 GICD_PIDR2 | 108 | #define GICR_PIDR2 GICD_PIDR2 |
| 82 | 109 | ||
| 83 | #define GICR_CTLR_ENABLE_LPIS (1UL << 0) | 110 | #define GICR_CTLR_ENABLE_LPIS (1UL << 0) |
| @@ -104,6 +131,7 @@ | |||
| 104 | /* | 131 | /* |
| 105 | * Re-Distributor registers, offsets from SGI_base | 132 | * Re-Distributor registers, offsets from SGI_base |
| 106 | */ | 133 | */ |
| 134 | #define GICR_IGROUPR0 GICD_IGROUPR | ||
| 107 | #define GICR_ISENABLER0 GICD_ISENABLER | 135 | #define GICR_ISENABLER0 GICD_ISENABLER |
| 108 | #define GICR_ICENABLER0 GICD_ICENABLER | 136 | #define GICR_ICENABLER0 GICD_ICENABLER |
| 109 | #define GICR_ISPENDR0 GICD_ISPENDR | 137 | #define GICR_ISPENDR0 GICD_ISPENDR |
| @@ -112,11 +140,15 @@ | |||
| 112 | #define GICR_ICACTIVER0 GICD_ICACTIVER | 140 | #define GICR_ICACTIVER0 GICD_ICACTIVER |
| 113 | #define GICR_IPRIORITYR0 GICD_IPRIORITYR | 141 | #define GICR_IPRIORITYR0 GICD_IPRIORITYR |
| 114 | #define GICR_ICFGR0 GICD_ICFGR | 142 | #define GICR_ICFGR0 GICD_ICFGR |
| 143 | #define GICR_IGRPMODR0 GICD_IGRPMODR | ||
| 144 | #define GICR_NSACR GICD_NSACR | ||
| 115 | 145 | ||
| 116 | #define GICR_TYPER_PLPIS (1U << 0) | 146 | #define GICR_TYPER_PLPIS (1U << 0) |
| 117 | #define GICR_TYPER_VLPIS (1U << 1) | 147 | #define GICR_TYPER_VLPIS (1U << 1) |
| 118 | #define GICR_TYPER_LAST (1U << 4) | 148 | #define GICR_TYPER_LAST (1U << 4) |
| 119 | 149 | ||
| 150 | #define GIC_V3_REDIST_SIZE 0x20000 | ||
| 151 | |||
| 120 | #define LPI_PROP_GROUP1 (1 << 1) | 152 | #define LPI_PROP_GROUP1 (1 << 1) |
| 121 | #define LPI_PROP_ENABLED (1 << 0) | 153 | #define LPI_PROP_ENABLED (1 << 0) |
| 122 | 154 | ||
| @@ -248,6 +280,18 @@ | |||
| 248 | #define ICC_SRE_EL2_SRE (1 << 0) | 280 | #define ICC_SRE_EL2_SRE (1 << 0) |
| 249 | #define ICC_SRE_EL2_ENABLE (1 << 3) | 281 | #define ICC_SRE_EL2_ENABLE (1 << 3) |
| 250 | 282 | ||
| 283 | #define ICC_SGI1R_TARGET_LIST_SHIFT 0 | ||
| 284 | #define ICC_SGI1R_TARGET_LIST_MASK (0xffff << ICC_SGI1R_TARGET_LIST_SHIFT) | ||
| 285 | #define ICC_SGI1R_AFFINITY_1_SHIFT 16 | ||
| 286 | #define ICC_SGI1R_AFFINITY_1_MASK (0xff << ICC_SGI1R_AFFINITY_1_SHIFT) | ||
| 287 | #define ICC_SGI1R_SGI_ID_SHIFT 24 | ||
| 288 | #define ICC_SGI1R_SGI_ID_MASK (0xff << ICC_SGI1R_SGI_ID_SHIFT) | ||
| 289 | #define ICC_SGI1R_AFFINITY_2_SHIFT 32 | ||
| 290 | #define ICC_SGI1R_AFFINITY_2_MASK (0xffULL << ICC_SGI1R_AFFINITY_1_SHIFT) | ||
| 291 | #define ICC_SGI1R_IRQ_ROUTING_MODE_BIT 40 | ||
| 292 | #define ICC_SGI1R_AFFINITY_3_SHIFT 48 | ||
| 293 | #define ICC_SGI1R_AFFINITY_3_MASK (0xffULL << ICC_SGI1R_AFFINITY_1_SHIFT) | ||
| 294 | |||
| 251 | /* | 295 | /* |
| 252 | * System register definitions | 296 | * System register definitions |
| 253 | */ | 297 | */ |
diff --git a/include/linux/irqchip/irq-omap-intc.h b/include/linux/irqchip/irq-omap-intc.h index e06b370cfc0d..2e3d1afeb674 100644 --- a/include/linux/irqchip/irq-omap-intc.h +++ b/include/linux/irqchip/irq-omap-intc.h | |||
| @@ -18,9 +18,7 @@ | |||
| 18 | #ifndef __INCLUDE_LINUX_IRQCHIP_IRQ_OMAP_INTC_H | 18 | #ifndef __INCLUDE_LINUX_IRQCHIP_IRQ_OMAP_INTC_H |
| 19 | #define __INCLUDE_LINUX_IRQCHIP_IRQ_OMAP_INTC_H | 19 | #define __INCLUDE_LINUX_IRQCHIP_IRQ_OMAP_INTC_H |
| 20 | 20 | ||
| 21 | void omap2_init_irq(void); | ||
| 22 | void omap3_init_irq(void); | 21 | void omap3_init_irq(void); |
| 23 | void ti81xx_init_irq(void); | ||
| 24 | 22 | ||
| 25 | int omap_irq_pending(void); | 23 | int omap_irq_pending(void); |
| 26 | void omap_intc_save_context(void); | 24 | void omap_intc_save_context(void); |
diff --git a/include/linux/kasan.h b/include/linux/kasan.h new file mode 100644 index 000000000000..72ba725ddf9c --- /dev/null +++ b/include/linux/kasan.h | |||
| @@ -0,0 +1,89 @@ | |||
| 1 | #ifndef _LINUX_KASAN_H | ||
| 2 | #define _LINUX_KASAN_H | ||
| 3 | |||
| 4 | #include <linux/types.h> | ||
| 5 | |||
| 6 | struct kmem_cache; | ||
| 7 | struct page; | ||
| 8 | |||
| 9 | #ifdef CONFIG_KASAN | ||
| 10 | |||
| 11 | #define KASAN_SHADOW_SCALE_SHIFT 3 | ||
| 12 | #define KASAN_SHADOW_OFFSET _AC(CONFIG_KASAN_SHADOW_OFFSET, UL) | ||
| 13 | |||
| 14 | #include <asm/kasan.h> | ||
| 15 | #include <linux/sched.h> | ||
| 16 | |||
| 17 | static inline void *kasan_mem_to_shadow(const void *addr) | ||
| 18 | { | ||
| 19 | return (void *)((unsigned long)addr >> KASAN_SHADOW_SCALE_SHIFT) | ||
| 20 | + KASAN_SHADOW_OFFSET; | ||
| 21 | } | ||
| 22 | |||
| 23 | /* Enable reporting bugs after kasan_disable_current() */ | ||
| 24 | static inline void kasan_enable_current(void) | ||
| 25 | { | ||
| 26 | current->kasan_depth++; | ||
| 27 | } | ||
| 28 | |||
| 29 | /* Disable reporting bugs for current task */ | ||
| 30 | static inline void kasan_disable_current(void) | ||
| 31 | { | ||
| 32 | current->kasan_depth--; | ||
| 33 | } | ||
| 34 | |||
| 35 | void kasan_unpoison_shadow(const void *address, size_t size); | ||
| 36 | |||
| 37 | void kasan_alloc_pages(struct page *page, unsigned int order); | ||
| 38 | void kasan_free_pages(struct page *page, unsigned int order); | ||
| 39 | |||
| 40 | void kasan_poison_slab(struct page *page); | ||
| 41 | void kasan_unpoison_object_data(struct kmem_cache *cache, void *object); | ||
| 42 | void kasan_poison_object_data(struct kmem_cache *cache, void *object); | ||
| 43 | |||
| 44 | void kasan_kmalloc_large(const void *ptr, size_t size); | ||
| 45 | void kasan_kfree_large(const void *ptr); | ||
| 46 | void kasan_kmalloc(struct kmem_cache *s, const void *object, size_t size); | ||
| 47 | void kasan_krealloc(const void *object, size_t new_size); | ||
| 48 | |||
| 49 | void kasan_slab_alloc(struct kmem_cache *s, void *object); | ||
| 50 | void kasan_slab_free(struct kmem_cache *s, void *object); | ||
| 51 | |||
| 52 | #define MODULE_ALIGN (PAGE_SIZE << KASAN_SHADOW_SCALE_SHIFT) | ||
| 53 | |||
| 54 | int kasan_module_alloc(void *addr, size_t size); | ||
| 55 | void kasan_module_free(void *addr); | ||
| 56 | |||
| 57 | #else /* CONFIG_KASAN */ | ||
| 58 | |||
| 59 | #define MODULE_ALIGN 1 | ||
| 60 | |||
| 61 | static inline void kasan_unpoison_shadow(const void *address, size_t size) {} | ||
| 62 | |||
| 63 | static inline void kasan_enable_current(void) {} | ||
| 64 | static inline void kasan_disable_current(void) {} | ||
| 65 | |||
| 66 | static inline void kasan_alloc_pages(struct page *page, unsigned int order) {} | ||
| 67 | static inline void kasan_free_pages(struct page *page, unsigned int order) {} | ||
| 68 | |||
| 69 | static inline void kasan_poison_slab(struct page *page) {} | ||
| 70 | static inline void kasan_unpoison_object_data(struct kmem_cache *cache, | ||
| 71 | void *object) {} | ||
| 72 | static inline void kasan_poison_object_data(struct kmem_cache *cache, | ||
| 73 | void *object) {} | ||
| 74 | |||
| 75 | static inline void kasan_kmalloc_large(void *ptr, size_t size) {} | ||
| 76 | static inline void kasan_kfree_large(const void *ptr) {} | ||
| 77 | static inline void kasan_kmalloc(struct kmem_cache *s, const void *object, | ||
| 78 | size_t size) {} | ||
| 79 | static inline void kasan_krealloc(const void *object, size_t new_size) {} | ||
| 80 | |||
| 81 | static inline void kasan_slab_alloc(struct kmem_cache *s, void *object) {} | ||
| 82 | static inline void kasan_slab_free(struct kmem_cache *s, void *object) {} | ||
| 83 | |||
| 84 | static inline int kasan_module_alloc(void *addr, size_t size) { return 0; } | ||
| 85 | static inline void kasan_module_free(void *addr) {} | ||
| 86 | |||
| 87 | #endif /* CONFIG_KASAN */ | ||
| 88 | |||
| 89 | #endif /* LINUX_KASAN_H */ | ||
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index e42e7dc34c68..d6d630d31ef3 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h | |||
| @@ -800,9 +800,6 @@ static inline void ftrace_dump(enum ftrace_dump_mode oops_dump_mode) { } | |||
| 800 | const typeof( ((type *)0)->member ) *__mptr = (ptr); \ | 800 | const typeof( ((type *)0)->member ) *__mptr = (ptr); \ |
| 801 | (type *)( (char *)__mptr - offsetof(type,member) );}) | 801 | (type *)( (char *)__mptr - offsetof(type,member) );}) |
| 802 | 802 | ||
| 803 | /* Trap pasters of __FUNCTION__ at compile-time */ | ||
| 804 | #define __FUNCTION__ (__func__) | ||
| 805 | |||
| 806 | /* Rebuild everything on CONFIG_FTRACE_MCOUNT_RECORD */ | 803 | /* Rebuild everything on CONFIG_FTRACE_MCOUNT_RECORD */ |
| 807 | #ifdef CONFIG_FTRACE_MCOUNT_RECORD | 804 | #ifdef CONFIG_FTRACE_MCOUNT_RECORD |
| 808 | # define REBUILD_DUE_TO_FTRACE_MCOUNT_RECORD | 805 | # define REBUILD_DUE_TO_FTRACE_MCOUNT_RECORD |
diff --git a/include/linux/kernfs.h b/include/linux/kernfs.h index d4e01b358341..71ecdab1671b 100644 --- a/include/linux/kernfs.h +++ b/include/linux/kernfs.h | |||
| @@ -43,7 +43,6 @@ enum kernfs_node_flag { | |||
| 43 | KERNFS_HAS_SEQ_SHOW = 0x0040, | 43 | KERNFS_HAS_SEQ_SHOW = 0x0040, |
| 44 | KERNFS_HAS_MMAP = 0x0080, | 44 | KERNFS_HAS_MMAP = 0x0080, |
| 45 | KERNFS_LOCKDEP = 0x0100, | 45 | KERNFS_LOCKDEP = 0x0100, |
| 46 | KERNFS_STATIC_NAME = 0x0200, | ||
| 47 | KERNFS_SUICIDAL = 0x0400, | 46 | KERNFS_SUICIDAL = 0x0400, |
| 48 | KERNFS_SUICIDED = 0x0800, | 47 | KERNFS_SUICIDED = 0x0800, |
| 49 | }; | 48 | }; |
| @@ -291,7 +290,6 @@ struct kernfs_node *__kernfs_create_file(struct kernfs_node *parent, | |||
| 291 | umode_t mode, loff_t size, | 290 | umode_t mode, loff_t size, |
| 292 | const struct kernfs_ops *ops, | 291 | const struct kernfs_ops *ops, |
| 293 | void *priv, const void *ns, | 292 | void *priv, const void *ns, |
| 294 | bool name_is_static, | ||
| 295 | struct lock_class_key *key); | 293 | struct lock_class_key *key); |
| 296 | struct kernfs_node *kernfs_create_link(struct kernfs_node *parent, | 294 | struct kernfs_node *kernfs_create_link(struct kernfs_node *parent, |
| 297 | const char *name, | 295 | const char *name, |
| @@ -369,8 +367,7 @@ kernfs_create_dir_ns(struct kernfs_node *parent, const char *name, | |||
| 369 | static inline struct kernfs_node * | 367 | static inline struct kernfs_node * |
| 370 | __kernfs_create_file(struct kernfs_node *parent, const char *name, | 368 | __kernfs_create_file(struct kernfs_node *parent, const char *name, |
| 371 | umode_t mode, loff_t size, const struct kernfs_ops *ops, | 369 | umode_t mode, loff_t size, const struct kernfs_ops *ops, |
| 372 | void *priv, const void *ns, bool name_is_static, | 370 | void *priv, const void *ns, struct lock_class_key *key) |
| 373 | struct lock_class_key *key) | ||
| 374 | { return ERR_PTR(-ENOSYS); } | 371 | { return ERR_PTR(-ENOSYS); } |
| 375 | 372 | ||
| 376 | static inline struct kernfs_node * | 373 | static inline struct kernfs_node * |
| @@ -439,7 +436,7 @@ kernfs_create_file_ns(struct kernfs_node *parent, const char *name, | |||
| 439 | key = (struct lock_class_key *)&ops->lockdep_key; | 436 | key = (struct lock_class_key *)&ops->lockdep_key; |
| 440 | #endif | 437 | #endif |
| 441 | return __kernfs_create_file(parent, name, mode, size, ops, priv, ns, | 438 | return __kernfs_create_file(parent, name, mode, size, ops, priv, ns, |
| 442 | false, key); | 439 | key); |
| 443 | } | 440 | } |
| 444 | 441 | ||
| 445 | static inline struct kernfs_node * | 442 | static inline struct kernfs_node * |
diff --git a/include/linux/kexec.h b/include/linux/kexec.h index 9d957b7ae095..e60a745ac198 100644 --- a/include/linux/kexec.h +++ b/include/linux/kexec.h | |||
| @@ -1,6 +1,19 @@ | |||
| 1 | #ifndef LINUX_KEXEC_H | 1 | #ifndef LINUX_KEXEC_H |
| 2 | #define LINUX_KEXEC_H | 2 | #define LINUX_KEXEC_H |
| 3 | 3 | ||
| 4 | #define IND_DESTINATION_BIT 0 | ||
| 5 | #define IND_INDIRECTION_BIT 1 | ||
| 6 | #define IND_DONE_BIT 2 | ||
| 7 | #define IND_SOURCE_BIT 3 | ||
| 8 | |||
| 9 | #define IND_DESTINATION (1 << IND_DESTINATION_BIT) | ||
| 10 | #define IND_INDIRECTION (1 << IND_INDIRECTION_BIT) | ||
| 11 | #define IND_DONE (1 << IND_DONE_BIT) | ||
| 12 | #define IND_SOURCE (1 << IND_SOURCE_BIT) | ||
| 13 | #define IND_FLAGS (IND_DESTINATION | IND_INDIRECTION | IND_DONE | IND_SOURCE) | ||
| 14 | |||
| 15 | #if !defined(__ASSEMBLY__) | ||
| 16 | |||
| 4 | #include <uapi/linux/kexec.h> | 17 | #include <uapi/linux/kexec.h> |
| 5 | 18 | ||
| 6 | #ifdef CONFIG_KEXEC | 19 | #ifdef CONFIG_KEXEC |
| @@ -64,10 +77,6 @@ | |||
| 64 | */ | 77 | */ |
| 65 | 78 | ||
| 66 | typedef unsigned long kimage_entry_t; | 79 | typedef unsigned long kimage_entry_t; |
| 67 | #define IND_DESTINATION 0x1 | ||
| 68 | #define IND_INDIRECTION 0x2 | ||
| 69 | #define IND_DONE 0x4 | ||
| 70 | #define IND_SOURCE 0x8 | ||
| 71 | 80 | ||
| 72 | struct kexec_segment { | 81 | struct kexec_segment { |
| 73 | /* | 82 | /* |
| @@ -122,8 +131,6 @@ struct kimage { | |||
| 122 | kimage_entry_t *entry; | 131 | kimage_entry_t *entry; |
| 123 | kimage_entry_t *last_entry; | 132 | kimage_entry_t *last_entry; |
| 124 | 133 | ||
| 125 | unsigned long destination; | ||
| 126 | |||
| 127 | unsigned long start; | 134 | unsigned long start; |
| 128 | struct page *control_code_page; | 135 | struct page *control_code_page; |
| 129 | struct page *swap_page; | 136 | struct page *swap_page; |
| @@ -313,4 +320,7 @@ struct task_struct; | |||
| 313 | static inline void crash_kexec(struct pt_regs *regs) { } | 320 | static inline void crash_kexec(struct pt_regs *regs) { } |
| 314 | static inline int kexec_should_crash(struct task_struct *p) { return 0; } | 321 | static inline int kexec_should_crash(struct task_struct *p) { return 0; } |
| 315 | #endif /* CONFIG_KEXEC */ | 322 | #endif /* CONFIG_KEXEC */ |
| 323 | |||
| 324 | #endif /* !defined(__ASSEBMLY__) */ | ||
| 325 | |||
| 316 | #endif /* LINUX_KEXEC_H */ | 326 | #endif /* LINUX_KEXEC_H */ |
diff --git a/include/linux/kprobes.h b/include/linux/kprobes.h index 5297f9fa0ef2..1ab54754a86d 100644 --- a/include/linux/kprobes.h +++ b/include/linux/kprobes.h | |||
| @@ -308,7 +308,8 @@ struct optimized_kprobe { | |||
| 308 | /* Architecture dependent functions for direct jump optimization */ | 308 | /* Architecture dependent functions for direct jump optimization */ |
| 309 | extern int arch_prepared_optinsn(struct arch_optimized_insn *optinsn); | 309 | extern int arch_prepared_optinsn(struct arch_optimized_insn *optinsn); |
| 310 | extern int arch_check_optimized_kprobe(struct optimized_kprobe *op); | 310 | extern int arch_check_optimized_kprobe(struct optimized_kprobe *op); |
| 311 | extern int arch_prepare_optimized_kprobe(struct optimized_kprobe *op); | 311 | extern int arch_prepare_optimized_kprobe(struct optimized_kprobe *op, |
| 312 | struct kprobe *orig); | ||
| 312 | extern void arch_remove_optimized_kprobe(struct optimized_kprobe *op); | 313 | extern void arch_remove_optimized_kprobe(struct optimized_kprobe *op); |
| 313 | extern void arch_optimize_kprobes(struct list_head *oplist); | 314 | extern void arch_optimize_kprobes(struct list_head *oplist); |
| 314 | extern void arch_unoptimize_kprobes(struct list_head *oplist, | 315 | extern void arch_unoptimize_kprobes(struct list_head *oplist, |
diff --git a/include/linux/kvm_host.h b/include/linux/kvm_host.h index 26f106022c88..d12b2104d19b 100644 --- a/include/linux/kvm_host.h +++ b/include/linux/kvm_host.h | |||
| @@ -33,10 +33,6 @@ | |||
| 33 | 33 | ||
| 34 | #include <asm/kvm_host.h> | 34 | #include <asm/kvm_host.h> |
| 35 | 35 | ||
| 36 | #ifndef KVM_MMIO_SIZE | ||
| 37 | #define KVM_MMIO_SIZE 8 | ||
| 38 | #endif | ||
| 39 | |||
| 40 | /* | 36 | /* |
| 41 | * The bit 16 ~ bit 31 of kvm_memory_region::flags are internally used | 37 | * The bit 16 ~ bit 31 of kvm_memory_region::flags are internally used |
| 42 | * in kvm, other bits are visible for userspace which are defined in | 38 | * in kvm, other bits are visible for userspace which are defined in |
| @@ -200,17 +196,6 @@ int kvm_setup_async_pf(struct kvm_vcpu *vcpu, gva_t gva, unsigned long hva, | |||
| 200 | int kvm_async_pf_wakeup_all(struct kvm_vcpu *vcpu); | 196 | int kvm_async_pf_wakeup_all(struct kvm_vcpu *vcpu); |
| 201 | #endif | 197 | #endif |
| 202 | 198 | ||
| 203 | /* | ||
| 204 | * Carry out a gup that requires IO. Allow the mm to relinquish the mmap | ||
| 205 | * semaphore if the filemap/swap has to wait on a page lock. pagep == NULL | ||
| 206 | * controls whether we retry the gup one more time to completion in that case. | ||
| 207 | * Typically this is called after a FAULT_FLAG_RETRY_NOWAIT in the main tdp | ||
| 208 | * handler. | ||
| 209 | */ | ||
| 210 | int kvm_get_user_page_io(struct task_struct *tsk, struct mm_struct *mm, | ||
| 211 | unsigned long addr, bool write_fault, | ||
| 212 | struct page **pagep); | ||
| 213 | |||
| 214 | enum { | 199 | enum { |
| 215 | OUTSIDE_GUEST_MODE, | 200 | OUTSIDE_GUEST_MODE, |
| 216 | IN_GUEST_MODE, | 201 | IN_GUEST_MODE, |
| @@ -611,6 +596,15 @@ int kvm_vm_ioctl_check_extension(struct kvm *kvm, long ext); | |||
| 611 | 596 | ||
| 612 | int kvm_get_dirty_log(struct kvm *kvm, | 597 | int kvm_get_dirty_log(struct kvm *kvm, |
| 613 | struct kvm_dirty_log *log, int *is_dirty); | 598 | struct kvm_dirty_log *log, int *is_dirty); |
| 599 | |||
| 600 | int kvm_get_dirty_log_protect(struct kvm *kvm, | ||
| 601 | struct kvm_dirty_log *log, bool *is_dirty); | ||
| 602 | |||
| 603 | void kvm_arch_mmu_enable_log_dirty_pt_masked(struct kvm *kvm, | ||
| 604 | struct kvm_memory_slot *slot, | ||
| 605 | gfn_t gfn_offset, | ||
| 606 | unsigned long mask); | ||
| 607 | |||
| 614 | int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, | 608 | int kvm_vm_ioctl_get_dirty_log(struct kvm *kvm, |
| 615 | struct kvm_dirty_log *log); | 609 | struct kvm_dirty_log *log); |
| 616 | 610 | ||
| @@ -652,7 +646,7 @@ void kvm_arch_vcpu_load(struct kvm_vcpu *vcpu, int cpu); | |||
| 652 | void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu); | 646 | void kvm_arch_vcpu_put(struct kvm_vcpu *vcpu); |
| 653 | struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id); | 647 | struct kvm_vcpu *kvm_arch_vcpu_create(struct kvm *kvm, unsigned int id); |
| 654 | int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu); | 648 | int kvm_arch_vcpu_setup(struct kvm_vcpu *vcpu); |
| 655 | int kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu); | 649 | void kvm_arch_vcpu_postcreate(struct kvm_vcpu *vcpu); |
| 656 | void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu); | 650 | void kvm_arch_vcpu_destroy(struct kvm_vcpu *vcpu); |
| 657 | 651 | ||
| 658 | int kvm_arch_hardware_enable(void); | 652 | int kvm_arch_hardware_enable(void); |
| @@ -1042,6 +1036,8 @@ void kvm_unregister_device_ops(u32 type); | |||
| 1042 | 1036 | ||
| 1043 | extern struct kvm_device_ops kvm_mpic_ops; | 1037 | extern struct kvm_device_ops kvm_mpic_ops; |
| 1044 | extern struct kvm_device_ops kvm_xics_ops; | 1038 | extern struct kvm_device_ops kvm_xics_ops; |
| 1039 | extern struct kvm_device_ops kvm_arm_vgic_v2_ops; | ||
| 1040 | extern struct kvm_device_ops kvm_arm_vgic_v3_ops; | ||
| 1045 | 1041 | ||
| 1046 | #ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT | 1042 | #ifdef CONFIG_HAVE_KVM_CPU_RELAX_INTERCEPT |
| 1047 | 1043 | ||
diff --git a/include/linux/led-class-flash.h b/include/linux/led-class-flash.h new file mode 100644 index 000000000000..5ba2facd7a51 --- /dev/null +++ b/include/linux/led-class-flash.h | |||
| @@ -0,0 +1,207 @@ | |||
| 1 | /* | ||
| 2 | * LED Flash class interface | ||
| 3 | * | ||
| 4 | * Copyright (C) 2015 Samsung Electronics Co., Ltd. | ||
| 5 | * Author: Jacek Anaszewski <j.anaszewski@samsung.com> | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License version 2 as | ||
| 9 | * published by the Free Software Foundation. | ||
| 10 | * | ||
| 11 | */ | ||
| 12 | #ifndef __LINUX_FLASH_LEDS_H_INCLUDED | ||
| 13 | #define __LINUX_FLASH_LEDS_H_INCLUDED | ||
| 14 | |||
| 15 | #include <linux/leds.h> | ||
| 16 | #include <uapi/linux/v4l2-controls.h> | ||
| 17 | |||
| 18 | struct device_node; | ||
| 19 | struct led_classdev_flash; | ||
| 20 | |||
| 21 | /* | ||
| 22 | * Supported led fault bits - must be kept in synch | ||
| 23 | * with V4L2_FLASH_FAULT bits. | ||
| 24 | */ | ||
| 25 | #define LED_FAULT_OVER_VOLTAGE (1 << 0) | ||
| 26 | #define LED_FAULT_TIMEOUT (1 << 1) | ||
| 27 | #define LED_FAULT_OVER_TEMPERATURE (1 << 2) | ||
| 28 | #define LED_FAULT_SHORT_CIRCUIT (1 << 3) | ||
| 29 | #define LED_FAULT_OVER_CURRENT (1 << 4) | ||
| 30 | #define LED_FAULT_INDICATOR (1 << 5) | ||
| 31 | #define LED_FAULT_UNDER_VOLTAGE (1 << 6) | ||
| 32 | #define LED_FAULT_INPUT_VOLTAGE (1 << 7) | ||
| 33 | #define LED_FAULT_LED_OVER_TEMPERATURE (1 << 8) | ||
| 34 | #define LED_NUM_FLASH_FAULTS 9 | ||
| 35 | |||
| 36 | #define LED_FLASH_MAX_SYSFS_GROUPS 7 | ||
| 37 | |||
| 38 | struct led_flash_ops { | ||
| 39 | /* set flash brightness */ | ||
| 40 | int (*flash_brightness_set)(struct led_classdev_flash *fled_cdev, | ||
| 41 | u32 brightness); | ||
| 42 | /* get flash brightness */ | ||
| 43 | int (*flash_brightness_get)(struct led_classdev_flash *fled_cdev, | ||
| 44 | u32 *brightness); | ||
| 45 | /* set flash strobe state */ | ||
| 46 | int (*strobe_set)(struct led_classdev_flash *fled_cdev, bool state); | ||
| 47 | /* get flash strobe state */ | ||
| 48 | int (*strobe_get)(struct led_classdev_flash *fled_cdev, bool *state); | ||
| 49 | /* set flash timeout */ | ||
| 50 | int (*timeout_set)(struct led_classdev_flash *fled_cdev, u32 timeout); | ||
| 51 | /* get the flash LED fault */ | ||
| 52 | int (*fault_get)(struct led_classdev_flash *fled_cdev, u32 *fault); | ||
| 53 | }; | ||
| 54 | |||
| 55 | /* | ||
| 56 | * Current value of a flash setting along | ||
| 57 | * with its constraints. | ||
| 58 | */ | ||
| 59 | struct led_flash_setting { | ||
| 60 | /* maximum allowed value */ | ||
| 61 | u32 min; | ||
| 62 | /* maximum allowed value */ | ||
| 63 | u32 max; | ||
| 64 | /* step value */ | ||
| 65 | u32 step; | ||
| 66 | /* current value */ | ||
| 67 | u32 val; | ||
| 68 | }; | ||
| 69 | |||
| 70 | struct led_classdev_flash { | ||
| 71 | /* led class device */ | ||
| 72 | struct led_classdev led_cdev; | ||
| 73 | |||
| 74 | /* flash led specific ops */ | ||
| 75 | const struct led_flash_ops *ops; | ||
| 76 | |||
| 77 | /* flash brightness value in microamperes along with its constraints */ | ||
| 78 | struct led_flash_setting brightness; | ||
| 79 | |||
| 80 | /* flash timeout value in microseconds along with its constraints */ | ||
| 81 | struct led_flash_setting timeout; | ||
| 82 | |||
| 83 | /* LED Flash class sysfs groups */ | ||
| 84 | const struct attribute_group *sysfs_groups[LED_FLASH_MAX_SYSFS_GROUPS]; | ||
| 85 | |||
| 86 | /* LEDs available for flash strobe synchronization */ | ||
| 87 | struct led_classdev_flash **sync_leds; | ||
| 88 | |||
| 89 | /* Number of LEDs available for flash strobe synchronization */ | ||
| 90 | int num_sync_leds; | ||
| 91 | |||
| 92 | /* | ||
| 93 | * The identifier of the sub-led to synchronize the flash strobe with. | ||
| 94 | * Identifiers start from 1, which reflects the first element from the | ||
| 95 | * sync_leds array. 0 means that the flash strobe should not be | ||
| 96 | * synchronized. | ||
| 97 | */ | ||
| 98 | u32 sync_led_id; | ||
| 99 | }; | ||
| 100 | |||
| 101 | static inline struct led_classdev_flash *lcdev_to_flcdev( | ||
| 102 | struct led_classdev *lcdev) | ||
| 103 | { | ||
| 104 | return container_of(lcdev, struct led_classdev_flash, led_cdev); | ||
| 105 | } | ||
| 106 | |||
| 107 | /** | ||
| 108 | * led_classdev_flash_register - register a new object of led_classdev class | ||
| 109 | * with support for flash LEDs | ||
| 110 | * @parent: the flash LED to register | ||
| 111 | * @fled_cdev: the led_classdev_flash structure for this device | ||
| 112 | * | ||
| 113 | * Returns: 0 on success or negative error value on failure | ||
| 114 | */ | ||
| 115 | extern int led_classdev_flash_register(struct device *parent, | ||
| 116 | struct led_classdev_flash *fled_cdev); | ||
| 117 | |||
| 118 | /** | ||
| 119 | * led_classdev_flash_unregister - unregisters an object of led_classdev class | ||
| 120 | * with support for flash LEDs | ||
| 121 | * @fled_cdev: the flash LED to unregister | ||
| 122 | * | ||
| 123 | * Unregister a previously registered via led_classdev_flash_register object | ||
| 124 | */ | ||
| 125 | extern void led_classdev_flash_unregister(struct led_classdev_flash *fled_cdev); | ||
| 126 | |||
| 127 | /** | ||
| 128 | * led_set_flash_strobe - setup flash strobe | ||
| 129 | * @fled_cdev: the flash LED to set strobe on | ||
| 130 | * @state: 1 - strobe flash, 0 - stop flash strobe | ||
| 131 | * | ||
| 132 | * Strobe the flash LED. | ||
| 133 | * | ||
| 134 | * Returns: 0 on success or negative error value on failure | ||
| 135 | */ | ||
| 136 | static inline int led_set_flash_strobe(struct led_classdev_flash *fled_cdev, | ||
| 137 | bool state) | ||
| 138 | { | ||
| 139 | return fled_cdev->ops->strobe_set(fled_cdev, state); | ||
| 140 | } | ||
| 141 | |||
| 142 | /** | ||
| 143 | * led_get_flash_strobe - get flash strobe status | ||
| 144 | * @fled_cdev: the flash LED to query | ||
| 145 | * @state: 1 - flash is strobing, 0 - flash is off | ||
| 146 | * | ||
| 147 | * Check whether the flash is strobing at the moment. | ||
| 148 | * | ||
| 149 | * Returns: 0 on success or negative error value on failure | ||
| 150 | */ | ||
| 151 | static inline int led_get_flash_strobe(struct led_classdev_flash *fled_cdev, | ||
| 152 | bool *state) | ||
| 153 | { | ||
| 154 | if (fled_cdev->ops->strobe_get) | ||
| 155 | return fled_cdev->ops->strobe_get(fled_cdev, state); | ||
| 156 | |||
| 157 | return -EINVAL; | ||
| 158 | } | ||
| 159 | |||
| 160 | /** | ||
| 161 | * led_set_flash_brightness - set flash LED brightness | ||
| 162 | * @fled_cdev: the flash LED to set | ||
| 163 | * @brightness: the brightness to set it to | ||
| 164 | * | ||
| 165 | * Set a flash LED's brightness. | ||
| 166 | * | ||
| 167 | * Returns: 0 on success or negative error value on failure | ||
| 168 | */ | ||
| 169 | extern int led_set_flash_brightness(struct led_classdev_flash *fled_cdev, | ||
| 170 | u32 brightness); | ||
| 171 | |||
| 172 | /** | ||
| 173 | * led_update_flash_brightness - update flash LED brightness | ||
| 174 | * @fled_cdev: the flash LED to query | ||
| 175 | * | ||
| 176 | * Get a flash LED's current brightness and update led_flash->brightness | ||
| 177 | * member with the obtained value. | ||
| 178 | * | ||
| 179 | * Returns: 0 on success or negative error value on failure | ||
| 180 | */ | ||
| 181 | extern int led_update_flash_brightness(struct led_classdev_flash *fled_cdev); | ||
| 182 | |||
| 183 | /** | ||
| 184 | * led_set_flash_timeout - set flash LED timeout | ||
| 185 | * @fled_cdev: the flash LED to set | ||
| 186 | * @timeout: the flash timeout to set it to | ||
| 187 | * | ||
| 188 | * Set the flash strobe duration. | ||
| 189 | * | ||
| 190 | * Returns: 0 on success or negative error value on failure | ||
| 191 | */ | ||
| 192 | extern int led_set_flash_timeout(struct led_classdev_flash *fled_cdev, | ||
| 193 | u32 timeout); | ||
| 194 | |||
| 195 | /** | ||
| 196 | * led_get_flash_fault - get the flash LED fault | ||
| 197 | * @fled_cdev: the flash LED to query | ||
| 198 | * @fault: bitmask containing flash faults | ||
| 199 | * | ||
| 200 | * Get the flash LED fault. | ||
| 201 | * | ||
| 202 | * Returns: 0 on success or negative error value on failure | ||
| 203 | */ | ||
| 204 | extern int led_get_flash_fault(struct led_classdev_flash *fled_cdev, | ||
| 205 | u32 *fault); | ||
| 206 | |||
| 207 | #endif /* __LINUX_FLASH_LEDS_H_INCLUDED */ | ||
diff --git a/include/linux/leds.h b/include/linux/leds.h index cfceef32c9b3..f70f84f35674 100644 --- a/include/linux/leds.h +++ b/include/linux/leds.h | |||
| @@ -46,6 +46,8 @@ struct led_classdev { | |||
| 46 | #define LED_SYSFS_DISABLE (1 << 20) | 46 | #define LED_SYSFS_DISABLE (1 << 20) |
| 47 | #define SET_BRIGHTNESS_ASYNC (1 << 21) | 47 | #define SET_BRIGHTNESS_ASYNC (1 << 21) |
| 48 | #define SET_BRIGHTNESS_SYNC (1 << 22) | 48 | #define SET_BRIGHTNESS_SYNC (1 << 22) |
| 49 | #define LED_DEV_CAP_FLASH (1 << 23) | ||
| 50 | #define LED_DEV_CAP_SYNC_STROBE (1 << 24) | ||
| 49 | 51 | ||
| 50 | /* Set LED brightness level */ | 52 | /* Set LED brightness level */ |
| 51 | /* Must not sleep, use a workqueue if needed */ | 53 | /* Must not sleep, use a workqueue if needed */ |
| @@ -81,6 +83,7 @@ struct led_classdev { | |||
| 81 | unsigned long blink_delay_on, blink_delay_off; | 83 | unsigned long blink_delay_on, blink_delay_off; |
| 82 | struct timer_list blink_timer; | 84 | struct timer_list blink_timer; |
| 83 | int blink_brightness; | 85 | int blink_brightness; |
| 86 | void (*flash_resume)(struct led_classdev *led_cdev); | ||
| 84 | 87 | ||
| 85 | struct work_struct set_brightness_work; | 88 | struct work_struct set_brightness_work; |
| 86 | int delayed_set_value; | 89 | int delayed_set_value; |
diff --git a/include/linux/libata.h b/include/linux/libata.h index 61df823ac86a..fc03efa64ffe 100644 --- a/include/linux/libata.h +++ b/include/linux/libata.h | |||
| @@ -823,10 +823,10 @@ struct ata_port { | |||
| 823 | unsigned int cbl; /* cable type; ATA_CBL_xxx */ | 823 | unsigned int cbl; /* cable type; ATA_CBL_xxx */ |
| 824 | 824 | ||
| 825 | struct ata_queued_cmd qcmd[ATA_MAX_QUEUE]; | 825 | struct ata_queued_cmd qcmd[ATA_MAX_QUEUE]; |
| 826 | unsigned long qc_allocated; | 826 | unsigned long sas_tag_allocated; /* for sas tag allocation only */ |
| 827 | unsigned int qc_active; | 827 | unsigned int qc_active; |
| 828 | int nr_active_links; /* #links with active qcs */ | 828 | int nr_active_links; /* #links with active qcs */ |
| 829 | unsigned int last_tag; /* track next tag hw expects */ | 829 | unsigned int sas_last_tag; /* track next tag hw expects */ |
| 830 | 830 | ||
| 831 | struct ata_link link; /* host default link */ | 831 | struct ata_link link; /* host default link */ |
| 832 | struct ata_link *slave_link; /* see ata_slave_link_init() */ | 832 | struct ata_link *slave_link; /* see ata_slave_link_init() */ |
| @@ -1352,6 +1352,7 @@ extern struct device_attribute *ata_common_sdev_attrs[]; | |||
| 1352 | .ioctl = ata_scsi_ioctl, \ | 1352 | .ioctl = ata_scsi_ioctl, \ |
| 1353 | .queuecommand = ata_scsi_queuecmd, \ | 1353 | .queuecommand = ata_scsi_queuecmd, \ |
| 1354 | .can_queue = ATA_DEF_QUEUE, \ | 1354 | .can_queue = ATA_DEF_QUEUE, \ |
| 1355 | .tag_alloc_policy = BLK_TAG_ALLOC_RR, \ | ||
| 1355 | .this_id = ATA_SHT_THIS_ID, \ | 1356 | .this_id = ATA_SHT_THIS_ID, \ |
| 1356 | .cmd_per_lun = ATA_SHT_CMD_PER_LUN, \ | 1357 | .cmd_per_lun = ATA_SHT_CMD_PER_LUN, \ |
| 1357 | .emulated = ATA_SHT_EMULATED, \ | 1358 | .emulated = ATA_SHT_EMULATED, \ |
diff --git a/include/linux/list_lru.h b/include/linux/list_lru.h index f3434533fbf8..2a6b9947aaa3 100644 --- a/include/linux/list_lru.h +++ b/include/linux/list_lru.h | |||
| @@ -9,6 +9,9 @@ | |||
| 9 | 9 | ||
| 10 | #include <linux/list.h> | 10 | #include <linux/list.h> |
| 11 | #include <linux/nodemask.h> | 11 | #include <linux/nodemask.h> |
| 12 | #include <linux/shrinker.h> | ||
| 13 | |||
| 14 | struct mem_cgroup; | ||
| 12 | 15 | ||
| 13 | /* list_lru_walk_cb has to always return one of those */ | 16 | /* list_lru_walk_cb has to always return one of those */ |
| 14 | enum lru_status { | 17 | enum lru_status { |
| @@ -21,24 +24,45 @@ enum lru_status { | |||
| 21 | internally, but has to return locked. */ | 24 | internally, but has to return locked. */ |
| 22 | }; | 25 | }; |
| 23 | 26 | ||
| 24 | struct list_lru_node { | 27 | struct list_lru_one { |
| 25 | spinlock_t lock; | ||
| 26 | struct list_head list; | 28 | struct list_head list; |
| 27 | /* kept as signed so we can catch imbalance bugs */ | 29 | /* may become negative during memcg reparenting */ |
| 28 | long nr_items; | 30 | long nr_items; |
| 31 | }; | ||
| 32 | |||
| 33 | struct list_lru_memcg { | ||
| 34 | /* array of per cgroup lists, indexed by memcg_cache_id */ | ||
| 35 | struct list_lru_one *lru[0]; | ||
| 36 | }; | ||
| 37 | |||
| 38 | struct list_lru_node { | ||
| 39 | /* protects all lists on the node, including per cgroup */ | ||
| 40 | spinlock_t lock; | ||
| 41 | /* global list, used for the root cgroup in cgroup aware lrus */ | ||
| 42 | struct list_lru_one lru; | ||
| 43 | #ifdef CONFIG_MEMCG_KMEM | ||
| 44 | /* for cgroup aware lrus points to per cgroup lists, otherwise NULL */ | ||
| 45 | struct list_lru_memcg *memcg_lrus; | ||
| 46 | #endif | ||
| 29 | } ____cacheline_aligned_in_smp; | 47 | } ____cacheline_aligned_in_smp; |
| 30 | 48 | ||
| 31 | struct list_lru { | 49 | struct list_lru { |
| 32 | struct list_lru_node *node; | 50 | struct list_lru_node *node; |
| 33 | nodemask_t active_nodes; | 51 | #ifdef CONFIG_MEMCG_KMEM |
| 52 | struct list_head list; | ||
| 53 | #endif | ||
| 34 | }; | 54 | }; |
| 35 | 55 | ||
| 36 | void list_lru_destroy(struct list_lru *lru); | 56 | void list_lru_destroy(struct list_lru *lru); |
| 37 | int list_lru_init_key(struct list_lru *lru, struct lock_class_key *key); | 57 | int __list_lru_init(struct list_lru *lru, bool memcg_aware, |
| 38 | static inline int list_lru_init(struct list_lru *lru) | 58 | struct lock_class_key *key); |
| 39 | { | 59 | |
| 40 | return list_lru_init_key(lru, NULL); | 60 | #define list_lru_init(lru) __list_lru_init((lru), false, NULL) |
| 41 | } | 61 | #define list_lru_init_key(lru, key) __list_lru_init((lru), false, (key)) |
| 62 | #define list_lru_init_memcg(lru) __list_lru_init((lru), true, NULL) | ||
| 63 | |||
| 64 | int memcg_update_all_list_lrus(int num_memcgs); | ||
| 65 | void memcg_drain_all_list_lrus(int src_idx, int dst_idx); | ||
| 42 | 66 | ||
| 43 | /** | 67 | /** |
| 44 | * list_lru_add: add an element to the lru list's tail | 68 | * list_lru_add: add an element to the lru list's tail |
| @@ -72,32 +96,48 @@ bool list_lru_add(struct list_lru *lru, struct list_head *item); | |||
| 72 | bool list_lru_del(struct list_lru *lru, struct list_head *item); | 96 | bool list_lru_del(struct list_lru *lru, struct list_head *item); |
| 73 | 97 | ||
| 74 | /** | 98 | /** |
| 75 | * list_lru_count_node: return the number of objects currently held by @lru | 99 | * list_lru_count_one: return the number of objects currently held by @lru |
| 76 | * @lru: the lru pointer. | 100 | * @lru: the lru pointer. |
| 77 | * @nid: the node id to count from. | 101 | * @nid: the node id to count from. |
| 102 | * @memcg: the cgroup to count from. | ||
| 78 | * | 103 | * |
| 79 | * Always return a non-negative number, 0 for empty lists. There is no | 104 | * Always return a non-negative number, 0 for empty lists. There is no |
| 80 | * guarantee that the list is not updated while the count is being computed. | 105 | * guarantee that the list is not updated while the count is being computed. |
| 81 | * Callers that want such a guarantee need to provide an outer lock. | 106 | * Callers that want such a guarantee need to provide an outer lock. |
| 82 | */ | 107 | */ |
| 108 | unsigned long list_lru_count_one(struct list_lru *lru, | ||
| 109 | int nid, struct mem_cgroup *memcg); | ||
| 83 | unsigned long list_lru_count_node(struct list_lru *lru, int nid); | 110 | unsigned long list_lru_count_node(struct list_lru *lru, int nid); |
| 111 | |||
| 112 | static inline unsigned long list_lru_shrink_count(struct list_lru *lru, | ||
| 113 | struct shrink_control *sc) | ||
| 114 | { | ||
| 115 | return list_lru_count_one(lru, sc->nid, sc->memcg); | ||
| 116 | } | ||
| 117 | |||
| 84 | static inline unsigned long list_lru_count(struct list_lru *lru) | 118 | static inline unsigned long list_lru_count(struct list_lru *lru) |
| 85 | { | 119 | { |
| 86 | long count = 0; | 120 | long count = 0; |
| 87 | int nid; | 121 | int nid; |
| 88 | 122 | ||
| 89 | for_each_node_mask(nid, lru->active_nodes) | 123 | for_each_node_state(nid, N_NORMAL_MEMORY) |
| 90 | count += list_lru_count_node(lru, nid); | 124 | count += list_lru_count_node(lru, nid); |
| 91 | 125 | ||
| 92 | return count; | 126 | return count; |
| 93 | } | 127 | } |
| 94 | 128 | ||
| 95 | typedef enum lru_status | 129 | void list_lru_isolate(struct list_lru_one *list, struct list_head *item); |
| 96 | (*list_lru_walk_cb)(struct list_head *item, spinlock_t *lock, void *cb_arg); | 130 | void list_lru_isolate_move(struct list_lru_one *list, struct list_head *item, |
| 131 | struct list_head *head); | ||
| 132 | |||
| 133 | typedef enum lru_status (*list_lru_walk_cb)(struct list_head *item, | ||
| 134 | struct list_lru_one *list, spinlock_t *lock, void *cb_arg); | ||
| 135 | |||
| 97 | /** | 136 | /** |
| 98 | * list_lru_walk_node: walk a list_lru, isolating and disposing freeable items. | 137 | * list_lru_walk_one: walk a list_lru, isolating and disposing freeable items. |
| 99 | * @lru: the lru pointer. | 138 | * @lru: the lru pointer. |
| 100 | * @nid: the node id to scan from. | 139 | * @nid: the node id to scan from. |
| 140 | * @memcg: the cgroup to scan from. | ||
| 101 | * @isolate: callback function that is resposible for deciding what to do with | 141 | * @isolate: callback function that is resposible for deciding what to do with |
| 102 | * the item currently being scanned | 142 | * the item currently being scanned |
| 103 | * @cb_arg: opaque type that will be passed to @isolate | 143 | * @cb_arg: opaque type that will be passed to @isolate |
| @@ -115,18 +155,30 @@ typedef enum lru_status | |||
| 115 | * | 155 | * |
| 116 | * Return value: the number of objects effectively removed from the LRU. | 156 | * Return value: the number of objects effectively removed from the LRU. |
| 117 | */ | 157 | */ |
| 158 | unsigned long list_lru_walk_one(struct list_lru *lru, | ||
| 159 | int nid, struct mem_cgroup *memcg, | ||
| 160 | list_lru_walk_cb isolate, void *cb_arg, | ||
| 161 | unsigned long *nr_to_walk); | ||
| 118 | unsigned long list_lru_walk_node(struct list_lru *lru, int nid, | 162 | unsigned long list_lru_walk_node(struct list_lru *lru, int nid, |
| 119 | list_lru_walk_cb isolate, void *cb_arg, | 163 | list_lru_walk_cb isolate, void *cb_arg, |
| 120 | unsigned long *nr_to_walk); | 164 | unsigned long *nr_to_walk); |
| 121 | 165 | ||
| 122 | static inline unsigned long | 166 | static inline unsigned long |
| 167 | list_lru_shrink_walk(struct list_lru *lru, struct shrink_control *sc, | ||
| 168 | list_lru_walk_cb isolate, void *cb_arg) | ||
| 169 | { | ||
| 170 | return list_lru_walk_one(lru, sc->nid, sc->memcg, isolate, cb_arg, | ||
| 171 | &sc->nr_to_scan); | ||
| 172 | } | ||
| 173 | |||
| 174 | static inline unsigned long | ||
| 123 | list_lru_walk(struct list_lru *lru, list_lru_walk_cb isolate, | 175 | list_lru_walk(struct list_lru *lru, list_lru_walk_cb isolate, |
| 124 | void *cb_arg, unsigned long nr_to_walk) | 176 | void *cb_arg, unsigned long nr_to_walk) |
| 125 | { | 177 | { |
| 126 | long isolated = 0; | 178 | long isolated = 0; |
| 127 | int nid; | 179 | int nid; |
| 128 | 180 | ||
| 129 | for_each_node_mask(nid, lru->active_nodes) { | 181 | for_each_node_state(nid, N_NORMAL_MEMORY) { |
| 130 | isolated += list_lru_walk_node(lru, nid, isolate, | 182 | isolated += list_lru_walk_node(lru, nid, isolate, |
| 131 | cb_arg, &nr_to_walk); | 183 | cb_arg, &nr_to_walk); |
| 132 | if (nr_to_walk <= 0) | 184 | if (nr_to_walk <= 0) |
diff --git a/include/linux/lockref.h b/include/linux/lockref.h index 4bfde0e99ed5..b10b122dd099 100644 --- a/include/linux/lockref.h +++ b/include/linux/lockref.h | |||
| @@ -28,12 +28,13 @@ struct lockref { | |||
| 28 | #endif | 28 | #endif |
| 29 | struct { | 29 | struct { |
| 30 | spinlock_t lock; | 30 | spinlock_t lock; |
| 31 | unsigned int count; | 31 | int count; |
| 32 | }; | 32 | }; |
| 33 | }; | 33 | }; |
| 34 | }; | 34 | }; |
| 35 | 35 | ||
| 36 | extern void lockref_get(struct lockref *); | 36 | extern void lockref_get(struct lockref *); |
| 37 | extern int lockref_put_return(struct lockref *); | ||
| 37 | extern int lockref_get_not_zero(struct lockref *); | 38 | extern int lockref_get_not_zero(struct lockref *); |
| 38 | extern int lockref_get_or_lock(struct lockref *); | 39 | extern int lockref_get_or_lock(struct lockref *); |
| 39 | extern int lockref_put_or_lock(struct lockref *); | 40 | extern int lockref_put_or_lock(struct lockref *); |
diff --git a/include/linux/mei_cl_bus.h b/include/linux/mei_cl_bus.h index 164aad1f9f12..0819d36a3a74 100644 --- a/include/linux/mei_cl_bus.h +++ b/include/linux/mei_cl_bus.h | |||
| @@ -25,8 +25,8 @@ int __mei_cl_driver_register(struct mei_cl_driver *driver, | |||
| 25 | 25 | ||
| 26 | void mei_cl_driver_unregister(struct mei_cl_driver *driver); | 26 | void mei_cl_driver_unregister(struct mei_cl_driver *driver); |
| 27 | 27 | ||
| 28 | int mei_cl_send(struct mei_cl_device *device, u8 *buf, size_t length); | 28 | ssize_t mei_cl_send(struct mei_cl_device *device, u8 *buf, size_t length); |
| 29 | int mei_cl_recv(struct mei_cl_device *device, u8 *buf, size_t length); | 29 | ssize_t mei_cl_recv(struct mei_cl_device *device, u8 *buf, size_t length); |
| 30 | 30 | ||
| 31 | typedef void (*mei_cl_event_cb_t)(struct mei_cl_device *device, | 31 | typedef void (*mei_cl_event_cb_t)(struct mei_cl_device *device, |
| 32 | u32 events, void *context); | 32 | u32 events, void *context); |
diff --git a/include/linux/memcontrol.h b/include/linux/memcontrol.h index fb212e1d700d..72dff5fb0d0c 100644 --- a/include/linux/memcontrol.h +++ b/include/linux/memcontrol.h | |||
| @@ -52,7 +52,27 @@ struct mem_cgroup_reclaim_cookie { | |||
| 52 | unsigned int generation; | 52 | unsigned int generation; |
| 53 | }; | 53 | }; |
| 54 | 54 | ||
| 55 | enum mem_cgroup_events_index { | ||
| 56 | MEM_CGROUP_EVENTS_PGPGIN, /* # of pages paged in */ | ||
| 57 | MEM_CGROUP_EVENTS_PGPGOUT, /* # of pages paged out */ | ||
| 58 | MEM_CGROUP_EVENTS_PGFAULT, /* # of page-faults */ | ||
| 59 | MEM_CGROUP_EVENTS_PGMAJFAULT, /* # of major page-faults */ | ||
| 60 | MEM_CGROUP_EVENTS_NSTATS, | ||
| 61 | /* default hierarchy events */ | ||
| 62 | MEMCG_LOW = MEM_CGROUP_EVENTS_NSTATS, | ||
| 63 | MEMCG_HIGH, | ||
| 64 | MEMCG_MAX, | ||
| 65 | MEMCG_OOM, | ||
| 66 | MEMCG_NR_EVENTS, | ||
| 67 | }; | ||
| 68 | |||
| 55 | #ifdef CONFIG_MEMCG | 69 | #ifdef CONFIG_MEMCG |
| 70 | void mem_cgroup_events(struct mem_cgroup *memcg, | ||
| 71 | enum mem_cgroup_events_index idx, | ||
| 72 | unsigned int nr); | ||
| 73 | |||
| 74 | bool mem_cgroup_low(struct mem_cgroup *root, struct mem_cgroup *memcg); | ||
| 75 | |||
| 56 | int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm, | 76 | int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm, |
| 57 | gfp_t gfp_mask, struct mem_cgroup **memcgp); | 77 | gfp_t gfp_mask, struct mem_cgroup **memcgp); |
| 58 | void mem_cgroup_commit_charge(struct page *page, struct mem_cgroup *memcg, | 78 | void mem_cgroup_commit_charge(struct page *page, struct mem_cgroup *memcg, |
| @@ -102,6 +122,7 @@ void mem_cgroup_iter_break(struct mem_cgroup *, struct mem_cgroup *); | |||
| 102 | * For memory reclaim. | 122 | * For memory reclaim. |
| 103 | */ | 123 | */ |
| 104 | int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec); | 124 | int mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec); |
| 125 | bool mem_cgroup_lruvec_online(struct lruvec *lruvec); | ||
| 105 | int mem_cgroup_select_victim_node(struct mem_cgroup *memcg); | 126 | int mem_cgroup_select_victim_node(struct mem_cgroup *memcg); |
| 106 | unsigned long mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list); | 127 | unsigned long mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list); |
| 107 | void mem_cgroup_update_lru_size(struct lruvec *, enum lru_list, int); | 128 | void mem_cgroup_update_lru_size(struct lruvec *, enum lru_list, int); |
| @@ -138,12 +159,10 @@ static inline bool mem_cgroup_disabled(void) | |||
| 138 | return false; | 159 | return false; |
| 139 | } | 160 | } |
| 140 | 161 | ||
| 141 | struct mem_cgroup *mem_cgroup_begin_page_stat(struct page *page, bool *locked, | 162 | struct mem_cgroup *mem_cgroup_begin_page_stat(struct page *page); |
| 142 | unsigned long *flags); | ||
| 143 | void mem_cgroup_end_page_stat(struct mem_cgroup *memcg, bool *locked, | ||
| 144 | unsigned long *flags); | ||
| 145 | void mem_cgroup_update_page_stat(struct mem_cgroup *memcg, | 163 | void mem_cgroup_update_page_stat(struct mem_cgroup *memcg, |
| 146 | enum mem_cgroup_stat_index idx, int val); | 164 | enum mem_cgroup_stat_index idx, int val); |
| 165 | void mem_cgroup_end_page_stat(struct mem_cgroup *memcg); | ||
| 147 | 166 | ||
| 148 | static inline void mem_cgroup_inc_page_stat(struct mem_cgroup *memcg, | 167 | static inline void mem_cgroup_inc_page_stat(struct mem_cgroup *memcg, |
| 149 | enum mem_cgroup_stat_index idx) | 168 | enum mem_cgroup_stat_index idx) |
| @@ -176,6 +195,18 @@ void mem_cgroup_split_huge_fixup(struct page *head); | |||
| 176 | #else /* CONFIG_MEMCG */ | 195 | #else /* CONFIG_MEMCG */ |
| 177 | struct mem_cgroup; | 196 | struct mem_cgroup; |
| 178 | 197 | ||
| 198 | static inline void mem_cgroup_events(struct mem_cgroup *memcg, | ||
| 199 | enum mem_cgroup_events_index idx, | ||
| 200 | unsigned int nr) | ||
| 201 | { | ||
| 202 | } | ||
| 203 | |||
| 204 | static inline bool mem_cgroup_low(struct mem_cgroup *root, | ||
| 205 | struct mem_cgroup *memcg) | ||
| 206 | { | ||
| 207 | return false; | ||
| 208 | } | ||
| 209 | |||
| 179 | static inline int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm, | 210 | static inline int mem_cgroup_try_charge(struct page *page, struct mm_struct *mm, |
| 180 | gfp_t gfp_mask, | 211 | gfp_t gfp_mask, |
| 181 | struct mem_cgroup **memcgp) | 212 | struct mem_cgroup **memcgp) |
| @@ -268,6 +299,11 @@ mem_cgroup_inactive_anon_is_low(struct lruvec *lruvec) | |||
| 268 | return 1; | 299 | return 1; |
| 269 | } | 300 | } |
| 270 | 301 | ||
| 302 | static inline bool mem_cgroup_lruvec_online(struct lruvec *lruvec) | ||
| 303 | { | ||
| 304 | return true; | ||
| 305 | } | ||
| 306 | |||
| 271 | static inline unsigned long | 307 | static inline unsigned long |
| 272 | mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru) | 308 | mem_cgroup_get_lru_size(struct lruvec *lruvec, enum lru_list lru) |
| 273 | { | 309 | { |
| @@ -285,14 +321,12 @@ mem_cgroup_print_oom_info(struct mem_cgroup *memcg, struct task_struct *p) | |||
| 285 | { | 321 | { |
| 286 | } | 322 | } |
| 287 | 323 | ||
| 288 | static inline struct mem_cgroup *mem_cgroup_begin_page_stat(struct page *page, | 324 | static inline struct mem_cgroup *mem_cgroup_begin_page_stat(struct page *page) |
| 289 | bool *locked, unsigned long *flags) | ||
| 290 | { | 325 | { |
| 291 | return NULL; | 326 | return NULL; |
| 292 | } | 327 | } |
| 293 | 328 | ||
| 294 | static inline void mem_cgroup_end_page_stat(struct mem_cgroup *memcg, | 329 | static inline void mem_cgroup_end_page_stat(struct mem_cgroup *memcg) |
| 295 | bool *locked, unsigned long *flags) | ||
| 296 | { | 330 | { |
| 297 | } | 331 | } |
| 298 | 332 | ||
| @@ -364,7 +398,9 @@ static inline void sock_release_memcg(struct sock *sk) | |||
| 364 | #ifdef CONFIG_MEMCG_KMEM | 398 | #ifdef CONFIG_MEMCG_KMEM |
| 365 | extern struct static_key memcg_kmem_enabled_key; | 399 | extern struct static_key memcg_kmem_enabled_key; |
| 366 | 400 | ||
| 367 | extern int memcg_limited_groups_array_size; | 401 | extern int memcg_nr_cache_ids; |
| 402 | extern void memcg_get_cache_ids(void); | ||
| 403 | extern void memcg_put_cache_ids(void); | ||
| 368 | 404 | ||
| 369 | /* | 405 | /* |
| 370 | * Helper macro to loop through all memcg-specific caches. Callers must still | 406 | * Helper macro to loop through all memcg-specific caches. Callers must still |
| @@ -372,13 +408,15 @@ extern int memcg_limited_groups_array_size; | |||
| 372 | * the slab_mutex must be held when looping through those caches | 408 | * the slab_mutex must be held when looping through those caches |
| 373 | */ | 409 | */ |
| 374 | #define for_each_memcg_cache_index(_idx) \ | 410 | #define for_each_memcg_cache_index(_idx) \ |
| 375 | for ((_idx) = 0; (_idx) < memcg_limited_groups_array_size; (_idx)++) | 411 | for ((_idx) = 0; (_idx) < memcg_nr_cache_ids; (_idx)++) |
| 376 | 412 | ||
| 377 | static inline bool memcg_kmem_enabled(void) | 413 | static inline bool memcg_kmem_enabled(void) |
| 378 | { | 414 | { |
| 379 | return static_key_false(&memcg_kmem_enabled_key); | 415 | return static_key_false(&memcg_kmem_enabled_key); |
| 380 | } | 416 | } |
| 381 | 417 | ||
| 418 | bool memcg_kmem_is_active(struct mem_cgroup *memcg); | ||
| 419 | |||
| 382 | /* | 420 | /* |
| 383 | * In general, we'll do everything in our power to not incur in any overhead | 421 | * In general, we'll do everything in our power to not incur in any overhead |
| 384 | * for non-memcg users for the kmem functions. Not even a function call, if we | 422 | * for non-memcg users for the kmem functions. Not even a function call, if we |
| @@ -398,11 +436,11 @@ void __memcg_kmem_uncharge_pages(struct page *page, int order); | |||
| 398 | 436 | ||
| 399 | int memcg_cache_id(struct mem_cgroup *memcg); | 437 | int memcg_cache_id(struct mem_cgroup *memcg); |
| 400 | 438 | ||
| 401 | void memcg_update_array_size(int num_groups); | ||
| 402 | |||
| 403 | struct kmem_cache *__memcg_kmem_get_cache(struct kmem_cache *cachep); | 439 | struct kmem_cache *__memcg_kmem_get_cache(struct kmem_cache *cachep); |
| 404 | void __memcg_kmem_put_cache(struct kmem_cache *cachep); | 440 | void __memcg_kmem_put_cache(struct kmem_cache *cachep); |
| 405 | 441 | ||
| 442 | struct mem_cgroup *__mem_cgroup_from_kmem(void *ptr); | ||
| 443 | |||
| 406 | int memcg_charge_kmem(struct mem_cgroup *memcg, gfp_t gfp, | 444 | int memcg_charge_kmem(struct mem_cgroup *memcg, gfp_t gfp, |
| 407 | unsigned long nr_pages); | 445 | unsigned long nr_pages); |
| 408 | void memcg_uncharge_kmem(struct mem_cgroup *memcg, unsigned long nr_pages); | 446 | void memcg_uncharge_kmem(struct mem_cgroup *memcg, unsigned long nr_pages); |
| @@ -499,6 +537,13 @@ static __always_inline void memcg_kmem_put_cache(struct kmem_cache *cachep) | |||
| 499 | if (memcg_kmem_enabled()) | 537 | if (memcg_kmem_enabled()) |
| 500 | __memcg_kmem_put_cache(cachep); | 538 | __memcg_kmem_put_cache(cachep); |
| 501 | } | 539 | } |
| 540 | |||
| 541 | static __always_inline struct mem_cgroup *mem_cgroup_from_kmem(void *ptr) | ||
| 542 | { | ||
| 543 | if (!memcg_kmem_enabled()) | ||
| 544 | return NULL; | ||
| 545 | return __mem_cgroup_from_kmem(ptr); | ||
| 546 | } | ||
| 502 | #else | 547 | #else |
| 503 | #define for_each_memcg_cache_index(_idx) \ | 548 | #define for_each_memcg_cache_index(_idx) \ |
| 504 | for (; NULL; ) | 549 | for (; NULL; ) |
| @@ -508,6 +553,11 @@ static inline bool memcg_kmem_enabled(void) | |||
| 508 | return false; | 553 | return false; |
| 509 | } | 554 | } |
| 510 | 555 | ||
| 556 | static inline bool memcg_kmem_is_active(struct mem_cgroup *memcg) | ||
| 557 | { | ||
| 558 | return false; | ||
| 559 | } | ||
| 560 | |||
| 511 | static inline bool | 561 | static inline bool |
| 512 | memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg, int order) | 562 | memcg_kmem_newpage_charge(gfp_t gfp, struct mem_cgroup **memcg, int order) |
| 513 | { | 563 | { |
| @@ -528,6 +578,14 @@ static inline int memcg_cache_id(struct mem_cgroup *memcg) | |||
| 528 | return -1; | 578 | return -1; |
| 529 | } | 579 | } |
| 530 | 580 | ||
| 581 | static inline void memcg_get_cache_ids(void) | ||
| 582 | { | ||
| 583 | } | ||
| 584 | |||
| 585 | static inline void memcg_put_cache_ids(void) | ||
| 586 | { | ||
| 587 | } | ||
| 588 | |||
| 531 | static inline struct kmem_cache * | 589 | static inline struct kmem_cache * |
| 532 | memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp) | 590 | memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp) |
| 533 | { | 591 | { |
| @@ -537,6 +595,11 @@ memcg_kmem_get_cache(struct kmem_cache *cachep, gfp_t gfp) | |||
| 537 | static inline void memcg_kmem_put_cache(struct kmem_cache *cachep) | 595 | static inline void memcg_kmem_put_cache(struct kmem_cache *cachep) |
| 538 | { | 596 | { |
| 539 | } | 597 | } |
| 598 | |||
| 599 | static inline struct mem_cgroup *mem_cgroup_from_kmem(void *ptr) | ||
| 600 | { | ||
| 601 | return NULL; | ||
| 602 | } | ||
| 540 | #endif /* CONFIG_MEMCG_KMEM */ | 603 | #endif /* CONFIG_MEMCG_KMEM */ |
| 541 | #endif /* _LINUX_MEMCONTROL_H */ | 604 | #endif /* _LINUX_MEMCONTROL_H */ |
| 542 | 605 | ||
diff --git a/include/linux/mfd/syscon/atmel-matrix.h b/include/linux/mfd/syscon/atmel-matrix.h new file mode 100644 index 000000000000..8293c3e2a82a --- /dev/null +++ b/include/linux/mfd/syscon/atmel-matrix.h | |||
| @@ -0,0 +1,117 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2014 Atmel Corporation. | ||
| 3 | * | ||
| 4 | * Memory Controllers (MATRIX, EBI) - System peripherals registers. | ||
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU General Public License as published by | ||
| 8 | * the Free Software Foundation; either version 2 of the License, or | ||
| 9 | * (at your option) any later version. | ||
| 10 | */ | ||
| 11 | |||
| 12 | #ifndef _LINUX_MFD_SYSCON_ATMEL_MATRIX_H | ||
| 13 | #define _LINUX_MFD_SYSCON_ATMEL_MATRIX_H | ||
| 14 | |||
| 15 | #define AT91SAM9260_MATRIX_MCFG 0x00 | ||
| 16 | #define AT91SAM9260_MATRIX_SCFG 0x40 | ||
| 17 | #define AT91SAM9260_MATRIX_PRS 0x80 | ||
| 18 | #define AT91SAM9260_MATRIX_MRCR 0x100 | ||
| 19 | #define AT91SAM9260_MATRIX_EBICSA 0x11c | ||
| 20 | |||
| 21 | #define AT91SAM9261_MATRIX_MRCR 0x0 | ||
| 22 | #define AT91SAM9261_MATRIX_SCFG 0x4 | ||
| 23 | #define AT91SAM9261_MATRIX_TCR 0x24 | ||
| 24 | #define AT91SAM9261_MATRIX_EBICSA 0x30 | ||
| 25 | #define AT91SAM9261_MATRIX_USBPUCR 0x34 | ||
| 26 | |||
| 27 | #define AT91SAM9263_MATRIX_MCFG 0x00 | ||
| 28 | #define AT91SAM9263_MATRIX_SCFG 0x40 | ||
| 29 | #define AT91SAM9263_MATRIX_PRS 0x80 | ||
| 30 | #define AT91SAM9263_MATRIX_MRCR 0x100 | ||
| 31 | #define AT91SAM9263_MATRIX_TCR 0x114 | ||
| 32 | #define AT91SAM9263_MATRIX_EBI0CSA 0x120 | ||
| 33 | #define AT91SAM9263_MATRIX_EBI1CSA 0x124 | ||
| 34 | |||
| 35 | #define AT91SAM9RL_MATRIX_MCFG 0x00 | ||
| 36 | #define AT91SAM9RL_MATRIX_SCFG 0x40 | ||
| 37 | #define AT91SAM9RL_MATRIX_PRS 0x80 | ||
| 38 | #define AT91SAM9RL_MATRIX_MRCR 0x100 | ||
| 39 | #define AT91SAM9RL_MATRIX_TCR 0x114 | ||
| 40 | #define AT91SAM9RL_MATRIX_EBICSA 0x120 | ||
| 41 | |||
| 42 | #define AT91SAM9G45_MATRIX_MCFG 0x00 | ||
| 43 | #define AT91SAM9G45_MATRIX_SCFG 0x40 | ||
| 44 | #define AT91SAM9G45_MATRIX_PRS 0x80 | ||
| 45 | #define AT91SAM9G45_MATRIX_MRCR 0x100 | ||
| 46 | #define AT91SAM9G45_MATRIX_TCR 0x110 | ||
| 47 | #define AT91SAM9G45_MATRIX_DDRMPR 0x118 | ||
| 48 | #define AT91SAM9G45_MATRIX_EBICSA 0x128 | ||
| 49 | |||
| 50 | #define AT91SAM9N12_MATRIX_MCFG 0x00 | ||
| 51 | #define AT91SAM9N12_MATRIX_SCFG 0x40 | ||
| 52 | #define AT91SAM9N12_MATRIX_PRS 0x80 | ||
| 53 | #define AT91SAM9N12_MATRIX_MRCR 0x100 | ||
| 54 | #define AT91SAM9N12_MATRIX_EBICSA 0x118 | ||
| 55 | |||
| 56 | #define AT91SAM9X5_MATRIX_MCFG 0x00 | ||
| 57 | #define AT91SAM9X5_MATRIX_SCFG 0x40 | ||
| 58 | #define AT91SAM9X5_MATRIX_PRS 0x80 | ||
| 59 | #define AT91SAM9X5_MATRIX_MRCR 0x100 | ||
| 60 | #define AT91SAM9X5_MATRIX_EBICSA 0x120 | ||
| 61 | |||
| 62 | #define SAMA5D3_MATRIX_MCFG 0x00 | ||
| 63 | #define SAMA5D3_MATRIX_SCFG 0x40 | ||
| 64 | #define SAMA5D3_MATRIX_PRS 0x80 | ||
| 65 | #define SAMA5D3_MATRIX_MRCR 0x100 | ||
| 66 | |||
| 67 | #define AT91_MATRIX_MCFG(o, x) ((o) + ((x) * 0x4)) | ||
| 68 | #define AT91_MATRIX_ULBT GENMASK(2, 0) | ||
| 69 | #define AT91_MATRIX_ULBT_INFINITE (0 << 0) | ||
| 70 | #define AT91_MATRIX_ULBT_SINGLE (1 << 0) | ||
| 71 | #define AT91_MATRIX_ULBT_FOUR (2 << 0) | ||
| 72 | #define AT91_MATRIX_ULBT_EIGHT (3 << 0) | ||
| 73 | #define AT91_MATRIX_ULBT_SIXTEEN (4 << 0) | ||
| 74 | |||
| 75 | #define AT91_MATRIX_SCFG(o, x) ((o) + ((x) * 0x4)) | ||
| 76 | #define AT91_MATRIX_SLOT_CYCLE GENMASK(7, 0) | ||
| 77 | #define AT91_MATRIX_DEFMSTR_TYPE GENMASK(17, 16) | ||
| 78 | #define AT91_MATRIX_DEFMSTR_TYPE_NONE (0 << 16) | ||
| 79 | #define AT91_MATRIX_DEFMSTR_TYPE_LAST (1 << 16) | ||
| 80 | #define AT91_MATRIX_DEFMSTR_TYPE_FIXED (2 << 16) | ||
| 81 | #define AT91_MATRIX_FIXED_DEFMSTR GENMASK(20, 18) | ||
| 82 | #define AT91_MATRIX_ARBT GENMASK(25, 24) | ||
| 83 | #define AT91_MATRIX_ARBT_ROUND_ROBIN (0 << 24) | ||
| 84 | #define AT91_MATRIX_ARBT_FIXED_PRIORITY (1 << 24) | ||
| 85 | |||
| 86 | #define AT91_MATRIX_ITCM_SIZE GENMASK(3, 0) | ||
| 87 | #define AT91_MATRIX_ITCM_0 (0 << 0) | ||
| 88 | #define AT91_MATRIX_ITCM_16 (5 << 0) | ||
| 89 | #define AT91_MATRIX_ITCM_32 (6 << 0) | ||
| 90 | #define AT91_MATRIX_ITCM_64 (7 << 0) | ||
| 91 | #define AT91_MATRIX_DTCM_SIZE GENMASK(7, 4) | ||
| 92 | #define AT91_MATRIX_DTCM_0 (0 << 4) | ||
| 93 | #define AT91_MATRIX_DTCM_16 (5 << 4) | ||
| 94 | #define AT91_MATRIX_DTCM_32 (6 << 4) | ||
| 95 | #define AT91_MATRIX_DTCM_64 (7 << 4) | ||
| 96 | |||
| 97 | #define AT91_MATRIX_PRAS(o, x) ((o) + ((x) * 0x8)) | ||
| 98 | #define AT91_MATRIX_PRBS(o, x) ((o) + ((x) * 0x8) + 0x4) | ||
| 99 | #define AT91_MATRIX_MPR(x) GENMASK(((x) * 0x4) + 1, ((x) * 0x4)) | ||
| 100 | |||
| 101 | #define AT91_MATRIX_RCB(x) BIT(x) | ||
| 102 | |||
| 103 | #define AT91_MATRIX_CSA(cs, val) (val << (cs)) | ||
| 104 | #define AT91_MATRIX_DBPUC BIT(8) | ||
| 105 | #define AT91_MATRIX_DBPDC BIT(9) | ||
| 106 | #define AT91_MATRIX_VDDIOMSEL BIT(16) | ||
| 107 | #define AT91_MATRIX_VDDIOMSEL_1_8V (0 << 16) | ||
| 108 | #define AT91_MATRIX_VDDIOMSEL_3_3V (1 << 16) | ||
| 109 | #define AT91_MATRIX_EBI_IOSR BIT(17) | ||
| 110 | #define AT91_MATRIX_DDR_IOSR BIT(18) | ||
| 111 | #define AT91_MATRIX_NFD0_SELECT BIT(24) | ||
| 112 | #define AT91_MATRIX_DDR_MP_EN BIT(25) | ||
| 113 | #define AT91_MATRIX_EBI_NUM_CS 8 | ||
| 114 | |||
| 115 | #define AT91_MATRIX_USBPUCR_PUON BIT(30) | ||
| 116 | |||
| 117 | #endif /* _LINUX_MFD_SYSCON_ATMEL_MATRIX_H */ | ||
diff --git a/include/linux/mfd/syscon/atmel-smc.h b/include/linux/mfd/syscon/atmel-smc.h new file mode 100644 index 000000000000..be6ebe64eebe --- /dev/null +++ b/include/linux/mfd/syscon/atmel-smc.h | |||
| @@ -0,0 +1,173 @@ | |||
| 1 | /* | ||
| 2 | * Atmel SMC (Static Memory Controller) register offsets and bit definitions. | ||
| 3 | * | ||
| 4 | * Copyright (C) 2014 Atmel | ||
| 5 | * Copyright (C) 2014 Free Electrons | ||
| 6 | * | ||
| 7 | * Author: Boris Brezillon <boris.brezillon@free-electrons.com> | ||
| 8 | * | ||
| 9 | * This program is free software; you can redistribute it and/or modify | ||
| 10 | * it under the terms of the GNU General Public License version 2 as | ||
| 11 | * published by the Free Software Foundation. | ||
| 12 | */ | ||
| 13 | |||
| 14 | #ifndef _LINUX_MFD_SYSCON_ATMEL_SMC_H_ | ||
| 15 | #define _LINUX_MFD_SYSCON_ATMEL_SMC_H_ | ||
| 16 | |||
| 17 | #include <linux/kernel.h> | ||
| 18 | #include <linux/regmap.h> | ||
| 19 | |||
| 20 | #define AT91SAM9_SMC_GENERIC 0x00 | ||
| 21 | #define AT91SAM9_SMC_GENERIC_BLK_SZ 0x10 | ||
| 22 | |||
| 23 | #define SAMA5_SMC_GENERIC 0x600 | ||
| 24 | #define SAMA5_SMC_GENERIC_BLK_SZ 0x14 | ||
| 25 | |||
| 26 | #define AT91SAM9_SMC_SETUP(o) ((o) + 0x00) | ||
| 27 | #define AT91SAM9_SMC_NWESETUP(x) (x) | ||
| 28 | #define AT91SAM9_SMC_NCS_WRSETUP(x) ((x) << 8) | ||
| 29 | #define AT91SAM9_SMC_NRDSETUP(x) ((x) << 16) | ||
| 30 | #define AT91SAM9_SMC_NCS_NRDSETUP(x) ((x) << 24) | ||
| 31 | |||
| 32 | #define AT91SAM9_SMC_PULSE(o) ((o) + 0x04) | ||
| 33 | #define AT91SAM9_SMC_NWEPULSE(x) (x) | ||
| 34 | #define AT91SAM9_SMC_NCS_WRPULSE(x) ((x) << 8) | ||
| 35 | #define AT91SAM9_SMC_NRDPULSE(x) ((x) << 16) | ||
| 36 | #define AT91SAM9_SMC_NCS_NRDPULSE(x) ((x) << 24) | ||
| 37 | |||
| 38 | #define AT91SAM9_SMC_CYCLE(o) ((o) + 0x08) | ||
| 39 | #define AT91SAM9_SMC_NWECYCLE(x) (x) | ||
| 40 | #define AT91SAM9_SMC_NRDCYCLE(x) ((x) << 16) | ||
| 41 | |||
| 42 | #define AT91SAM9_SMC_MODE(o) ((o) + 0x0c) | ||
| 43 | #define SAMA5_SMC_MODE(o) ((o) + 0x10) | ||
| 44 | #define AT91_SMC_READMODE BIT(0) | ||
| 45 | #define AT91_SMC_READMODE_NCS (0 << 0) | ||
| 46 | #define AT91_SMC_READMODE_NRD (1 << 0) | ||
| 47 | #define AT91_SMC_WRITEMODE BIT(1) | ||
| 48 | #define AT91_SMC_WRITEMODE_NCS (0 << 1) | ||
| 49 | #define AT91_SMC_WRITEMODE_NWE (1 << 1) | ||
| 50 | #define AT91_SMC_EXNWMODE GENMASK(5, 4) | ||
| 51 | #define AT91_SMC_EXNWMODE_DISABLE (0 << 4) | ||
| 52 | #define AT91_SMC_EXNWMODE_FROZEN (2 << 4) | ||
| 53 | #define AT91_SMC_EXNWMODE_READY (3 << 4) | ||
| 54 | #define AT91_SMC_BAT BIT(8) | ||
| 55 | #define AT91_SMC_BAT_SELECT (0 << 8) | ||
| 56 | #define AT91_SMC_BAT_WRITE (1 << 8) | ||
| 57 | #define AT91_SMC_DBW GENMASK(13, 12) | ||
| 58 | #define AT91_SMC_DBW_8 (0 << 12) | ||
| 59 | #define AT91_SMC_DBW_16 (1 << 12) | ||
| 60 | #define AT91_SMC_DBW_32 (2 << 12) | ||
| 61 | #define AT91_SMC_TDF GENMASK(19, 16) | ||
| 62 | #define AT91_SMC_TDF_(x) ((((x) - 1) << 16) & AT91_SMC_TDF) | ||
| 63 | #define AT91_SMC_TDF_MAX 16 | ||
| 64 | #define AT91_SMC_TDFMODE_OPTIMIZED BIT(20) | ||
| 65 | #define AT91_SMC_PMEN BIT(24) | ||
| 66 | #define AT91_SMC_PS GENMASK(29, 28) | ||
| 67 | #define AT91_SMC_PS_4 (0 << 28) | ||
| 68 | #define AT91_SMC_PS_8 (1 << 28) | ||
| 69 | #define AT91_SMC_PS_16 (2 << 28) | ||
| 70 | #define AT91_SMC_PS_32 (3 << 28) | ||
| 71 | |||
| 72 | |||
| 73 | /* | ||
| 74 | * This function converts a setup timing expressed in nanoseconds into an | ||
| 75 | * encoded value that can be written in the SMC_SETUP register. | ||
| 76 | * | ||
| 77 | * The following formula is described in atmel datasheets (section | ||
| 78 | * "SMC Setup Register"): | ||
| 79 | * | ||
| 80 | * setup length = (128* SETUP[5] + SETUP[4:0]) | ||
| 81 | * | ||
| 82 | * where setup length is the timing expressed in cycles. | ||
| 83 | */ | ||
| 84 | static inline u32 at91sam9_smc_setup_ns_to_cycles(unsigned int clk_rate, | ||
| 85 | u32 timing_ns) | ||
| 86 | { | ||
| 87 | u32 clk_period = DIV_ROUND_UP(NSEC_PER_SEC, clk_rate); | ||
| 88 | u32 coded_cycles = 0; | ||
| 89 | u32 cycles; | ||
| 90 | |||
| 91 | cycles = DIV_ROUND_UP(timing_ns, clk_period); | ||
| 92 | if (cycles / 32) { | ||
| 93 | coded_cycles |= 1 << 5; | ||
| 94 | if (cycles < 128) | ||
| 95 | cycles = 0; | ||
| 96 | } | ||
| 97 | |||
| 98 | coded_cycles |= cycles % 32; | ||
| 99 | |||
| 100 | return coded_cycles; | ||
| 101 | } | ||
| 102 | |||
| 103 | /* | ||
| 104 | * This function converts a pulse timing expressed in nanoseconds into an | ||
| 105 | * encoded value that can be written in the SMC_PULSE register. | ||
| 106 | * | ||
| 107 | * The following formula is described in atmel datasheets (section | ||
| 108 | * "SMC Pulse Register"): | ||
| 109 | * | ||
| 110 | * pulse length = (256* PULSE[6] + PULSE[5:0]) | ||
| 111 | * | ||
| 112 | * where pulse length is the timing expressed in cycles. | ||
| 113 | */ | ||
| 114 | static inline u32 at91sam9_smc_pulse_ns_to_cycles(unsigned int clk_rate, | ||
| 115 | u32 timing_ns) | ||
| 116 | { | ||
| 117 | u32 clk_period = DIV_ROUND_UP(NSEC_PER_SEC, clk_rate); | ||
| 118 | u32 coded_cycles = 0; | ||
| 119 | u32 cycles; | ||
| 120 | |||
| 121 | cycles = DIV_ROUND_UP(timing_ns, clk_period); | ||
| 122 | if (cycles / 64) { | ||
| 123 | coded_cycles |= 1 << 6; | ||
| 124 | if (cycles < 256) | ||
| 125 | cycles = 0; | ||
| 126 | } | ||
| 127 | |||
| 128 | coded_cycles |= cycles % 64; | ||
| 129 | |||
| 130 | return coded_cycles; | ||
| 131 | } | ||
| 132 | |||
| 133 | /* | ||
| 134 | * This function converts a cycle timing expressed in nanoseconds into an | ||
| 135 | * encoded value that can be written in the SMC_CYCLE register. | ||
| 136 | * | ||
| 137 | * The following formula is described in atmel datasheets (section | ||
| 138 | * "SMC Cycle Register"): | ||
| 139 | * | ||
| 140 | * cycle length = (CYCLE[8:7]*256 + CYCLE[6:0]) | ||
| 141 | * | ||
| 142 | * where cycle length is the timing expressed in cycles. | ||
| 143 | */ | ||
| 144 | static inline u32 at91sam9_smc_cycle_ns_to_cycles(unsigned int clk_rate, | ||
| 145 | u32 timing_ns) | ||
| 146 | { | ||
| 147 | u32 clk_period = DIV_ROUND_UP(NSEC_PER_SEC, clk_rate); | ||
| 148 | u32 coded_cycles = 0; | ||
| 149 | u32 cycles; | ||
| 150 | |||
| 151 | cycles = DIV_ROUND_UP(timing_ns, clk_period); | ||
| 152 | if (cycles / 128) { | ||
| 153 | coded_cycles = cycles / 256; | ||
| 154 | cycles %= 256; | ||
| 155 | if (cycles >= 128) { | ||
| 156 | coded_cycles++; | ||
| 157 | cycles = 0; | ||
| 158 | } | ||
| 159 | |||
| 160 | if (coded_cycles > 0x3) { | ||
| 161 | coded_cycles = 0x3; | ||
| 162 | cycles = 0x7f; | ||
| 163 | } | ||
| 164 | |||
| 165 | coded_cycles <<= 7; | ||
| 166 | } | ||
| 167 | |||
| 168 | coded_cycles |= cycles % 128; | ||
| 169 | |||
| 170 | return coded_cycles; | ||
| 171 | } | ||
| 172 | |||
| 173 | #endif /* _LINUX_MFD_SYSCON_ATMEL_SMC_H_ */ | ||
diff --git a/include/linux/mfd/syscon/exynos4-pmu.h b/include/linux/mfd/syscon/exynos4-pmu.h new file mode 100644 index 000000000000..278b1b1549e9 --- /dev/null +++ b/include/linux/mfd/syscon/exynos4-pmu.h | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2015 Samsung Electronics Co., Ltd. | ||
| 3 | * | ||
| 4 | * This program is free software; you can redistribute it and/or modify | ||
| 5 | * it under the terms of the GNU General Public License version 2 as | ||
| 6 | * published by the Free Software Foundation. | ||
| 7 | */ | ||
| 8 | |||
| 9 | #ifndef _LINUX_MFD_SYSCON_PMU_EXYNOS4_H_ | ||
| 10 | #define _LINUX_MFD_SYSCON_PMU_EXYNOS4_H_ | ||
| 11 | |||
| 12 | /* Exynos4 PMU register definitions */ | ||
| 13 | |||
| 14 | /* MIPI_PHYn_CONTROL register offset: n = 0..1 */ | ||
| 15 | #define EXYNOS4_MIPI_PHY_CONTROL(n) (0x710 + (n) * 4) | ||
| 16 | #define EXYNOS4_MIPI_PHY_ENABLE (1 << 0) | ||
| 17 | #define EXYNOS4_MIPI_PHY_SRESETN (1 << 1) | ||
| 18 | #define EXYNOS4_MIPI_PHY_MRESETN (1 << 2) | ||
| 19 | #define EXYNOS4_MIPI_PHY_RESET_MASK (3 << 1) | ||
| 20 | |||
| 21 | #endif /* _LINUX_MFD_SYSCON_PMU_EXYNOS4_H_ */ | ||
diff --git a/include/linux/migrate.h b/include/linux/migrate.h index fab9b32ace8e..78baed5f2952 100644 --- a/include/linux/migrate.h +++ b/include/linux/migrate.h | |||
| @@ -67,7 +67,6 @@ static inline int migrate_huge_page_move_mapping(struct address_space *mapping, | |||
| 67 | 67 | ||
| 68 | #ifdef CONFIG_NUMA_BALANCING | 68 | #ifdef CONFIG_NUMA_BALANCING |
| 69 | extern bool pmd_trans_migrating(pmd_t pmd); | 69 | extern bool pmd_trans_migrating(pmd_t pmd); |
| 70 | extern void wait_migrate_huge_page(struct anon_vma *anon_vma, pmd_t *pmd); | ||
| 71 | extern int migrate_misplaced_page(struct page *page, | 70 | extern int migrate_misplaced_page(struct page *page, |
| 72 | struct vm_area_struct *vma, int node); | 71 | struct vm_area_struct *vma, int node); |
| 73 | extern bool migrate_ratelimited(int node); | 72 | extern bool migrate_ratelimited(int node); |
| @@ -76,9 +75,6 @@ static inline bool pmd_trans_migrating(pmd_t pmd) | |||
| 76 | { | 75 | { |
| 77 | return false; | 76 | return false; |
| 78 | } | 77 | } |
| 79 | static inline void wait_migrate_huge_page(struct anon_vma *anon_vma, pmd_t *pmd) | ||
| 80 | { | ||
| 81 | } | ||
| 82 | static inline int migrate_misplaced_page(struct page *page, | 78 | static inline int migrate_misplaced_page(struct page *page, |
| 83 | struct vm_area_struct *vma, int node) | 79 | struct vm_area_struct *vma, int node) |
| 84 | { | 80 | { |
diff --git a/include/linux/mm.h b/include/linux/mm.h index 65db4aee738a..47a93928b90f 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h | |||
| @@ -224,6 +224,7 @@ struct vm_fault { | |||
| 224 | pgoff_t pgoff; /* Logical page offset based on vma */ | 224 | pgoff_t pgoff; /* Logical page offset based on vma */ |
| 225 | void __user *virtual_address; /* Faulting virtual address */ | 225 | void __user *virtual_address; /* Faulting virtual address */ |
| 226 | 226 | ||
| 227 | struct page *cow_page; /* Handler may choose to COW */ | ||
| 227 | struct page *page; /* ->fault handlers should return a | 228 | struct page *page; /* ->fault handlers should return a |
| 228 | * page here, unless VM_FAULT_NOPAGE | 229 | * page here, unless VM_FAULT_NOPAGE |
| 229 | * is set (which is also implied by | 230 | * is set (which is also implied by |
| @@ -484,7 +485,8 @@ static inline void page_mapcount_reset(struct page *page) | |||
| 484 | 485 | ||
| 485 | static inline int page_mapcount(struct page *page) | 486 | static inline int page_mapcount(struct page *page) |
| 486 | { | 487 | { |
| 487 | return atomic_read(&(page)->_mapcount) + 1; | 488 | VM_BUG_ON_PAGE(PageSlab(page), page); |
| 489 | return atomic_read(&page->_mapcount) + 1; | ||
| 488 | } | 490 | } |
| 489 | 491 | ||
| 490 | static inline int page_count(struct page *page) | 492 | static inline int page_count(struct page *page) |
| @@ -627,29 +629,28 @@ int split_free_page(struct page *page); | |||
| 627 | * prototype for that function and accessor functions. | 629 | * prototype for that function and accessor functions. |
| 628 | * These are _only_ valid on the head of a PG_compound page. | 630 | * These are _only_ valid on the head of a PG_compound page. |
| 629 | */ | 631 | */ |
| 630 | typedef void compound_page_dtor(struct page *); | ||
| 631 | 632 | ||
| 632 | static inline void set_compound_page_dtor(struct page *page, | 633 | static inline void set_compound_page_dtor(struct page *page, |
| 633 | compound_page_dtor *dtor) | 634 | compound_page_dtor *dtor) |
| 634 | { | 635 | { |
| 635 | page[1].lru.next = (void *)dtor; | 636 | page[1].compound_dtor = dtor; |
| 636 | } | 637 | } |
| 637 | 638 | ||
| 638 | static inline compound_page_dtor *get_compound_page_dtor(struct page *page) | 639 | static inline compound_page_dtor *get_compound_page_dtor(struct page *page) |
| 639 | { | 640 | { |
| 640 | return (compound_page_dtor *)page[1].lru.next; | 641 | return page[1].compound_dtor; |
| 641 | } | 642 | } |
| 642 | 643 | ||
| 643 | static inline int compound_order(struct page *page) | 644 | static inline int compound_order(struct page *page) |
| 644 | { | 645 | { |
| 645 | if (!PageHead(page)) | 646 | if (!PageHead(page)) |
| 646 | return 0; | 647 | return 0; |
| 647 | return (unsigned long)page[1].lru.prev; | 648 | return page[1].compound_order; |
| 648 | } | 649 | } |
| 649 | 650 | ||
| 650 | static inline void set_compound_order(struct page *page, unsigned long order) | 651 | static inline void set_compound_order(struct page *page, unsigned long order) |
| 651 | { | 652 | { |
| 652 | page[1].lru.prev = (void *)order; | 653 | page[1].compound_order = order; |
| 653 | } | 654 | } |
| 654 | 655 | ||
| 655 | #ifdef CONFIG_MMU | 656 | #ifdef CONFIG_MMU |
| @@ -1164,8 +1165,6 @@ void unmap_vmas(struct mmu_gather *tlb, struct vm_area_struct *start_vma, | |||
| 1164 | 1165 | ||
| 1165 | /** | 1166 | /** |
| 1166 | * mm_walk - callbacks for walk_page_range | 1167 | * mm_walk - callbacks for walk_page_range |
| 1167 | * @pgd_entry: if set, called for each non-empty PGD (top-level) entry | ||
| 1168 | * @pud_entry: if set, called for each non-empty PUD (2nd-level) entry | ||
| 1169 | * @pmd_entry: if set, called for each non-empty PMD (3rd-level) entry | 1168 | * @pmd_entry: if set, called for each non-empty PMD (3rd-level) entry |
| 1170 | * this handler is required to be able to handle | 1169 | * this handler is required to be able to handle |
| 1171 | * pmd_trans_huge() pmds. They may simply choose to | 1170 | * pmd_trans_huge() pmds. They may simply choose to |
| @@ -1173,16 +1172,18 @@ void unmap_vmas(struct mmu_gather *tlb, struct vm_area_struct *start_vma, | |||
| 1173 | * @pte_entry: if set, called for each non-empty PTE (4th-level) entry | 1172 | * @pte_entry: if set, called for each non-empty PTE (4th-level) entry |
| 1174 | * @pte_hole: if set, called for each hole at all levels | 1173 | * @pte_hole: if set, called for each hole at all levels |
| 1175 | * @hugetlb_entry: if set, called for each hugetlb entry | 1174 | * @hugetlb_entry: if set, called for each hugetlb entry |
| 1176 | * *Caution*: The caller must hold mmap_sem() if @hugetlb_entry | 1175 | * @test_walk: caller specific callback function to determine whether |
| 1177 | * is used. | 1176 | * we walk over the current vma or not. A positive returned |
| 1177 | * value means "do page table walk over the current vma," | ||
| 1178 | * and a negative one means "abort current page table walk | ||
| 1179 | * right now." 0 means "skip the current vma." | ||
| 1180 | * @mm: mm_struct representing the target process of page table walk | ||
| 1181 | * @vma: vma currently walked (NULL if walking outside vmas) | ||
| 1182 | * @private: private data for callbacks' usage | ||
| 1178 | * | 1183 | * |
| 1179 | * (see walk_page_range for more details) | 1184 | * (see the comment on walk_page_range() for more details) |
| 1180 | */ | 1185 | */ |
| 1181 | struct mm_walk { | 1186 | struct mm_walk { |
| 1182 | int (*pgd_entry)(pgd_t *pgd, unsigned long addr, | ||
| 1183 | unsigned long next, struct mm_walk *walk); | ||
| 1184 | int (*pud_entry)(pud_t *pud, unsigned long addr, | ||
| 1185 | unsigned long next, struct mm_walk *walk); | ||
| 1186 | int (*pmd_entry)(pmd_t *pmd, unsigned long addr, | 1187 | int (*pmd_entry)(pmd_t *pmd, unsigned long addr, |
| 1187 | unsigned long next, struct mm_walk *walk); | 1188 | unsigned long next, struct mm_walk *walk); |
| 1188 | int (*pte_entry)(pte_t *pte, unsigned long addr, | 1189 | int (*pte_entry)(pte_t *pte, unsigned long addr, |
| @@ -1192,12 +1193,16 @@ struct mm_walk { | |||
| 1192 | int (*hugetlb_entry)(pte_t *pte, unsigned long hmask, | 1193 | int (*hugetlb_entry)(pte_t *pte, unsigned long hmask, |
| 1193 | unsigned long addr, unsigned long next, | 1194 | unsigned long addr, unsigned long next, |
| 1194 | struct mm_walk *walk); | 1195 | struct mm_walk *walk); |
| 1196 | int (*test_walk)(unsigned long addr, unsigned long next, | ||
| 1197 | struct mm_walk *walk); | ||
| 1195 | struct mm_struct *mm; | 1198 | struct mm_struct *mm; |
| 1199 | struct vm_area_struct *vma; | ||
| 1196 | void *private; | 1200 | void *private; |
| 1197 | }; | 1201 | }; |
| 1198 | 1202 | ||
| 1199 | int walk_page_range(unsigned long addr, unsigned long end, | 1203 | int walk_page_range(unsigned long addr, unsigned long end, |
| 1200 | struct mm_walk *walk); | 1204 | struct mm_walk *walk); |
| 1205 | int walk_page_vma(struct vm_area_struct *vma, struct mm_walk *walk); | ||
| 1201 | void free_pgd_range(struct mmu_gather *tlb, unsigned long addr, | 1206 | void free_pgd_range(struct mmu_gather *tlb, unsigned long addr, |
| 1202 | unsigned long end, unsigned long floor, unsigned long ceiling); | 1207 | unsigned long end, unsigned long floor, unsigned long ceiling); |
| 1203 | int copy_page_range(struct mm_struct *dst, struct mm_struct *src, | 1208 | int copy_page_range(struct mm_struct *dst, struct mm_struct *src, |
| @@ -1261,6 +1266,17 @@ long get_user_pages(struct task_struct *tsk, struct mm_struct *mm, | |||
| 1261 | unsigned long start, unsigned long nr_pages, | 1266 | unsigned long start, unsigned long nr_pages, |
| 1262 | int write, int force, struct page **pages, | 1267 | int write, int force, struct page **pages, |
| 1263 | struct vm_area_struct **vmas); | 1268 | struct vm_area_struct **vmas); |
| 1269 | long get_user_pages_locked(struct task_struct *tsk, struct mm_struct *mm, | ||
| 1270 | unsigned long start, unsigned long nr_pages, | ||
| 1271 | int write, int force, struct page **pages, | ||
| 1272 | int *locked); | ||
| 1273 | long __get_user_pages_unlocked(struct task_struct *tsk, struct mm_struct *mm, | ||
| 1274 | unsigned long start, unsigned long nr_pages, | ||
| 1275 | int write, int force, struct page **pages, | ||
| 1276 | unsigned int gup_flags); | ||
| 1277 | long get_user_pages_unlocked(struct task_struct *tsk, struct mm_struct *mm, | ||
| 1278 | unsigned long start, unsigned long nr_pages, | ||
| 1279 | int write, int force, struct page **pages); | ||
| 1264 | int get_user_pages_fast(unsigned long start, int nr_pages, int write, | 1280 | int get_user_pages_fast(unsigned long start, int nr_pages, int write, |
| 1265 | struct page **pages); | 1281 | struct page **pages); |
| 1266 | struct kvec; | 1282 | struct kvec; |
| @@ -1393,6 +1409,11 @@ static inline void update_hiwater_vm(struct mm_struct *mm) | |||
| 1393 | mm->hiwater_vm = mm->total_vm; | 1409 | mm->hiwater_vm = mm->total_vm; |
| 1394 | } | 1410 | } |
| 1395 | 1411 | ||
| 1412 | static inline void reset_mm_hiwater_rss(struct mm_struct *mm) | ||
| 1413 | { | ||
| 1414 | mm->hiwater_rss = get_mm_rss(mm); | ||
| 1415 | } | ||
| 1416 | |||
| 1396 | static inline void setmax_mm_hiwater_rss(unsigned long *maxrss, | 1417 | static inline void setmax_mm_hiwater_rss(unsigned long *maxrss, |
| 1397 | struct mm_struct *mm) | 1418 | struct mm_struct *mm) |
| 1398 | { | 1419 | { |
| @@ -1432,14 +1453,45 @@ static inline int __pud_alloc(struct mm_struct *mm, pgd_t *pgd, | |||
| 1432 | int __pud_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long address); | 1453 | int __pud_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long address); |
| 1433 | #endif | 1454 | #endif |
| 1434 | 1455 | ||
| 1435 | #ifdef __PAGETABLE_PMD_FOLDED | 1456 | #if defined(__PAGETABLE_PMD_FOLDED) || !defined(CONFIG_MMU) |
| 1436 | static inline int __pmd_alloc(struct mm_struct *mm, pud_t *pud, | 1457 | static inline int __pmd_alloc(struct mm_struct *mm, pud_t *pud, |
| 1437 | unsigned long address) | 1458 | unsigned long address) |
| 1438 | { | 1459 | { |
| 1439 | return 0; | 1460 | return 0; |
| 1440 | } | 1461 | } |
| 1462 | |||
| 1463 | static inline void mm_nr_pmds_init(struct mm_struct *mm) {} | ||
| 1464 | |||
| 1465 | static inline unsigned long mm_nr_pmds(struct mm_struct *mm) | ||
| 1466 | { | ||
| 1467 | return 0; | ||
| 1468 | } | ||
| 1469 | |||
| 1470 | static inline void mm_inc_nr_pmds(struct mm_struct *mm) {} | ||
| 1471 | static inline void mm_dec_nr_pmds(struct mm_struct *mm) {} | ||
| 1472 | |||
| 1441 | #else | 1473 | #else |
| 1442 | int __pmd_alloc(struct mm_struct *mm, pud_t *pud, unsigned long address); | 1474 | int __pmd_alloc(struct mm_struct *mm, pud_t *pud, unsigned long address); |
| 1475 | |||
| 1476 | static inline void mm_nr_pmds_init(struct mm_struct *mm) | ||
| 1477 | { | ||
| 1478 | atomic_long_set(&mm->nr_pmds, 0); | ||
| 1479 | } | ||
| 1480 | |||
| 1481 | static inline unsigned long mm_nr_pmds(struct mm_struct *mm) | ||
| 1482 | { | ||
| 1483 | return atomic_long_read(&mm->nr_pmds); | ||
| 1484 | } | ||
| 1485 | |||
| 1486 | static inline void mm_inc_nr_pmds(struct mm_struct *mm) | ||
| 1487 | { | ||
| 1488 | atomic_long_inc(&mm->nr_pmds); | ||
| 1489 | } | ||
| 1490 | |||
| 1491 | static inline void mm_dec_nr_pmds(struct mm_struct *mm) | ||
| 1492 | { | ||
| 1493 | atomic_long_dec(&mm->nr_pmds); | ||
| 1494 | } | ||
| 1443 | #endif | 1495 | #endif |
| 1444 | 1496 | ||
| 1445 | int __pte_alloc(struct mm_struct *mm, struct vm_area_struct *vma, | 1497 | int __pte_alloc(struct mm_struct *mm, struct vm_area_struct *vma, |
| @@ -2129,9 +2181,8 @@ int drop_caches_sysctl_handler(struct ctl_table *, int, | |||
| 2129 | void __user *, size_t *, loff_t *); | 2181 | void __user *, size_t *, loff_t *); |
| 2130 | #endif | 2182 | #endif |
| 2131 | 2183 | ||
| 2132 | unsigned long shrink_node_slabs(gfp_t gfp_mask, int nid, | 2184 | void drop_slab(void); |
| 2133 | unsigned long nr_scanned, | 2185 | void drop_slab_node(int nid); |
| 2134 | unsigned long nr_eligible); | ||
| 2135 | 2186 | ||
| 2136 | #ifndef CONFIG_MMU | 2187 | #ifndef CONFIG_MMU |
| 2137 | #define randomize_va_space 0 | 2188 | #define randomize_va_space 0 |
diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h index 07c8bd3f7b48..199a03aab8dc 100644 --- a/include/linux/mm_types.h +++ b/include/linux/mm_types.h | |||
| @@ -28,6 +28,8 @@ struct mem_cgroup; | |||
| 28 | IS_ENABLED(CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK)) | 28 | IS_ENABLED(CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK)) |
| 29 | #define ALLOC_SPLIT_PTLOCKS (SPINLOCK_SIZE > BITS_PER_LONG/8) | 29 | #define ALLOC_SPLIT_PTLOCKS (SPINLOCK_SIZE > BITS_PER_LONG/8) |
| 30 | 30 | ||
| 31 | typedef void compound_page_dtor(struct page *); | ||
| 32 | |||
| 31 | /* | 33 | /* |
| 32 | * Each physical page in the system has a struct page associated with | 34 | * Each physical page in the system has a struct page associated with |
| 33 | * it to keep track of whatever it is we are using the page for at the | 35 | * it to keep track of whatever it is we are using the page for at the |
| @@ -142,6 +144,12 @@ struct page { | |||
| 142 | struct rcu_head rcu_head; /* Used by SLAB | 144 | struct rcu_head rcu_head; /* Used by SLAB |
| 143 | * when destroying via RCU | 145 | * when destroying via RCU |
| 144 | */ | 146 | */ |
| 147 | /* First tail page of compound page */ | ||
| 148 | struct { | ||
| 149 | compound_page_dtor *compound_dtor; | ||
| 150 | unsigned long compound_order; | ||
| 151 | }; | ||
| 152 | |||
| 145 | #if defined(CONFIG_TRANSPARENT_HUGEPAGE) && USE_SPLIT_PMD_PTLOCKS | 153 | #if defined(CONFIG_TRANSPARENT_HUGEPAGE) && USE_SPLIT_PMD_PTLOCKS |
| 146 | pgtable_t pmd_huge_pte; /* protected by page->ptl */ | 154 | pgtable_t pmd_huge_pte; /* protected by page->ptl */ |
| 147 | #endif | 155 | #endif |
| @@ -355,7 +363,8 @@ struct mm_struct { | |||
| 355 | pgd_t * pgd; | 363 | pgd_t * pgd; |
| 356 | atomic_t mm_users; /* How many users with user space? */ | 364 | atomic_t mm_users; /* How many users with user space? */ |
| 357 | atomic_t mm_count; /* How many references to "struct mm_struct" (users count as 1) */ | 365 | atomic_t mm_count; /* How many references to "struct mm_struct" (users count as 1) */ |
| 358 | atomic_long_t nr_ptes; /* Page table pages */ | 366 | atomic_long_t nr_ptes; /* PTE page table pages */ |
| 367 | atomic_long_t nr_pmds; /* PMD page table pages */ | ||
| 359 | int map_count; /* number of VMAs */ | 368 | int map_count; /* number of VMAs */ |
| 360 | 369 | ||
| 361 | spinlock_t page_table_lock; /* Protects page tables and some counters */ | 370 | spinlock_t page_table_lock; /* Protects page tables and some counters */ |
diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h index 2f0856d14b21..f279d9c158cd 100644 --- a/include/linux/mmzone.h +++ b/include/linux/mmzone.h | |||
| @@ -426,7 +426,7 @@ struct zone { | |||
| 426 | const char *name; | 426 | const char *name; |
| 427 | 427 | ||
| 428 | /* | 428 | /* |
| 429 | * Number of MIGRATE_RESEVE page block. To maintain for just | 429 | * Number of MIGRATE_RESERVE page block. To maintain for just |
| 430 | * optimization. Protected by zone->lock. | 430 | * optimization. Protected by zone->lock. |
| 431 | */ | 431 | */ |
| 432 | int nr_migrate_reserve_block; | 432 | int nr_migrate_reserve_block; |
| @@ -970,7 +970,6 @@ static inline int zonelist_node_idx(struct zoneref *zoneref) | |||
| 970 | * @z - The cursor used as a starting point for the search | 970 | * @z - The cursor used as a starting point for the search |
| 971 | * @highest_zoneidx - The zone index of the highest zone to return | 971 | * @highest_zoneidx - The zone index of the highest zone to return |
| 972 | * @nodes - An optional nodemask to filter the zonelist with | 972 | * @nodes - An optional nodemask to filter the zonelist with |
| 973 | * @zone - The first suitable zone found is returned via this parameter | ||
| 974 | * | 973 | * |
| 975 | * This function returns the next zone at or below a given zone index that is | 974 | * This function returns the next zone at or below a given zone index that is |
| 976 | * within the allowed nodemask using a cursor as the starting point for the | 975 | * within the allowed nodemask using a cursor as the starting point for the |
| @@ -980,8 +979,7 @@ static inline int zonelist_node_idx(struct zoneref *zoneref) | |||
| 980 | */ | 979 | */ |
| 981 | struct zoneref *next_zones_zonelist(struct zoneref *z, | 980 | struct zoneref *next_zones_zonelist(struct zoneref *z, |
| 982 | enum zone_type highest_zoneidx, | 981 | enum zone_type highest_zoneidx, |
| 983 | nodemask_t *nodes, | 982 | nodemask_t *nodes); |
| 984 | struct zone **zone); | ||
| 985 | 983 | ||
| 986 | /** | 984 | /** |
| 987 | * first_zones_zonelist - Returns the first zone at or below highest_zoneidx within the allowed nodemask in a zonelist | 985 | * first_zones_zonelist - Returns the first zone at or below highest_zoneidx within the allowed nodemask in a zonelist |
| @@ -1000,8 +998,10 @@ static inline struct zoneref *first_zones_zonelist(struct zonelist *zonelist, | |||
| 1000 | nodemask_t *nodes, | 998 | nodemask_t *nodes, |
| 1001 | struct zone **zone) | 999 | struct zone **zone) |
| 1002 | { | 1000 | { |
| 1003 | return next_zones_zonelist(zonelist->_zonerefs, highest_zoneidx, nodes, | 1001 | struct zoneref *z = next_zones_zonelist(zonelist->_zonerefs, |
| 1004 | zone); | 1002 | highest_zoneidx, nodes); |
| 1003 | *zone = zonelist_zone(z); | ||
| 1004 | return z; | ||
| 1005 | } | 1005 | } |
| 1006 | 1006 | ||
| 1007 | /** | 1007 | /** |
| @@ -1018,7 +1018,8 @@ static inline struct zoneref *first_zones_zonelist(struct zonelist *zonelist, | |||
| 1018 | #define for_each_zone_zonelist_nodemask(zone, z, zlist, highidx, nodemask) \ | 1018 | #define for_each_zone_zonelist_nodemask(zone, z, zlist, highidx, nodemask) \ |
| 1019 | for (z = first_zones_zonelist(zlist, highidx, nodemask, &zone); \ | 1019 | for (z = first_zones_zonelist(zlist, highidx, nodemask, &zone); \ |
| 1020 | zone; \ | 1020 | zone; \ |
| 1021 | z = next_zones_zonelist(++z, highidx, nodemask, &zone)) \ | 1021 | z = next_zones_zonelist(++z, highidx, nodemask), \ |
| 1022 | zone = zonelist_zone(z)) \ | ||
| 1022 | 1023 | ||
| 1023 | /** | 1024 | /** |
| 1024 | * for_each_zone_zonelist - helper macro to iterate over valid zones in a zonelist at or below a given zone index | 1025 | * for_each_zone_zonelist - helper macro to iterate over valid zones in a zonelist at or below a given zone index |
diff --git a/include/linux/mod_devicetable.h b/include/linux/mod_devicetable.h index 2bb97175b6cc..e530533b94be 100644 --- a/include/linux/mod_devicetable.h +++ b/include/linux/mod_devicetable.h | |||
| @@ -53,9 +53,9 @@ struct ieee1394_device_id { | |||
| 53 | 53 | ||
| 54 | /** | 54 | /** |
| 55 | * struct usb_device_id - identifies USB devices for probing and hotplugging | 55 | * struct usb_device_id - identifies USB devices for probing and hotplugging |
| 56 | * @match_flags: Bit mask controlling of the other fields are used to match | 56 | * @match_flags: Bit mask controlling which of the other fields are used to |
| 57 | * against new devices. Any field except for driver_info may be used, | 57 | * match against new devices. Any field except for driver_info may be |
| 58 | * although some only make sense in conjunction with other fields. | 58 | * used, although some only make sense in conjunction with other fields. |
| 59 | * This is usually set by a USB_DEVICE_*() macro, which sets all | 59 | * This is usually set by a USB_DEVICE_*() macro, which sets all |
| 60 | * other fields in this structure except for driver_info. | 60 | * other fields in this structure except for driver_info. |
| 61 | * @idVendor: USB vendor ID for a device; numbers are assigned | 61 | * @idVendor: USB vendor ID for a device; numbers are assigned |
| @@ -220,8 +220,7 @@ struct serio_device_id { | |||
| 220 | /* | 220 | /* |
| 221 | * Struct used for matching a device | 221 | * Struct used for matching a device |
| 222 | */ | 222 | */ |
| 223 | struct of_device_id | 223 | struct of_device_id { |
| 224 | { | ||
| 225 | char name[32]; | 224 | char name[32]; |
| 226 | char type[32]; | 225 | char type[32]; |
| 227 | char compatible[128]; | 226 | char compatible[128]; |
diff --git a/include/linux/module.h b/include/linux/module.h index b653d7c0a05a..42999fe2dbd0 100644 --- a/include/linux/module.h +++ b/include/linux/module.h | |||
| @@ -135,7 +135,7 @@ void trim_init_extable(struct module *m); | |||
| 135 | #ifdef MODULE | 135 | #ifdef MODULE |
| 136 | /* Creates an alias so file2alias.c can find device table. */ | 136 | /* Creates an alias so file2alias.c can find device table. */ |
| 137 | #define MODULE_DEVICE_TABLE(type, name) \ | 137 | #define MODULE_DEVICE_TABLE(type, name) \ |
| 138 | extern const struct type##_device_id __mod_##type##__##name##_device_table \ | 138 | extern const typeof(name) __mod_##type##__##name##_device_table \ |
| 139 | __attribute__ ((unused, alias(__stringify(name)))) | 139 | __attribute__ ((unused, alias(__stringify(name)))) |
| 140 | #else /* !MODULE */ | 140 | #else /* !MODULE */ |
| 141 | #define MODULE_DEVICE_TABLE(type, name) | 141 | #define MODULE_DEVICE_TABLE(type, name) |
diff --git a/include/linux/mtd/mtd.h b/include/linux/mtd/mtd.h index 031ff3a9a0bd..3301c4c289d6 100644 --- a/include/linux/mtd/mtd.h +++ b/include/linux/mtd/mtd.h | |||
| @@ -408,4 +408,6 @@ static inline int mtd_is_bitflip_or_eccerr(int err) { | |||
| 408 | return mtd_is_bitflip(err) || mtd_is_eccerr(err); | 408 | return mtd_is_bitflip(err) || mtd_is_eccerr(err); |
| 409 | } | 409 | } |
| 410 | 410 | ||
| 411 | unsigned mtd_mmap_capabilities(struct mtd_info *mtd); | ||
| 412 | |||
| 411 | #endif /* __MTD_MTD_H__ */ | 413 | #endif /* __MTD_MTD_H__ */ |
diff --git a/include/linux/mtd/ubi.h b/include/linux/mtd/ubi.h index c3918a0684fe..1e271cb559cd 100644 --- a/include/linux/mtd/ubi.h +++ b/include/linux/mtd/ubi.h | |||
| @@ -23,22 +23,32 @@ | |||
| 23 | 23 | ||
| 24 | #include <linux/ioctl.h> | 24 | #include <linux/ioctl.h> |
| 25 | #include <linux/types.h> | 25 | #include <linux/types.h> |
| 26 | #include <linux/scatterlist.h> | ||
| 26 | #include <mtd/ubi-user.h> | 27 | #include <mtd/ubi-user.h> |
| 27 | 28 | ||
| 28 | /* All voumes/LEBs */ | 29 | /* All voumes/LEBs */ |
| 29 | #define UBI_ALL -1 | 30 | #define UBI_ALL -1 |
| 30 | 31 | ||
| 31 | /* | 32 | /* |
| 33 | * Maximum number of scatter gather list entries, | ||
| 34 | * we use only 64 to have a lower memory foot print. | ||
| 35 | */ | ||
| 36 | #define UBI_MAX_SG_COUNT 64 | ||
| 37 | |||
| 38 | /* | ||
| 32 | * enum ubi_open_mode - UBI volume open mode constants. | 39 | * enum ubi_open_mode - UBI volume open mode constants. |
| 33 | * | 40 | * |
| 34 | * UBI_READONLY: read-only mode | 41 | * UBI_READONLY: read-only mode |
| 35 | * UBI_READWRITE: read-write mode | 42 | * UBI_READWRITE: read-write mode |
| 36 | * UBI_EXCLUSIVE: exclusive mode | 43 | * UBI_EXCLUSIVE: exclusive mode |
| 44 | * UBI_METAONLY: modify only the volume meta-data, | ||
| 45 | * i.e. the data stored in the volume table, but not in any of volume LEBs. | ||
| 37 | */ | 46 | */ |
| 38 | enum { | 47 | enum { |
| 39 | UBI_READONLY = 1, | 48 | UBI_READONLY = 1, |
| 40 | UBI_READWRITE, | 49 | UBI_READWRITE, |
| 41 | UBI_EXCLUSIVE | 50 | UBI_EXCLUSIVE, |
| 51 | UBI_METAONLY | ||
| 42 | }; | 52 | }; |
| 43 | 53 | ||
| 44 | /** | 54 | /** |
| @@ -116,6 +126,35 @@ struct ubi_volume_info { | |||
| 116 | }; | 126 | }; |
| 117 | 127 | ||
| 118 | /** | 128 | /** |
| 129 | * struct ubi_sgl - UBI scatter gather list data structure. | ||
| 130 | * @list_pos: current position in @sg[] | ||
| 131 | * @page_pos: current position in @sg[@list_pos] | ||
| 132 | * @sg: the scatter gather list itself | ||
| 133 | * | ||
| 134 | * ubi_sgl is a wrapper around a scatter list which keeps track of the | ||
| 135 | * current position in the list and the current list item such that | ||
| 136 | * it can be used across multiple ubi_leb_read_sg() calls. | ||
| 137 | */ | ||
| 138 | struct ubi_sgl { | ||
| 139 | int list_pos; | ||
| 140 | int page_pos; | ||
| 141 | struct scatterlist sg[UBI_MAX_SG_COUNT]; | ||
| 142 | }; | ||
| 143 | |||
| 144 | /** | ||
| 145 | * ubi_sgl_init - initialize an UBI scatter gather list data structure. | ||
| 146 | * @usgl: the UBI scatter gather struct itself | ||
| 147 | * | ||
| 148 | * Please note that you still have to use sg_init_table() or any adequate | ||
| 149 | * function to initialize the unterlaying struct scatterlist. | ||
| 150 | */ | ||
| 151 | static inline void ubi_sgl_init(struct ubi_sgl *usgl) | ||
| 152 | { | ||
| 153 | usgl->list_pos = 0; | ||
| 154 | usgl->page_pos = 0; | ||
| 155 | } | ||
| 156 | |||
| 157 | /** | ||
| 119 | * struct ubi_device_info - UBI device description data structure. | 158 | * struct ubi_device_info - UBI device description data structure. |
| 120 | * @ubi_num: ubi device number | 159 | * @ubi_num: ubi device number |
| 121 | * @leb_size: logical eraseblock size on this UBI device | 160 | * @leb_size: logical eraseblock size on this UBI device |
| @@ -210,6 +249,8 @@ int ubi_unregister_volume_notifier(struct notifier_block *nb); | |||
| 210 | void ubi_close_volume(struct ubi_volume_desc *desc); | 249 | void ubi_close_volume(struct ubi_volume_desc *desc); |
| 211 | int ubi_leb_read(struct ubi_volume_desc *desc, int lnum, char *buf, int offset, | 250 | int ubi_leb_read(struct ubi_volume_desc *desc, int lnum, char *buf, int offset, |
| 212 | int len, int check); | 251 | int len, int check); |
| 252 | int ubi_leb_read_sg(struct ubi_volume_desc *desc, int lnum, struct ubi_sgl *sgl, | ||
| 253 | int offset, int len, int check); | ||
| 213 | int ubi_leb_write(struct ubi_volume_desc *desc, int lnum, const void *buf, | 254 | int ubi_leb_write(struct ubi_volume_desc *desc, int lnum, const void *buf, |
| 214 | int offset, int len); | 255 | int offset, int len); |
| 215 | int ubi_leb_change(struct ubi_volume_desc *desc, int lnum, const void *buf, | 256 | int ubi_leb_change(struct ubi_volume_desc *desc, int lnum, const void *buf, |
| @@ -230,4 +271,14 @@ static inline int ubi_read(struct ubi_volume_desc *desc, int lnum, char *buf, | |||
| 230 | { | 271 | { |
| 231 | return ubi_leb_read(desc, lnum, buf, offset, len, 0); | 272 | return ubi_leb_read(desc, lnum, buf, offset, len, 0); |
| 232 | } | 273 | } |
| 274 | |||
| 275 | /* | ||
| 276 | * This function is the same as the 'ubi_leb_read_sg()' function, but it does | ||
| 277 | * not provide the checking capability. | ||
| 278 | */ | ||
| 279 | static inline int ubi_read_sg(struct ubi_volume_desc *desc, int lnum, | ||
| 280 | struct ubi_sgl *sgl, int offset, int len) | ||
| 281 | { | ||
| 282 | return ubi_leb_read_sg(desc, lnum, sgl, offset, len, 0); | ||
| 283 | } | ||
| 233 | #endif /* !__LINUX_UBI_H__ */ | 284 | #endif /* !__LINUX_UBI_H__ */ |
diff --git a/include/linux/mutex.h b/include/linux/mutex.h index cc31498fc526..2cb7531e7d7a 100644 --- a/include/linux/mutex.h +++ b/include/linux/mutex.h | |||
| @@ -59,7 +59,6 @@ struct mutex { | |||
| 59 | struct optimistic_spin_queue osq; /* Spinner MCS lock */ | 59 | struct optimistic_spin_queue osq; /* Spinner MCS lock */ |
| 60 | #endif | 60 | #endif |
| 61 | #ifdef CONFIG_DEBUG_MUTEXES | 61 | #ifdef CONFIG_DEBUG_MUTEXES |
| 62 | const char *name; | ||
| 63 | void *magic; | 62 | void *magic; |
| 64 | #endif | 63 | #endif |
| 65 | #ifdef CONFIG_DEBUG_LOCK_ALLOC | 64 | #ifdef CONFIG_DEBUG_LOCK_ALLOC |
diff --git a/include/linux/nfs4.h b/include/linux/nfs4.h index 022b761dbf0a..ed43cb74b11d 100644 --- a/include/linux/nfs4.h +++ b/include/linux/nfs4.h | |||
| @@ -411,6 +411,7 @@ enum lock_type4 { | |||
| 411 | #define FATTR4_WORD1_TIME_MODIFY_SET (1UL << 22) | 411 | #define FATTR4_WORD1_TIME_MODIFY_SET (1UL << 22) |
| 412 | #define FATTR4_WORD1_MOUNTED_ON_FILEID (1UL << 23) | 412 | #define FATTR4_WORD1_MOUNTED_ON_FILEID (1UL << 23) |
| 413 | #define FATTR4_WORD1_FS_LAYOUT_TYPES (1UL << 30) | 413 | #define FATTR4_WORD1_FS_LAYOUT_TYPES (1UL << 30) |
| 414 | #define FATTR4_WORD2_LAYOUT_TYPES (1UL << 0) | ||
| 414 | #define FATTR4_WORD2_LAYOUT_BLKSIZE (1UL << 1) | 415 | #define FATTR4_WORD2_LAYOUT_BLKSIZE (1UL << 1) |
| 415 | #define FATTR4_WORD2_MDSTHRESHOLD (1UL << 4) | 416 | #define FATTR4_WORD2_MDSTHRESHOLD (1UL << 4) |
| 416 | #define FATTR4_WORD2_SECURITY_LABEL (1UL << 16) | 417 | #define FATTR4_WORD2_SECURITY_LABEL (1UL << 16) |
| @@ -516,6 +517,8 @@ enum pnfs_layouttype { | |||
| 516 | LAYOUT_NFSV4_1_FILES = 1, | 517 | LAYOUT_NFSV4_1_FILES = 1, |
| 517 | LAYOUT_OSD2_OBJECTS = 2, | 518 | LAYOUT_OSD2_OBJECTS = 2, |
| 518 | LAYOUT_BLOCK_VOLUME = 3, | 519 | LAYOUT_BLOCK_VOLUME = 3, |
| 520 | LAYOUT_FLEX_FILES = 4, | ||
| 521 | LAYOUT_TYPE_MAX | ||
| 519 | }; | 522 | }; |
| 520 | 523 | ||
| 521 | /* used for both layout return and recall */ | 524 | /* used for both layout return and recall */ |
diff --git a/include/linux/nfs_fs_sb.h b/include/linux/nfs_fs_sb.h index ddea982355f3..5e1273d4de14 100644 --- a/include/linux/nfs_fs_sb.h +++ b/include/linux/nfs_fs_sb.h | |||
| @@ -77,10 +77,6 @@ struct nfs_client { | |||
| 77 | /* Client owner identifier */ | 77 | /* Client owner identifier */ |
| 78 | const char * cl_owner_id; | 78 | const char * cl_owner_id; |
| 79 | 79 | ||
| 80 | /* Our own IP address, as a null-terminated string. | ||
| 81 | * This is used to generate the mv0 callback address. | ||
| 82 | */ | ||
| 83 | char cl_ipaddr[48]; | ||
| 84 | u32 cl_cb_ident; /* v4.0 callback identifier */ | 80 | u32 cl_cb_ident; /* v4.0 callback identifier */ |
| 85 | const struct nfs4_minor_version_ops *cl_mvops; | 81 | const struct nfs4_minor_version_ops *cl_mvops; |
| 86 | unsigned long cl_mig_gen; | 82 | unsigned long cl_mig_gen; |
| @@ -108,6 +104,11 @@ struct nfs_client { | |||
| 108 | #define NFS_SP4_MACH_CRED_COMMIT 6 /* COMMIT */ | 104 | #define NFS_SP4_MACH_CRED_COMMIT 6 /* COMMIT */ |
| 109 | #endif /* CONFIG_NFS_V4 */ | 105 | #endif /* CONFIG_NFS_V4 */ |
| 110 | 106 | ||
| 107 | /* Our own IP address, as a null-terminated string. | ||
| 108 | * This is used to generate the mv0 callback address. | ||
| 109 | */ | ||
| 110 | char cl_ipaddr[48]; | ||
| 111 | |||
| 111 | #ifdef CONFIG_NFS_FSCACHE | 112 | #ifdef CONFIG_NFS_FSCACHE |
| 112 | struct fscache_cookie *fscache; /* client index cache cookie */ | 113 | struct fscache_cookie *fscache; /* client index cache cookie */ |
| 113 | #endif | 114 | #endif |
diff --git a/include/linux/nfs_idmap.h b/include/linux/nfs_idmap.h index 0f4b79da6584..333844e38f66 100644 --- a/include/linux/nfs_idmap.h +++ b/include/linux/nfs_idmap.h | |||
| @@ -73,5 +73,7 @@ int nfs_map_group_to_gid(const struct nfs_server *, const char *, size_t, kgid_t | |||
| 73 | int nfs_map_uid_to_name(const struct nfs_server *, kuid_t, char *, size_t); | 73 | int nfs_map_uid_to_name(const struct nfs_server *, kuid_t, char *, size_t); |
| 74 | int nfs_map_gid_to_group(const struct nfs_server *, kgid_t, char *, size_t); | 74 | int nfs_map_gid_to_group(const struct nfs_server *, kgid_t, char *, size_t); |
| 75 | 75 | ||
| 76 | int nfs_map_string_to_numeric(const char *name, size_t namelen, __u32 *res); | ||
| 77 | |||
| 76 | extern unsigned int nfs_idmap_cache_timeout; | 78 | extern unsigned int nfs_idmap_cache_timeout; |
| 77 | #endif /* NFS_IDMAP_H */ | 79 | #endif /* NFS_IDMAP_H */ |
diff --git a/include/linux/nfs_page.h b/include/linux/nfs_page.h index 6c3e06ee2fb7..3eb072dbce83 100644 --- a/include/linux/nfs_page.h +++ b/include/linux/nfs_page.h | |||
| @@ -58,6 +58,9 @@ struct nfs_pageio_ops { | |||
| 58 | size_t (*pg_test)(struct nfs_pageio_descriptor *, struct nfs_page *, | 58 | size_t (*pg_test)(struct nfs_pageio_descriptor *, struct nfs_page *, |
| 59 | struct nfs_page *); | 59 | struct nfs_page *); |
| 60 | int (*pg_doio)(struct nfs_pageio_descriptor *); | 60 | int (*pg_doio)(struct nfs_pageio_descriptor *); |
| 61 | unsigned int (*pg_get_mirror_count)(struct nfs_pageio_descriptor *, | ||
| 62 | struct nfs_page *); | ||
| 63 | void (*pg_cleanup)(struct nfs_pageio_descriptor *); | ||
| 61 | }; | 64 | }; |
| 62 | 65 | ||
| 63 | struct nfs_rw_ops { | 66 | struct nfs_rw_ops { |
| @@ -69,18 +72,21 @@ struct nfs_rw_ops { | |||
| 69 | struct inode *); | 72 | struct inode *); |
| 70 | void (*rw_result)(struct rpc_task *, struct nfs_pgio_header *); | 73 | void (*rw_result)(struct rpc_task *, struct nfs_pgio_header *); |
| 71 | void (*rw_initiate)(struct nfs_pgio_header *, struct rpc_message *, | 74 | void (*rw_initiate)(struct nfs_pgio_header *, struct rpc_message *, |
| 75 | const struct nfs_rpc_ops *, | ||
| 72 | struct rpc_task_setup *, int); | 76 | struct rpc_task_setup *, int); |
| 73 | }; | 77 | }; |
| 74 | 78 | ||
| 75 | struct nfs_pageio_descriptor { | 79 | struct nfs_pgio_mirror { |
| 76 | struct list_head pg_list; | 80 | struct list_head pg_list; |
| 77 | unsigned long pg_bytes_written; | 81 | unsigned long pg_bytes_written; |
| 78 | size_t pg_count; | 82 | size_t pg_count; |
| 79 | size_t pg_bsize; | 83 | size_t pg_bsize; |
| 80 | unsigned int pg_base; | 84 | unsigned int pg_base; |
| 81 | unsigned char pg_moreio : 1, | 85 | unsigned char pg_recoalesce : 1; |
| 82 | pg_recoalesce : 1; | 86 | }; |
| 83 | 87 | ||
| 88 | struct nfs_pageio_descriptor { | ||
| 89 | unsigned char pg_moreio : 1; | ||
| 84 | struct inode *pg_inode; | 90 | struct inode *pg_inode; |
| 85 | const struct nfs_pageio_ops *pg_ops; | 91 | const struct nfs_pageio_ops *pg_ops; |
| 86 | const struct nfs_rw_ops *pg_rw_ops; | 92 | const struct nfs_rw_ops *pg_rw_ops; |
| @@ -91,8 +97,18 @@ struct nfs_pageio_descriptor { | |||
| 91 | struct pnfs_layout_segment *pg_lseg; | 97 | struct pnfs_layout_segment *pg_lseg; |
| 92 | struct nfs_direct_req *pg_dreq; | 98 | struct nfs_direct_req *pg_dreq; |
| 93 | void *pg_layout_private; | 99 | void *pg_layout_private; |
| 100 | unsigned int pg_bsize; /* default bsize for mirrors */ | ||
| 101 | |||
| 102 | u32 pg_mirror_count; | ||
| 103 | struct nfs_pgio_mirror *pg_mirrors; | ||
| 104 | struct nfs_pgio_mirror pg_mirrors_static[1]; | ||
| 105 | struct nfs_pgio_mirror *pg_mirrors_dynamic; | ||
| 106 | u32 pg_mirror_idx; /* current mirror */ | ||
| 94 | }; | 107 | }; |
| 95 | 108 | ||
| 109 | /* arbitrarily selected limit to number of mirrors */ | ||
| 110 | #define NFS_PAGEIO_DESCRIPTOR_MIRROR_MAX 16 | ||
| 111 | |||
| 96 | #define NFS_WBACK_BUSY(req) (test_bit(PG_BUSY,&(req)->wb_flags)) | 112 | #define NFS_WBACK_BUSY(req) (test_bit(PG_BUSY,&(req)->wb_flags)) |
| 97 | 113 | ||
| 98 | extern struct nfs_page *nfs_create_request(struct nfs_open_context *ctx, | 114 | extern struct nfs_page *nfs_create_request(struct nfs_open_context *ctx, |
diff --git a/include/linux/nfs_xdr.h b/include/linux/nfs_xdr.h index 467c84efb596..38d96ba935c2 100644 --- a/include/linux/nfs_xdr.h +++ b/include/linux/nfs_xdr.h | |||
| @@ -285,6 +285,7 @@ struct nfs4_layoutcommit_data { | |||
| 285 | struct nfs_fattr fattr; | 285 | struct nfs_fattr fattr; |
| 286 | struct list_head lseg_list; | 286 | struct list_head lseg_list; |
| 287 | struct rpc_cred *cred; | 287 | struct rpc_cred *cred; |
| 288 | struct inode *inode; | ||
| 288 | struct nfs4_layoutcommit_args args; | 289 | struct nfs4_layoutcommit_args args; |
| 289 | struct nfs4_layoutcommit_res res; | 290 | struct nfs4_layoutcommit_res res; |
| 290 | }; | 291 | }; |
| @@ -293,6 +294,7 @@ struct nfs4_layoutreturn_args { | |||
| 293 | struct nfs4_sequence_args seq_args; | 294 | struct nfs4_sequence_args seq_args; |
| 294 | struct pnfs_layout_hdr *layout; | 295 | struct pnfs_layout_hdr *layout; |
| 295 | struct inode *inode; | 296 | struct inode *inode; |
| 297 | struct pnfs_layout_range range; | ||
| 296 | nfs4_stateid stateid; | 298 | nfs4_stateid stateid; |
| 297 | __u32 layout_type; | 299 | __u32 layout_type; |
| 298 | }; | 300 | }; |
| @@ -308,6 +310,7 @@ struct nfs4_layoutreturn { | |||
| 308 | struct nfs4_layoutreturn_res res; | 310 | struct nfs4_layoutreturn_res res; |
| 309 | struct rpc_cred *cred; | 311 | struct rpc_cred *cred; |
| 310 | struct nfs_client *clp; | 312 | struct nfs_client *clp; |
| 313 | struct inode *inode; | ||
| 311 | int rpc_status; | 314 | int rpc_status; |
| 312 | }; | 315 | }; |
| 313 | 316 | ||
| @@ -325,6 +328,7 @@ struct nfs_openargs { | |||
| 325 | struct nfs_seqid * seqid; | 328 | struct nfs_seqid * seqid; |
| 326 | int open_flags; | 329 | int open_flags; |
| 327 | fmode_t fmode; | 330 | fmode_t fmode; |
| 331 | u32 share_access; | ||
| 328 | u32 access; | 332 | u32 access; |
| 329 | __u64 clientid; | 333 | __u64 clientid; |
| 330 | struct stateowner_id id; | 334 | struct stateowner_id id; |
| @@ -389,9 +393,10 @@ struct nfs_open_confirmres { | |||
| 389 | struct nfs_closeargs { | 393 | struct nfs_closeargs { |
| 390 | struct nfs4_sequence_args seq_args; | 394 | struct nfs4_sequence_args seq_args; |
| 391 | struct nfs_fh * fh; | 395 | struct nfs_fh * fh; |
| 392 | nfs4_stateid * stateid; | 396 | nfs4_stateid stateid; |
| 393 | struct nfs_seqid * seqid; | 397 | struct nfs_seqid * seqid; |
| 394 | fmode_t fmode; | 398 | fmode_t fmode; |
| 399 | u32 share_access; | ||
| 395 | const u32 * bitmask; | 400 | const u32 * bitmask; |
| 396 | }; | 401 | }; |
| 397 | 402 | ||
| @@ -416,12 +421,13 @@ struct nfs_lock_args { | |||
| 416 | struct nfs_fh * fh; | 421 | struct nfs_fh * fh; |
| 417 | struct file_lock * fl; | 422 | struct file_lock * fl; |
| 418 | struct nfs_seqid * lock_seqid; | 423 | struct nfs_seqid * lock_seqid; |
| 419 | nfs4_stateid * lock_stateid; | 424 | nfs4_stateid lock_stateid; |
| 420 | struct nfs_seqid * open_seqid; | 425 | struct nfs_seqid * open_seqid; |
| 421 | nfs4_stateid * open_stateid; | 426 | nfs4_stateid open_stateid; |
| 422 | struct nfs_lowner lock_owner; | 427 | struct nfs_lowner lock_owner; |
| 423 | unsigned char block : 1; | 428 | unsigned char block : 1; |
| 424 | unsigned char reclaim : 1; | 429 | unsigned char reclaim : 1; |
| 430 | unsigned char new_lock : 1; | ||
| 425 | unsigned char new_lock_owner : 1; | 431 | unsigned char new_lock_owner : 1; |
| 426 | }; | 432 | }; |
| 427 | 433 | ||
| @@ -437,7 +443,7 @@ struct nfs_locku_args { | |||
| 437 | struct nfs_fh * fh; | 443 | struct nfs_fh * fh; |
| 438 | struct file_lock * fl; | 444 | struct file_lock * fl; |
| 439 | struct nfs_seqid * seqid; | 445 | struct nfs_seqid * seqid; |
| 440 | nfs4_stateid * stateid; | 446 | nfs4_stateid stateid; |
| 441 | }; | 447 | }; |
| 442 | 448 | ||
| 443 | struct nfs_locku_res { | 449 | struct nfs_locku_res { |
| @@ -513,6 +519,7 @@ struct nfs_pgio_res { | |||
| 513 | struct nfs4_sequence_res seq_res; | 519 | struct nfs4_sequence_res seq_res; |
| 514 | struct nfs_fattr * fattr; | 520 | struct nfs_fattr * fattr; |
| 515 | __u32 count; | 521 | __u32 count; |
| 522 | __u32 op_status; | ||
| 516 | int eof; /* used by read */ | 523 | int eof; /* used by read */ |
| 517 | struct nfs_writeverf * verf; /* used by write */ | 524 | struct nfs_writeverf * verf; /* used by write */ |
| 518 | const struct nfs_server *server; /* used by write */ | 525 | const struct nfs_server *server; /* used by write */ |
| @@ -532,6 +539,7 @@ struct nfs_commitargs { | |||
| 532 | 539 | ||
| 533 | struct nfs_commitres { | 540 | struct nfs_commitres { |
| 534 | struct nfs4_sequence_res seq_res; | 541 | struct nfs4_sequence_res seq_res; |
| 542 | __u32 op_status; | ||
| 535 | struct nfs_fattr *fattr; | 543 | struct nfs_fattr *fattr; |
| 536 | struct nfs_writeverf *verf; | 544 | struct nfs_writeverf *verf; |
| 537 | const struct nfs_server *server; | 545 | const struct nfs_server *server; |
| @@ -1325,7 +1333,8 @@ struct nfs_pgio_header { | |||
| 1325 | __u64 mds_offset; /* Filelayout dense stripe */ | 1333 | __u64 mds_offset; /* Filelayout dense stripe */ |
| 1326 | struct nfs_page_array page_array; | 1334 | struct nfs_page_array page_array; |
| 1327 | struct nfs_client *ds_clp; /* pNFS data server */ | 1335 | struct nfs_client *ds_clp; /* pNFS data server */ |
| 1328 | int ds_idx; /* ds index if ds_clp is set */ | 1336 | int ds_commit_idx; /* ds index if ds_clp is set */ |
| 1337 | int pgio_mirror_idx;/* mirror index in pgio layer */ | ||
| 1329 | }; | 1338 | }; |
| 1330 | 1339 | ||
| 1331 | struct nfs_mds_commit_info { | 1340 | struct nfs_mds_commit_info { |
diff --git a/include/linux/nodemask.h b/include/linux/nodemask.h index 83a6aeda899d..6e85889cf9ab 100644 --- a/include/linux/nodemask.h +++ b/include/linux/nodemask.h | |||
| @@ -8,14 +8,13 @@ | |||
| 8 | * See detailed comments in the file linux/bitmap.h describing the | 8 | * See detailed comments in the file linux/bitmap.h describing the |
| 9 | * data type on which these nodemasks are based. | 9 | * data type on which these nodemasks are based. |
| 10 | * | 10 | * |
| 11 | * For details of nodemask_scnprintf() and nodemask_parse_user(), | 11 | * For details of nodemask_parse_user(), see bitmap_parse_user() in |
| 12 | * see bitmap_scnprintf() and bitmap_parse_user() in lib/bitmap.c. | 12 | * lib/bitmap.c. For details of nodelist_parse(), see bitmap_parselist(), |
| 13 | * For details of nodelist_scnprintf() and nodelist_parse(), see | 13 | * also in bitmap.c. For details of node_remap(), see bitmap_bitremap in |
| 14 | * bitmap_scnlistprintf() and bitmap_parselist(), also in bitmap.c. | 14 | * lib/bitmap.c. For details of nodes_remap(), see bitmap_remap in |
| 15 | * For details of node_remap(), see bitmap_bitremap in lib/bitmap.c. | 15 | * lib/bitmap.c. For details of nodes_onto(), see bitmap_onto in |
| 16 | * For details of nodes_remap(), see bitmap_remap in lib/bitmap.c. | 16 | * lib/bitmap.c. For details of nodes_fold(), see bitmap_fold in |
| 17 | * For details of nodes_onto(), see bitmap_onto in lib/bitmap.c. | 17 | * lib/bitmap.c. |
| 18 | * For details of nodes_fold(), see bitmap_fold in lib/bitmap.c. | ||
| 19 | * | 18 | * |
| 20 | * The available nodemask operations are: | 19 | * The available nodemask operations are: |
| 21 | * | 20 | * |
| @@ -52,9 +51,7 @@ | |||
| 52 | * NODE_MASK_NONE Initializer - no bits set | 51 | * NODE_MASK_NONE Initializer - no bits set |
| 53 | * unsigned long *nodes_addr(mask) Array of unsigned long's in mask | 52 | * unsigned long *nodes_addr(mask) Array of unsigned long's in mask |
| 54 | * | 53 | * |
| 55 | * int nodemask_scnprintf(buf, len, mask) Format nodemask for printing | ||
| 56 | * int nodemask_parse_user(ubuf, ulen, mask) Parse ascii string as nodemask | 54 | * int nodemask_parse_user(ubuf, ulen, mask) Parse ascii string as nodemask |
| 57 | * int nodelist_scnprintf(buf, len, mask) Format nodemask as list for printing | ||
| 58 | * int nodelist_parse(buf, map) Parse ascii string as nodelist | 55 | * int nodelist_parse(buf, map) Parse ascii string as nodelist |
| 59 | * int node_remap(oldbit, old, new) newbit = map(old, new)(oldbit) | 56 | * int node_remap(oldbit, old, new) newbit = map(old, new)(oldbit) |
| 60 | * void nodes_remap(dst, src, old, new) *dst = map(old, new)(src) | 57 | * void nodes_remap(dst, src, old, new) *dst = map(old, new)(src) |
| @@ -98,6 +95,14 @@ | |||
| 98 | typedef struct { DECLARE_BITMAP(bits, MAX_NUMNODES); } nodemask_t; | 95 | typedef struct { DECLARE_BITMAP(bits, MAX_NUMNODES); } nodemask_t; |
| 99 | extern nodemask_t _unused_nodemask_arg_; | 96 | extern nodemask_t _unused_nodemask_arg_; |
| 100 | 97 | ||
| 98 | /** | ||
| 99 | * nodemask_pr_args - printf args to output a nodemask | ||
| 100 | * @maskp: nodemask to be printed | ||
| 101 | * | ||
| 102 | * Can be used to provide arguments for '%*pb[l]' when printing a nodemask. | ||
| 103 | */ | ||
| 104 | #define nodemask_pr_args(maskp) MAX_NUMNODES, (maskp)->bits | ||
| 105 | |||
| 101 | /* | 106 | /* |
| 102 | * The inline keyword gives the compiler room to decide to inline, or | 107 | * The inline keyword gives the compiler room to decide to inline, or |
| 103 | * not inline a function as it sees best. However, as these functions | 108 | * not inline a function as it sees best. However, as these functions |
| @@ -120,13 +125,13 @@ static inline void __node_clear(int node, volatile nodemask_t *dstp) | |||
| 120 | } | 125 | } |
| 121 | 126 | ||
| 122 | #define nodes_setall(dst) __nodes_setall(&(dst), MAX_NUMNODES) | 127 | #define nodes_setall(dst) __nodes_setall(&(dst), MAX_NUMNODES) |
| 123 | static inline void __nodes_setall(nodemask_t *dstp, int nbits) | 128 | static inline void __nodes_setall(nodemask_t *dstp, unsigned int nbits) |
| 124 | { | 129 | { |
| 125 | bitmap_fill(dstp->bits, nbits); | 130 | bitmap_fill(dstp->bits, nbits); |
| 126 | } | 131 | } |
| 127 | 132 | ||
| 128 | #define nodes_clear(dst) __nodes_clear(&(dst), MAX_NUMNODES) | 133 | #define nodes_clear(dst) __nodes_clear(&(dst), MAX_NUMNODES) |
| 129 | static inline void __nodes_clear(nodemask_t *dstp, int nbits) | 134 | static inline void __nodes_clear(nodemask_t *dstp, unsigned int nbits) |
| 130 | { | 135 | { |
| 131 | bitmap_zero(dstp->bits, nbits); | 136 | bitmap_zero(dstp->bits, nbits); |
| 132 | } | 137 | } |
| @@ -144,7 +149,7 @@ static inline int __node_test_and_set(int node, nodemask_t *addr) | |||
| 144 | #define nodes_and(dst, src1, src2) \ | 149 | #define nodes_and(dst, src1, src2) \ |
| 145 | __nodes_and(&(dst), &(src1), &(src2), MAX_NUMNODES) | 150 | __nodes_and(&(dst), &(src1), &(src2), MAX_NUMNODES) |
| 146 | static inline void __nodes_and(nodemask_t *dstp, const nodemask_t *src1p, | 151 | static inline void __nodes_and(nodemask_t *dstp, const nodemask_t *src1p, |
| 147 | const nodemask_t *src2p, int nbits) | 152 | const nodemask_t *src2p, unsigned int nbits) |
| 148 | { | 153 | { |
| 149 | bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits); | 154 | bitmap_and(dstp->bits, src1p->bits, src2p->bits, nbits); |
| 150 | } | 155 | } |
| @@ -152,7 +157,7 @@ static inline void __nodes_and(nodemask_t *dstp, const nodemask_t *src1p, | |||
| 152 | #define nodes_or(dst, src1, src2) \ | 157 | #define nodes_or(dst, src1, src2) \ |
| 153 | __nodes_or(&(dst), &(src1), &(src2), MAX_NUMNODES) | 158 | __nodes_or(&(dst), &(src1), &(src2), MAX_NUMNODES) |
| 154 | static inline void __nodes_or(nodemask_t *dstp, const nodemask_t *src1p, | 159 | static inline void __nodes_or(nodemask_t *dstp, const nodemask_t *src1p, |
| 155 | const nodemask_t *src2p, int nbits) | 160 | const nodemask_t *src2p, unsigned int nbits) |
| 156 | { | 161 | { |
| 157 | bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits); | 162 | bitmap_or(dstp->bits, src1p->bits, src2p->bits, nbits); |
| 158 | } | 163 | } |
| @@ -160,7 +165,7 @@ static inline void __nodes_or(nodemask_t *dstp, const nodemask_t *src1p, | |||
| 160 | #define nodes_xor(dst, src1, src2) \ | 165 | #define nodes_xor(dst, src1, src2) \ |
| 161 | __nodes_xor(&(dst), &(src1), &(src2), MAX_NUMNODES) | 166 | __nodes_xor(&(dst), &(src1), &(src2), MAX_NUMNODES) |
| 162 | static inline void __nodes_xor(nodemask_t *dstp, const nodemask_t *src1p, | 167 | static inline void __nodes_xor(nodemask_t *dstp, const nodemask_t *src1p, |
| 163 | const nodemask_t *src2p, int nbits) | 168 | const nodemask_t *src2p, unsigned int nbits) |
| 164 | { | 169 | { |
| 165 | bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits); | 170 | bitmap_xor(dstp->bits, src1p->bits, src2p->bits, nbits); |
| 166 | } | 171 | } |
| @@ -168,7 +173,7 @@ static inline void __nodes_xor(nodemask_t *dstp, const nodemask_t *src1p, | |||
| 168 | #define nodes_andnot(dst, src1, src2) \ | 173 | #define nodes_andnot(dst, src1, src2) \ |
| 169 | __nodes_andnot(&(dst), &(src1), &(src2), MAX_NUMNODES) | 174 | __nodes_andnot(&(dst), &(src1), &(src2), MAX_NUMNODES) |
| 170 | static inline void __nodes_andnot(nodemask_t *dstp, const nodemask_t *src1p, | 175 | static inline void __nodes_andnot(nodemask_t *dstp, const nodemask_t *src1p, |
| 171 | const nodemask_t *src2p, int nbits) | 176 | const nodemask_t *src2p, unsigned int nbits) |
| 172 | { | 177 | { |
| 173 | bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits); | 178 | bitmap_andnot(dstp->bits, src1p->bits, src2p->bits, nbits); |
| 174 | } | 179 | } |
| @@ -176,7 +181,7 @@ static inline void __nodes_andnot(nodemask_t *dstp, const nodemask_t *src1p, | |||
| 176 | #define nodes_complement(dst, src) \ | 181 | #define nodes_complement(dst, src) \ |
| 177 | __nodes_complement(&(dst), &(src), MAX_NUMNODES) | 182 | __nodes_complement(&(dst), &(src), MAX_NUMNODES) |
| 178 | static inline void __nodes_complement(nodemask_t *dstp, | 183 | static inline void __nodes_complement(nodemask_t *dstp, |
| 179 | const nodemask_t *srcp, int nbits) | 184 | const nodemask_t *srcp, unsigned int nbits) |
| 180 | { | 185 | { |
| 181 | bitmap_complement(dstp->bits, srcp->bits, nbits); | 186 | bitmap_complement(dstp->bits, srcp->bits, nbits); |
| 182 | } | 187 | } |
| @@ -184,7 +189,7 @@ static inline void __nodes_complement(nodemask_t *dstp, | |||
| 184 | #define nodes_equal(src1, src2) \ | 189 | #define nodes_equal(src1, src2) \ |
| 185 | __nodes_equal(&(src1), &(src2), MAX_NUMNODES) | 190 | __nodes_equal(&(src1), &(src2), MAX_NUMNODES) |
| 186 | static inline int __nodes_equal(const nodemask_t *src1p, | 191 | static inline int __nodes_equal(const nodemask_t *src1p, |
| 187 | const nodemask_t *src2p, int nbits) | 192 | const nodemask_t *src2p, unsigned int nbits) |
| 188 | { | 193 | { |
| 189 | return bitmap_equal(src1p->bits, src2p->bits, nbits); | 194 | return bitmap_equal(src1p->bits, src2p->bits, nbits); |
| 190 | } | 195 | } |
| @@ -192,7 +197,7 @@ static inline int __nodes_equal(const nodemask_t *src1p, | |||
| 192 | #define nodes_intersects(src1, src2) \ | 197 | #define nodes_intersects(src1, src2) \ |
| 193 | __nodes_intersects(&(src1), &(src2), MAX_NUMNODES) | 198 | __nodes_intersects(&(src1), &(src2), MAX_NUMNODES) |
| 194 | static inline int __nodes_intersects(const nodemask_t *src1p, | 199 | static inline int __nodes_intersects(const nodemask_t *src1p, |
| 195 | const nodemask_t *src2p, int nbits) | 200 | const nodemask_t *src2p, unsigned int nbits) |
| 196 | { | 201 | { |
| 197 | return bitmap_intersects(src1p->bits, src2p->bits, nbits); | 202 | return bitmap_intersects(src1p->bits, src2p->bits, nbits); |
| 198 | } | 203 | } |
| @@ -200,25 +205,25 @@ static inline int __nodes_intersects(const nodemask_t *src1p, | |||
| 200 | #define nodes_subset(src1, src2) \ | 205 | #define nodes_subset(src1, src2) \ |
| 201 | __nodes_subset(&(src1), &(src2), MAX_NUMNODES) | 206 | __nodes_subset(&(src1), &(src2), MAX_NUMNODES) |
| 202 | static inline int __nodes_subset(const nodemask_t *src1p, | 207 | static inline int __nodes_subset(const nodemask_t *src1p, |
| 203 | const nodemask_t *src2p, int nbits) | 208 | const nodemask_t *src2p, unsigned int nbits) |
| 204 | { | 209 | { |
| 205 | return bitmap_subset(src1p->bits, src2p->bits, nbits); | 210 | return bitmap_subset(src1p->bits, src2p->bits, nbits); |
| 206 | } | 211 | } |
| 207 | 212 | ||
| 208 | #define nodes_empty(src) __nodes_empty(&(src), MAX_NUMNODES) | 213 | #define nodes_empty(src) __nodes_empty(&(src), MAX_NUMNODES) |
| 209 | static inline int __nodes_empty(const nodemask_t *srcp, int nbits) | 214 | static inline int __nodes_empty(const nodemask_t *srcp, unsigned int nbits) |
| 210 | { | 215 | { |
| 211 | return bitmap_empty(srcp->bits, nbits); | 216 | return bitmap_empty(srcp->bits, nbits); |
| 212 | } | 217 | } |
| 213 | 218 | ||
| 214 | #define nodes_full(nodemask) __nodes_full(&(nodemask), MAX_NUMNODES) | 219 | #define nodes_full(nodemask) __nodes_full(&(nodemask), MAX_NUMNODES) |
| 215 | static inline int __nodes_full(const nodemask_t *srcp, int nbits) | 220 | static inline int __nodes_full(const nodemask_t *srcp, unsigned int nbits) |
| 216 | { | 221 | { |
| 217 | return bitmap_full(srcp->bits, nbits); | 222 | return bitmap_full(srcp->bits, nbits); |
| 218 | } | 223 | } |
| 219 | 224 | ||
| 220 | #define nodes_weight(nodemask) __nodes_weight(&(nodemask), MAX_NUMNODES) | 225 | #define nodes_weight(nodemask) __nodes_weight(&(nodemask), MAX_NUMNODES) |
| 221 | static inline int __nodes_weight(const nodemask_t *srcp, int nbits) | 226 | static inline int __nodes_weight(const nodemask_t *srcp, unsigned int nbits) |
| 222 | { | 227 | { |
| 223 | return bitmap_weight(srcp->bits, nbits); | 228 | return bitmap_weight(srcp->bits, nbits); |
| 224 | } | 229 | } |
| @@ -304,14 +309,6 @@ static inline int __first_unset_node(const nodemask_t *maskp) | |||
| 304 | 309 | ||
| 305 | #define nodes_addr(src) ((src).bits) | 310 | #define nodes_addr(src) ((src).bits) |
| 306 | 311 | ||
| 307 | #define nodemask_scnprintf(buf, len, src) \ | ||
| 308 | __nodemask_scnprintf((buf), (len), &(src), MAX_NUMNODES) | ||
| 309 | static inline int __nodemask_scnprintf(char *buf, int len, | ||
| 310 | const nodemask_t *srcp, int nbits) | ||
| 311 | { | ||
| 312 | return bitmap_scnprintf(buf, len, srcp->bits, nbits); | ||
| 313 | } | ||
| 314 | |||
| 315 | #define nodemask_parse_user(ubuf, ulen, dst) \ | 312 | #define nodemask_parse_user(ubuf, ulen, dst) \ |
| 316 | __nodemask_parse_user((ubuf), (ulen), &(dst), MAX_NUMNODES) | 313 | __nodemask_parse_user((ubuf), (ulen), &(dst), MAX_NUMNODES) |
| 317 | static inline int __nodemask_parse_user(const char __user *buf, int len, | 314 | static inline int __nodemask_parse_user(const char __user *buf, int len, |
| @@ -320,14 +317,6 @@ static inline int __nodemask_parse_user(const char __user *buf, int len, | |||
| 320 | return bitmap_parse_user(buf, len, dstp->bits, nbits); | 317 | return bitmap_parse_user(buf, len, dstp->bits, nbits); |
| 321 | } | 318 | } |
| 322 | 319 | ||
| 323 | #define nodelist_scnprintf(buf, len, src) \ | ||
| 324 | __nodelist_scnprintf((buf), (len), &(src), MAX_NUMNODES) | ||
| 325 | static inline int __nodelist_scnprintf(char *buf, int len, | ||
| 326 | const nodemask_t *srcp, int nbits) | ||
| 327 | { | ||
| 328 | return bitmap_scnlistprintf(buf, len, srcp->bits, nbits); | ||
| 329 | } | ||
| 330 | |||
| 331 | #define nodelist_parse(buf, dst) __nodelist_parse((buf), &(dst), MAX_NUMNODES) | 320 | #define nodelist_parse(buf, dst) __nodelist_parse((buf), &(dst), MAX_NUMNODES) |
| 332 | static inline int __nodelist_parse(const char *buf, nodemask_t *dstp, int nbits) | 321 | static inline int __nodelist_parse(const char *buf, nodemask_t *dstp, int nbits) |
| 333 | { | 322 | { |
diff --git a/include/linux/nvme.h b/include/linux/nvme.h index 258945fcabf1..19a5d4b23209 100644 --- a/include/linux/nvme.h +++ b/include/linux/nvme.h | |||
| @@ -132,13 +132,12 @@ struct nvme_ns { | |||
| 132 | * allocated to store the PRP list. | 132 | * allocated to store the PRP list. |
| 133 | */ | 133 | */ |
| 134 | struct nvme_iod { | 134 | struct nvme_iod { |
| 135 | void *private; /* For the use of the submitter of the I/O */ | 135 | unsigned long private; /* For the use of the submitter of the I/O */ |
| 136 | int npages; /* In the PRP list. 0 means small pool in use */ | 136 | int npages; /* In the PRP list. 0 means small pool in use */ |
| 137 | int offset; /* Of PRP list */ | 137 | int offset; /* Of PRP list */ |
| 138 | int nents; /* Used in scatterlist */ | 138 | int nents; /* Used in scatterlist */ |
| 139 | int length; /* Of data, in bytes */ | 139 | int length; /* Of data, in bytes */ |
| 140 | dma_addr_t first_dma; | 140 | dma_addr_t first_dma; |
| 141 | struct list_head node; | ||
| 142 | struct scatterlist sg[0]; | 141 | struct scatterlist sg[0]; |
| 143 | }; | 142 | }; |
| 144 | 143 | ||
diff --git a/include/linux/oom.h b/include/linux/oom.h index 76200984d1e2..d5771bed59c9 100644 --- a/include/linux/oom.h +++ b/include/linux/oom.h | |||
| @@ -47,6 +47,10 @@ static inline bool oom_task_origin(const struct task_struct *p) | |||
| 47 | return !!(p->signal->oom_flags & OOM_FLAG_ORIGIN); | 47 | return !!(p->signal->oom_flags & OOM_FLAG_ORIGIN); |
| 48 | } | 48 | } |
| 49 | 49 | ||
| 50 | extern void mark_tsk_oom_victim(struct task_struct *tsk); | ||
| 51 | |||
| 52 | extern void unmark_oom_victim(void); | ||
| 53 | |||
| 50 | extern unsigned long oom_badness(struct task_struct *p, | 54 | extern unsigned long oom_badness(struct task_struct *p, |
| 51 | struct mem_cgroup *memcg, const nodemask_t *nodemask, | 55 | struct mem_cgroup *memcg, const nodemask_t *nodemask, |
| 52 | unsigned long totalpages); | 56 | unsigned long totalpages); |
| @@ -68,22 +72,14 @@ extern enum oom_scan_t oom_scan_process_thread(struct task_struct *task, | |||
| 68 | unsigned long totalpages, const nodemask_t *nodemask, | 72 | unsigned long totalpages, const nodemask_t *nodemask, |
| 69 | bool force_kill); | 73 | bool force_kill); |
| 70 | 74 | ||
| 71 | extern void out_of_memory(struct zonelist *zonelist, gfp_t gfp_mask, | 75 | extern bool out_of_memory(struct zonelist *zonelist, gfp_t gfp_mask, |
| 72 | int order, nodemask_t *mask, bool force_kill); | 76 | int order, nodemask_t *mask, bool force_kill); |
| 73 | extern int register_oom_notifier(struct notifier_block *nb); | 77 | extern int register_oom_notifier(struct notifier_block *nb); |
| 74 | extern int unregister_oom_notifier(struct notifier_block *nb); | 78 | extern int unregister_oom_notifier(struct notifier_block *nb); |
| 75 | 79 | ||
| 76 | extern bool oom_killer_disabled; | 80 | extern bool oom_killer_disabled; |
| 77 | 81 | extern bool oom_killer_disable(void); | |
| 78 | static inline void oom_killer_disable(void) | 82 | extern void oom_killer_enable(void); |
| 79 | { | ||
| 80 | oom_killer_disabled = true; | ||
| 81 | } | ||
| 82 | |||
| 83 | static inline void oom_killer_enable(void) | ||
| 84 | { | ||
| 85 | oom_killer_disabled = false; | ||
| 86 | } | ||
| 87 | 83 | ||
| 88 | extern struct task_struct *find_lock_task_mm(struct task_struct *p); | 84 | extern struct task_struct *find_lock_task_mm(struct task_struct *p); |
| 89 | 85 | ||
diff --git a/include/linux/page_counter.h b/include/linux/page_counter.h index 955421575d16..17fa4f8de3a6 100644 --- a/include/linux/page_counter.h +++ b/include/linux/page_counter.h | |||
| @@ -41,7 +41,8 @@ int page_counter_try_charge(struct page_counter *counter, | |||
| 41 | struct page_counter **fail); | 41 | struct page_counter **fail); |
| 42 | void page_counter_uncharge(struct page_counter *counter, unsigned long nr_pages); | 42 | void page_counter_uncharge(struct page_counter *counter, unsigned long nr_pages); |
| 43 | int page_counter_limit(struct page_counter *counter, unsigned long limit); | 43 | int page_counter_limit(struct page_counter *counter, unsigned long limit); |
| 44 | int page_counter_memparse(const char *buf, unsigned long *nr_pages); | 44 | int page_counter_memparse(const char *buf, const char *max, |
| 45 | unsigned long *nr_pages); | ||
| 45 | 46 | ||
| 46 | static inline void page_counter_reset_watermark(struct page_counter *counter) | 47 | static inline void page_counter_reset_watermark(struct page_counter *counter) |
| 47 | { | 48 | { |
diff --git a/include/linux/page_ext.h b/include/linux/page_ext.h index d2a2c84c72d0..c42981cd99aa 100644 --- a/include/linux/page_ext.h +++ b/include/linux/page_ext.h | |||
| @@ -40,7 +40,7 @@ struct page_ext { | |||
| 40 | #ifdef CONFIG_PAGE_OWNER | 40 | #ifdef CONFIG_PAGE_OWNER |
| 41 | unsigned int order; | 41 | unsigned int order; |
| 42 | gfp_t gfp_mask; | 42 | gfp_t gfp_mask; |
| 43 | struct stack_trace trace; | 43 | unsigned int nr_entries; |
| 44 | unsigned long trace_entries[8]; | 44 | unsigned long trace_entries[8]; |
| 45 | #endif | 45 | #endif |
| 46 | }; | 46 | }; |
diff --git a/include/linux/perf_event.h b/include/linux/perf_event.h index 5cad0e6f3552..2b621982938d 100644 --- a/include/linux/perf_event.h +++ b/include/linux/perf_event.h | |||
| @@ -202,6 +202,13 @@ struct pmu { | |||
| 202 | */ | 202 | */ |
| 203 | int (*event_init) (struct perf_event *event); | 203 | int (*event_init) (struct perf_event *event); |
| 204 | 204 | ||
| 205 | /* | ||
| 206 | * Notification that the event was mapped or unmapped. Called | ||
| 207 | * in the context of the mapping task. | ||
| 208 | */ | ||
| 209 | void (*event_mapped) (struct perf_event *event); /*optional*/ | ||
| 210 | void (*event_unmapped) (struct perf_event *event); /*optional*/ | ||
| 211 | |||
| 205 | #define PERF_EF_START 0x01 /* start the counter when adding */ | 212 | #define PERF_EF_START 0x01 /* start the counter when adding */ |
| 206 | #define PERF_EF_RELOAD 0x02 /* reload the counter when starting */ | 213 | #define PERF_EF_RELOAD 0x02 /* reload the counter when starting */ |
| 207 | #define PERF_EF_UPDATE 0x04 /* update the counter when stopping */ | 214 | #define PERF_EF_UPDATE 0x04 /* update the counter when stopping */ |
| @@ -907,12 +914,22 @@ struct perf_pmu_events_attr { | |||
| 907 | const char *event_str; | 914 | const char *event_str; |
| 908 | }; | 915 | }; |
| 909 | 916 | ||
| 917 | ssize_t perf_event_sysfs_show(struct device *dev, struct device_attribute *attr, | ||
| 918 | char *page); | ||
| 919 | |||
| 910 | #define PMU_EVENT_ATTR(_name, _var, _id, _show) \ | 920 | #define PMU_EVENT_ATTR(_name, _var, _id, _show) \ |
| 911 | static struct perf_pmu_events_attr _var = { \ | 921 | static struct perf_pmu_events_attr _var = { \ |
| 912 | .attr = __ATTR(_name, 0444, _show, NULL), \ | 922 | .attr = __ATTR(_name, 0444, _show, NULL), \ |
| 913 | .id = _id, \ | 923 | .id = _id, \ |
| 914 | }; | 924 | }; |
| 915 | 925 | ||
| 926 | #define PMU_EVENT_ATTR_STRING(_name, _var, _str) \ | ||
| 927 | static struct perf_pmu_events_attr _var = { \ | ||
| 928 | .attr = __ATTR(_name, 0444, perf_event_sysfs_show, NULL), \ | ||
| 929 | .id = 0, \ | ||
| 930 | .event_str = _str, \ | ||
| 931 | }; | ||
| 932 | |||
| 916 | #define PMU_FORMAT_ATTR(_name, _format) \ | 933 | #define PMU_FORMAT_ATTR(_name, _format) \ |
| 917 | static ssize_t \ | 934 | static ssize_t \ |
| 918 | _name##_show(struct device *dev, \ | 935 | _name##_show(struct device *dev, \ |
diff --git a/include/linux/pid_namespace.h b/include/linux/pid_namespace.h index b9cf6c51b181..918b117a7cd3 100644 --- a/include/linux/pid_namespace.h +++ b/include/linux/pid_namespace.h | |||
| @@ -19,7 +19,7 @@ struct pidmap { | |||
| 19 | #define BITS_PER_PAGE_MASK (BITS_PER_PAGE-1) | 19 | #define BITS_PER_PAGE_MASK (BITS_PER_PAGE-1) |
| 20 | #define PIDMAP_ENTRIES ((PID_MAX_LIMIT+BITS_PER_PAGE-1)/BITS_PER_PAGE) | 20 | #define PIDMAP_ENTRIES ((PID_MAX_LIMIT+BITS_PER_PAGE-1)/BITS_PER_PAGE) |
| 21 | 21 | ||
| 22 | struct bsd_acct_struct; | 22 | struct fs_pin; |
| 23 | 23 | ||
| 24 | struct pid_namespace { | 24 | struct pid_namespace { |
| 25 | struct kref kref; | 25 | struct kref kref; |
| @@ -37,7 +37,7 @@ struct pid_namespace { | |||
| 37 | struct dentry *proc_thread_self; | 37 | struct dentry *proc_thread_self; |
| 38 | #endif | 38 | #endif |
| 39 | #ifdef CONFIG_BSD_PROCESS_ACCT | 39 | #ifdef CONFIG_BSD_PROCESS_ACCT |
| 40 | struct bsd_acct_struct *bacct; | 40 | struct fs_pin *bacct; |
| 41 | #endif | 41 | #endif |
| 42 | struct user_namespace *user_ns; | 42 | struct user_namespace *user_ns; |
| 43 | struct work_struct proc_work; | 43 | struct work_struct proc_work; |
diff --git a/include/linux/platform_data/cpuidle-exynos.h b/include/linux/platform_data/cpuidle-exynos.h new file mode 100644 index 000000000000..bfa40e4c5d5f --- /dev/null +++ b/include/linux/platform_data/cpuidle-exynos.h | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (c) 2014 Samsung Electronics Co., Ltd. | ||
| 3 | * http://www.samsung.com | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or modify | ||
| 6 | * it under the terms of the GNU General Public License version 2 as | ||
| 7 | * published by the Free Software Foundation. | ||
| 8 | */ | ||
| 9 | |||
| 10 | #ifndef __CPUIDLE_EXYNOS_H | ||
| 11 | #define __CPUIDLE_EXYNOS_H | ||
| 12 | |||
| 13 | struct cpuidle_exynos_data { | ||
| 14 | int (*cpu0_enter_aftr)(void); | ||
| 15 | int (*cpu1_powerdown)(void); | ||
| 16 | void (*pre_enter_aftr)(void); | ||
| 17 | void (*post_enter_aftr)(void); | ||
| 18 | }; | ||
| 19 | |||
| 20 | #endif | ||
diff --git a/include/linux/platform_data/ipmmu-vmsa.h b/include/linux/platform_data/ipmmu-vmsa.h deleted file mode 100644 index 5275b3ac6d37..000000000000 --- a/include/linux/platform_data/ipmmu-vmsa.h +++ /dev/null | |||
| @@ -1,24 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * IPMMU VMSA Platform Data | ||
| 3 | * | ||
| 4 | * Copyright (C) 2014 Renesas Electronics Corporation | ||
| 5 | * | ||
| 6 | * This program is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU General Public License as published by | ||
| 8 | * the Free Software Foundation; version 2 of the License. | ||
| 9 | */ | ||
| 10 | |||
| 11 | #ifndef __IPMMU_VMSA_H__ | ||
| 12 | #define __IPMMU_VMSA_H__ | ||
| 13 | |||
| 14 | struct ipmmu_vmsa_master { | ||
| 15 | const char *name; | ||
| 16 | unsigned int utlb; | ||
| 17 | }; | ||
| 18 | |||
| 19 | struct ipmmu_vmsa_platform_data { | ||
| 20 | const struct ipmmu_vmsa_master *masters; | ||
| 21 | unsigned int num_masters; | ||
| 22 | }; | ||
| 23 | |||
| 24 | #endif /* __IPMMU_VMSA_H__ */ | ||
diff --git a/include/linux/platform_data/tpm_stm_st33.h b/include/linux/platform_data/tpm_stm_st33.h new file mode 100644 index 000000000000..ff75310c0f47 --- /dev/null +++ b/include/linux/platform_data/tpm_stm_st33.h | |||
| @@ -0,0 +1,39 @@ | |||
| 1 | /* | ||
| 2 | * STMicroelectronics TPM I2C Linux driver for TPM ST33ZP24 | ||
| 3 | * Copyright (C) 2009, 2010 STMicroelectronics | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or modify | ||
| 6 | * it under the terms of the GNU General Public License as published by | ||
| 7 | * the Free Software Foundation; either version 2 of the License, or | ||
| 8 | * (at your option) any later version. | ||
| 9 | * | ||
| 10 | * This program is distributed in the hope that it will be useful, | ||
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 13 | * GNU General Public License for more details. | ||
| 14 | * | ||
| 15 | * You should have received a copy of the GNU General Public License | ||
| 16 | * along with this program; if not, see <http://www.gnu.org/licenses/>. | ||
| 17 | * | ||
| 18 | * STMicroelectronics version 1.2.0, Copyright (C) 2010 | ||
| 19 | * STMicroelectronics comes with ABSOLUTELY NO WARRANTY. | ||
| 20 | * This is free software, and you are welcome to redistribute it | ||
| 21 | * under certain conditions. | ||
| 22 | * | ||
| 23 | * @Author: Christophe RICARD tpmsupport@st.com | ||
| 24 | * | ||
| 25 | * @File: stm_st33_tpm.h | ||
| 26 | * | ||
| 27 | * @Date: 09/15/2010 | ||
| 28 | */ | ||
| 29 | #ifndef __STM_ST33_TPM_H__ | ||
| 30 | #define __STM_ST33_TPM_H__ | ||
| 31 | |||
| 32 | #define TPM_ST33_I2C "st33zp24-i2c" | ||
| 33 | #define TPM_ST33_SPI "st33zp24-spi" | ||
| 34 | |||
| 35 | struct st33zp24_platform_data { | ||
| 36 | int io_lpcpd; | ||
| 37 | }; | ||
| 38 | |||
| 39 | #endif /* __STM_ST33_TPM_H__ */ | ||
diff --git a/include/linux/pnp.h b/include/linux/pnp.h index 195aafc6cd07..6512e9cbc6d5 100644 --- a/include/linux/pnp.h +++ b/include/linux/pnp.h | |||
| @@ -12,6 +12,7 @@ | |||
| 12 | #include <linux/list.h> | 12 | #include <linux/list.h> |
| 13 | #include <linux/errno.h> | 13 | #include <linux/errno.h> |
| 14 | #include <linux/mod_devicetable.h> | 14 | #include <linux/mod_devicetable.h> |
| 15 | #include <linux/console.h> | ||
| 15 | 16 | ||
| 16 | #define PNP_NAME_LEN 50 | 17 | #define PNP_NAME_LEN 50 |
| 17 | 18 | ||
| @@ -309,15 +310,22 @@ struct pnp_fixup { | |||
| 309 | #define PNP_DISABLE 0x0004 | 310 | #define PNP_DISABLE 0x0004 |
| 310 | #define PNP_CONFIGURABLE 0x0008 | 311 | #define PNP_CONFIGURABLE 0x0008 |
| 311 | #define PNP_REMOVABLE 0x0010 | 312 | #define PNP_REMOVABLE 0x0010 |
| 313 | #define PNP_CONSOLE 0x0020 | ||
| 312 | 314 | ||
| 313 | #define pnp_can_read(dev) (((dev)->protocol->get) && \ | 315 | #define pnp_can_read(dev) (((dev)->protocol->get) && \ |
| 314 | ((dev)->capabilities & PNP_READ)) | 316 | ((dev)->capabilities & PNP_READ)) |
| 315 | #define pnp_can_write(dev) (((dev)->protocol->set) && \ | 317 | #define pnp_can_write(dev) (((dev)->protocol->set) && \ |
| 316 | ((dev)->capabilities & PNP_WRITE)) | 318 | ((dev)->capabilities & PNP_WRITE)) |
| 317 | #define pnp_can_disable(dev) (((dev)->protocol->disable) && \ | 319 | #define pnp_can_disable(dev) (((dev)->protocol->disable) && \ |
| 318 | ((dev)->capabilities & PNP_DISABLE)) | 320 | ((dev)->capabilities & PNP_DISABLE) && \ |
| 321 | (!((dev)->capabilities & PNP_CONSOLE) || \ | ||
| 322 | console_suspend_enabled)) | ||
| 319 | #define pnp_can_configure(dev) ((!(dev)->active) && \ | 323 | #define pnp_can_configure(dev) ((!(dev)->active) && \ |
| 320 | ((dev)->capabilities & PNP_CONFIGURABLE)) | 324 | ((dev)->capabilities & PNP_CONFIGURABLE)) |
| 325 | #define pnp_can_suspend(dev) (((dev)->protocol->suspend) && \ | ||
| 326 | (!((dev)->capabilities & PNP_CONSOLE) || \ | ||
| 327 | console_suspend_enabled)) | ||
| 328 | |||
| 321 | 329 | ||
| 322 | #ifdef CONFIG_ISAPNP | 330 | #ifdef CONFIG_ISAPNP |
| 323 | extern struct pnp_protocol isapnp_protocol; | 331 | extern struct pnp_protocol isapnp_protocol; |
diff --git a/include/linux/printk.h b/include/linux/printk.h index 4d5bf5726578..baa3f97d8ce8 100644 --- a/include/linux/printk.h +++ b/include/linux/printk.h | |||
| @@ -417,9 +417,9 @@ enum { | |||
| 417 | DUMP_PREFIX_ADDRESS, | 417 | DUMP_PREFIX_ADDRESS, |
| 418 | DUMP_PREFIX_OFFSET | 418 | DUMP_PREFIX_OFFSET |
| 419 | }; | 419 | }; |
| 420 | extern void hex_dump_to_buffer(const void *buf, size_t len, | 420 | extern int hex_dump_to_buffer(const void *buf, size_t len, int rowsize, |
| 421 | int rowsize, int groupsize, | 421 | int groupsize, char *linebuf, size_t linebuflen, |
| 422 | char *linebuf, size_t linebuflen, bool ascii); | 422 | bool ascii); |
| 423 | #ifdef CONFIG_PRINTK | 423 | #ifdef CONFIG_PRINTK |
| 424 | extern void print_hex_dump(const char *level, const char *prefix_str, | 424 | extern void print_hex_dump(const char *level, const char *prefix_str, |
| 425 | int prefix_type, int rowsize, int groupsize, | 425 | int prefix_type, int rowsize, int groupsize, |
diff --git a/include/linux/pstore.h b/include/linux/pstore.h index ece0c6bbfcc5..8884f6e507f7 100644 --- a/include/linux/pstore.h +++ b/include/linux/pstore.h | |||
| @@ -39,6 +39,7 @@ enum pstore_type_id { | |||
| 39 | PSTORE_TYPE_PPC_RTAS = 4, | 39 | PSTORE_TYPE_PPC_RTAS = 4, |
| 40 | PSTORE_TYPE_PPC_OF = 5, | 40 | PSTORE_TYPE_PPC_OF = 5, |
| 41 | PSTORE_TYPE_PPC_COMMON = 6, | 41 | PSTORE_TYPE_PPC_COMMON = 6, |
| 42 | PSTORE_TYPE_PMSG = 7, | ||
| 42 | PSTORE_TYPE_UNKNOWN = 255 | 43 | PSTORE_TYPE_UNKNOWN = 255 |
| 43 | }; | 44 | }; |
| 44 | 45 | ||
diff --git a/include/linux/pstore_ram.h b/include/linux/pstore_ram.h index 4af3fdc85b01..9c9d6c154c8e 100644 --- a/include/linux/pstore_ram.h +++ b/include/linux/pstore_ram.h | |||
| @@ -81,6 +81,7 @@ struct ramoops_platform_data { | |||
| 81 | unsigned long record_size; | 81 | unsigned long record_size; |
| 82 | unsigned long console_size; | 82 | unsigned long console_size; |
| 83 | unsigned long ftrace_size; | 83 | unsigned long ftrace_size; |
| 84 | unsigned long pmsg_size; | ||
| 84 | int dump_oops; | 85 | int dump_oops; |
| 85 | struct persistent_ram_ecc_info ecc_info; | 86 | struct persistent_ram_ecc_info ecc_info; |
| 86 | }; | 87 | }; |
diff --git a/include/linux/rbtree.h b/include/linux/rbtree.h index 57e75ae9910f..fb31765e935a 100644 --- a/include/linux/rbtree.h +++ b/include/linux/rbtree.h | |||
| @@ -51,7 +51,7 @@ struct rb_root { | |||
| 51 | 51 | ||
| 52 | #define RB_EMPTY_ROOT(root) ((root)->rb_node == NULL) | 52 | #define RB_EMPTY_ROOT(root) ((root)->rb_node == NULL) |
| 53 | 53 | ||
| 54 | /* 'empty' nodes are nodes that are known not to be inserted in an rbree */ | 54 | /* 'empty' nodes are nodes that are known not to be inserted in an rbtree */ |
| 55 | #define RB_EMPTY_NODE(node) \ | 55 | #define RB_EMPTY_NODE(node) \ |
| 56 | ((node)->__rb_parent_color == (unsigned long)(node)) | 56 | ((node)->__rb_parent_color == (unsigned long)(node)) |
| 57 | #define RB_CLEAR_NODE(node) \ | 57 | #define RB_CLEAR_NODE(node) \ |
diff --git a/include/linux/rmap.h b/include/linux/rmap.h index b38f559130d5..c4c559a45dc8 100644 --- a/include/linux/rmap.h +++ b/include/linux/rmap.h | |||
| @@ -198,7 +198,7 @@ int page_referenced(struct page *, int is_locked, | |||
| 198 | int try_to_unmap(struct page *, enum ttu_flags flags); | 198 | int try_to_unmap(struct page *, enum ttu_flags flags); |
| 199 | 199 | ||
| 200 | /* | 200 | /* |
| 201 | * Called from mm/filemap_xip.c to unmap empty zero page | 201 | * Used by uprobes to replace a userspace page safely |
| 202 | */ | 202 | */ |
| 203 | pte_t *__page_check_address(struct page *, struct mm_struct *, | 203 | pte_t *__page_check_address(struct page *, struct mm_struct *, |
| 204 | unsigned long, spinlock_t **, int); | 204 | unsigned long, spinlock_t **, int); |
diff --git a/include/linux/rtc/ds1685.h b/include/linux/rtc/ds1685.h new file mode 100644 index 000000000000..e6337a56d741 --- /dev/null +++ b/include/linux/rtc/ds1685.h | |||
| @@ -0,0 +1,375 @@ | |||
| 1 | /* | ||
| 2 | * Definitions for the registers, addresses, and platform data of the | ||
| 3 | * DS1685/DS1687-series RTC chips. | ||
| 4 | * | ||
| 5 | * This Driver also works for the DS17X85/DS17X87 RTC chips. Functionally | ||
| 6 | * similar to the DS1685/DS1687, they support a few extra features which | ||
| 7 | * include larger, battery-backed NV-SRAM, burst-mode access, and an RTC | ||
| 8 | * write counter. | ||
| 9 | * | ||
| 10 | * Copyright (C) 2011-2014 Joshua Kinard <kumba@gentoo.org>. | ||
| 11 | * Copyright (C) 2009 Matthias Fuchs <matthias.fuchs@esd-electronics.com>. | ||
| 12 | * | ||
| 13 | * References: | ||
| 14 | * DS1685/DS1687 3V/5V Real-Time Clocks, 19-5215, Rev 4/10. | ||
| 15 | * DS17x85/DS17x87 3V/5V Real-Time Clocks, 19-5222, Rev 4/10. | ||
| 16 | * DS1689/DS1693 3V/5V Serialized Real-Time Clocks, Rev 112105. | ||
| 17 | * Application Note 90, Using the Multiplex Bus RTC Extended Features. | ||
| 18 | * | ||
| 19 | * This program is free software; you can redistribute it and/or modify | ||
| 20 | * it under the terms of the GNU General Public License version 2 as | ||
| 21 | * published by the Free Software Foundation. | ||
| 22 | */ | ||
| 23 | |||
| 24 | #ifndef _LINUX_RTC_DS1685_H_ | ||
| 25 | #define _LINUX_RTC_DS1685_H_ | ||
| 26 | |||
| 27 | #include <linux/rtc.h> | ||
| 28 | #include <linux/platform_device.h> | ||
| 29 | #include <linux/workqueue.h> | ||
| 30 | |||
| 31 | /** | ||
| 32 | * struct ds1685_priv - DS1685 private data structure. | ||
| 33 | * @dev: pointer to the rtc_device structure. | ||
| 34 | * @regs: iomapped base address pointer of the RTC registers. | ||
| 35 | * @regstep: padding/step size between registers (optional). | ||
| 36 | * @baseaddr: base address of the RTC device. | ||
| 37 | * @size: resource size. | ||
| 38 | * @lock: private lock variable for spin locking/unlocking. | ||
| 39 | * @work: private workqueue. | ||
| 40 | * @irq: IRQ number assigned to the RTC device. | ||
| 41 | * @prepare_poweroff: pointer to platform pre-poweroff function. | ||
| 42 | * @wake_alarm: pointer to platform wake alarm function. | ||
| 43 | * @post_ram_clear: pointer to platform post ram-clear function. | ||
| 44 | */ | ||
| 45 | struct ds1685_priv { | ||
| 46 | struct rtc_device *dev; | ||
| 47 | void __iomem *regs; | ||
| 48 | u32 regstep; | ||
| 49 | resource_size_t baseaddr; | ||
| 50 | size_t size; | ||
| 51 | spinlock_t lock; | ||
| 52 | struct work_struct work; | ||
| 53 | int irq_num; | ||
| 54 | bool bcd_mode; | ||
| 55 | bool no_irq; | ||
| 56 | bool uie_unsupported; | ||
| 57 | bool alloc_io_resources; | ||
| 58 | u8 (*read)(struct ds1685_priv *, int); | ||
| 59 | void (*write)(struct ds1685_priv *, int, u8); | ||
| 60 | void (*prepare_poweroff)(void); | ||
| 61 | void (*wake_alarm)(void); | ||
| 62 | void (*post_ram_clear)(void); | ||
| 63 | }; | ||
| 64 | |||
| 65 | |||
| 66 | /** | ||
| 67 | * struct ds1685_rtc_platform_data - platform data structure. | ||
| 68 | * @plat_prepare_poweroff: platform-specific pre-poweroff function. | ||
| 69 | * @plat_wake_alarm: platform-specific wake alarm function. | ||
| 70 | * @plat_post_ram_clear: platform-specific post ram-clear function. | ||
| 71 | * | ||
| 72 | * If your platform needs to use a custom padding/step size between | ||
| 73 | * registers, or uses one or more of the extended interrupts and needs special | ||
| 74 | * handling, then include this header file in your platform definition and | ||
| 75 | * set regstep and the plat_* pointers as appropriate. | ||
| 76 | */ | ||
| 77 | struct ds1685_rtc_platform_data { | ||
| 78 | const u32 regstep; | ||
| 79 | const bool bcd_mode; | ||
| 80 | const bool no_irq; | ||
| 81 | const bool uie_unsupported; | ||
| 82 | const bool alloc_io_resources; | ||
| 83 | u8 (*plat_read)(struct ds1685_priv *, int); | ||
| 84 | void (*plat_write)(struct ds1685_priv *, int, u8); | ||
| 85 | void (*plat_prepare_poweroff)(void); | ||
| 86 | void (*plat_wake_alarm)(void); | ||
| 87 | void (*plat_post_ram_clear)(void); | ||
| 88 | }; | ||
| 89 | |||
| 90 | |||
| 91 | /* | ||
| 92 | * Time Registers. | ||
| 93 | */ | ||
| 94 | #define RTC_SECS 0x00 /* Seconds 00-59 */ | ||
| 95 | #define RTC_SECS_ALARM 0x01 /* Alarm Seconds 00-59 */ | ||
| 96 | #define RTC_MINS 0x02 /* Minutes 00-59 */ | ||
| 97 | #define RTC_MINS_ALARM 0x03 /* Alarm Minutes 00-59 */ | ||
| 98 | #define RTC_HRS 0x04 /* Hours 01-12 AM/PM || 00-23 */ | ||
| 99 | #define RTC_HRS_ALARM 0x05 /* Alarm Hours 01-12 AM/PM || 00-23 */ | ||
| 100 | #define RTC_WDAY 0x06 /* Day of Week 01-07 */ | ||
| 101 | #define RTC_MDAY 0x07 /* Day of Month 01-31 */ | ||
| 102 | #define RTC_MONTH 0x08 /* Month 01-12 */ | ||
| 103 | #define RTC_YEAR 0x09 /* Year 00-99 */ | ||
| 104 | #define RTC_CENTURY 0x48 /* Century 00-99 */ | ||
| 105 | #define RTC_MDAY_ALARM 0x49 /* Alarm Day of Month 01-31 */ | ||
| 106 | |||
| 107 | |||
| 108 | /* | ||
| 109 | * Bit masks for the Time registers in BCD Mode (DM = 0). | ||
| 110 | */ | ||
| 111 | #define RTC_SECS_BCD_MASK 0x7f /* - x x x x x x x */ | ||
| 112 | #define RTC_MINS_BCD_MASK 0x7f /* - x x x x x x x */ | ||
| 113 | #define RTC_HRS_12_BCD_MASK 0x1f /* - - - x x x x x */ | ||
| 114 | #define RTC_HRS_24_BCD_MASK 0x3f /* - - x x x x x x */ | ||
| 115 | #define RTC_MDAY_BCD_MASK 0x3f /* - - x x x x x x */ | ||
| 116 | #define RTC_MONTH_BCD_MASK 0x1f /* - - - x x x x x */ | ||
| 117 | #define RTC_YEAR_BCD_MASK 0xff /* x x x x x x x x */ | ||
| 118 | |||
| 119 | /* | ||
| 120 | * Bit masks for the Time registers in BIN Mode (DM = 1). | ||
| 121 | */ | ||
| 122 | #define RTC_SECS_BIN_MASK 0x3f /* - - x x x x x x */ | ||
| 123 | #define RTC_MINS_BIN_MASK 0x3f /* - - x x x x x x */ | ||
| 124 | #define RTC_HRS_12_BIN_MASK 0x0f /* - - - - x x x x */ | ||
| 125 | #define RTC_HRS_24_BIN_MASK 0x1f /* - - - x x x x x */ | ||
| 126 | #define RTC_MDAY_BIN_MASK 0x1f /* - - - x x x x x */ | ||
| 127 | #define RTC_MONTH_BIN_MASK 0x0f /* - - - - x x x x */ | ||
| 128 | #define RTC_YEAR_BIN_MASK 0x7f /* - x x x x x x x */ | ||
| 129 | |||
| 130 | /* | ||
| 131 | * Bit masks common for the Time registers in BCD or BIN Mode. | ||
| 132 | */ | ||
| 133 | #define RTC_WDAY_MASK 0x07 /* - - - - - x x x */ | ||
| 134 | #define RTC_CENTURY_MASK 0xff /* x x x x x x x x */ | ||
| 135 | #define RTC_MDAY_ALARM_MASK 0xff /* x x x x x x x x */ | ||
| 136 | #define RTC_HRS_AMPM_MASK BIT(7) /* Mask for the AM/PM bit */ | ||
| 137 | |||
| 138 | |||
| 139 | |||
| 140 | /* | ||
| 141 | * Control Registers. | ||
| 142 | */ | ||
| 143 | #define RTC_CTRL_A 0x0a /* Control Register A */ | ||
| 144 | #define RTC_CTRL_B 0x0b /* Control Register B */ | ||
| 145 | #define RTC_CTRL_C 0x0c /* Control Register C */ | ||
| 146 | #define RTC_CTRL_D 0x0d /* Control Register D */ | ||
| 147 | #define RTC_EXT_CTRL_4A 0x4a /* Extended Control Register 4A */ | ||
| 148 | #define RTC_EXT_CTRL_4B 0x4b /* Extended Control Register 4B */ | ||
| 149 | |||
| 150 | |||
| 151 | /* | ||
| 152 | * Bit names in Control Register A. | ||
| 153 | */ | ||
| 154 | #define RTC_CTRL_A_UIP BIT(7) /* Update In Progress */ | ||
| 155 | #define RTC_CTRL_A_DV2 BIT(6) /* Countdown Chain */ | ||
| 156 | #define RTC_CTRL_A_DV1 BIT(5) /* Oscillator Enable */ | ||
| 157 | #define RTC_CTRL_A_DV0 BIT(4) /* Bank Select */ | ||
| 158 | #define RTC_CTRL_A_RS2 BIT(2) /* Rate-Selection Bit 2 */ | ||
| 159 | #define RTC_CTRL_A_RS3 BIT(3) /* Rate-Selection Bit 3 */ | ||
| 160 | #define RTC_CTRL_A_RS1 BIT(1) /* Rate-Selection Bit 1 */ | ||
| 161 | #define RTC_CTRL_A_RS0 BIT(0) /* Rate-Selection Bit 0 */ | ||
| 162 | #define RTC_CTRL_A_RS_MASK 0x0f /* RS3 + RS2 + RS1 + RS0 */ | ||
| 163 | |||
| 164 | /* | ||
| 165 | * Bit names in Control Register B. | ||
| 166 | */ | ||
| 167 | #define RTC_CTRL_B_SET BIT(7) /* SET Bit */ | ||
| 168 | #define RTC_CTRL_B_PIE BIT(6) /* Periodic-Interrupt Enable */ | ||
| 169 | #define RTC_CTRL_B_AIE BIT(5) /* Alarm-Interrupt Enable */ | ||
| 170 | #define RTC_CTRL_B_UIE BIT(4) /* Update-Ended Interrupt-Enable */ | ||
| 171 | #define RTC_CTRL_B_SQWE BIT(3) /* Square-Wave Enable */ | ||
| 172 | #define RTC_CTRL_B_DM BIT(2) /* Data Mode */ | ||
| 173 | #define RTC_CTRL_B_2412 BIT(1) /* 12-Hr/24-Hr Mode */ | ||
| 174 | #define RTC_CTRL_B_DSE BIT(0) /* Daylight Savings Enable */ | ||
| 175 | #define RTC_CTRL_B_PAU_MASK 0x70 /* PIE + AIE + UIE */ | ||
| 176 | |||
| 177 | |||
| 178 | /* | ||
| 179 | * Bit names in Control Register C. | ||
| 180 | * | ||
| 181 | * BIT(0), BIT(1), BIT(2), & BIT(3) are unused, always return 0, and cannot | ||
| 182 | * be written to. | ||
| 183 | */ | ||
| 184 | #define RTC_CTRL_C_IRQF BIT(7) /* Interrupt-Request Flag */ | ||
| 185 | #define RTC_CTRL_C_PF BIT(6) /* Periodic-Interrupt Flag */ | ||
| 186 | #define RTC_CTRL_C_AF BIT(5) /* Alarm-Interrupt Flag */ | ||
| 187 | #define RTC_CTRL_C_UF BIT(4) /* Update-Ended Interrupt Flag */ | ||
| 188 | #define RTC_CTRL_C_PAU_MASK 0x70 /* PF + AF + UF */ | ||
| 189 | |||
| 190 | |||
| 191 | /* | ||
| 192 | * Bit names in Control Register D. | ||
| 193 | * | ||
| 194 | * BIT(0) through BIT(6) are unused, always return 0, and cannot | ||
| 195 | * be written to. | ||
| 196 | */ | ||
| 197 | #define RTC_CTRL_D_VRT BIT(7) /* Valid RAM and Time */ | ||
| 198 | |||
| 199 | |||
| 200 | /* | ||
| 201 | * Bit names in Extended Control Register 4A. | ||
| 202 | * | ||
| 203 | * On the DS1685/DS1687/DS1689/DS1693, BIT(4) and BIT(5) are reserved for | ||
| 204 | * future use. They can be read from and written to, but have no effect | ||
| 205 | * on the RTC's operation. | ||
| 206 | * | ||
| 207 | * On the DS17x85/DS17x87, BIT(5) is Burst-Mode Enable (BME), and allows | ||
| 208 | * access to the extended NV-SRAM by automatically incrementing the address | ||
| 209 | * register when they are read from or written to. | ||
| 210 | */ | ||
| 211 | #define RTC_CTRL_4A_VRT2 BIT(7) /* Auxillary Battery Status */ | ||
| 212 | #define RTC_CTRL_4A_INCR BIT(6) /* Increment-in-Progress Status */ | ||
| 213 | #define RTC_CTRL_4A_PAB BIT(3) /* Power-Active Bar Control */ | ||
| 214 | #define RTC_CTRL_4A_RF BIT(2) /* RAM-Clear Flag */ | ||
| 215 | #define RTC_CTRL_4A_WF BIT(1) /* Wake-Up Alarm Flag */ | ||
| 216 | #define RTC_CTRL_4A_KF BIT(0) /* Kickstart Flag */ | ||
| 217 | #if !defined(CONFIG_RTC_DRV_DS1685) && !defined(CONFIG_RTC_DRV_DS1689) | ||
| 218 | #define RTC_CTRL_4A_BME BIT(5) /* Burst-Mode Enable */ | ||
| 219 | #endif | ||
| 220 | #define RTC_CTRL_4A_RWK_MASK 0x07 /* RF + WF + KF */ | ||
| 221 | |||
| 222 | |||
| 223 | /* | ||
| 224 | * Bit names in Extended Control Register 4B. | ||
| 225 | */ | ||
| 226 | #define RTC_CTRL_4B_ABE BIT(7) /* Auxillary Battery Enable */ | ||
| 227 | #define RTC_CTRL_4B_E32K BIT(6) /* Enable 32.768Hz on SQW Pin */ | ||
| 228 | #define RTC_CTRL_4B_CS BIT(5) /* Crystal Select */ | ||
| 229 | #define RTC_CTRL_4B_RCE BIT(4) /* RAM Clear-Enable */ | ||
| 230 | #define RTC_CTRL_4B_PRS BIT(3) /* PAB Reset-Select */ | ||
| 231 | #define RTC_CTRL_4B_RIE BIT(2) /* RAM Clear-Interrupt Enable */ | ||
| 232 | #define RTC_CTRL_4B_WIE BIT(1) /* Wake-Up Alarm-Interrupt Enable */ | ||
| 233 | #define RTC_CTRL_4B_KSE BIT(0) /* Kickstart Interrupt-Enable */ | ||
| 234 | #define RTC_CTRL_4B_RWK_MASK 0x07 /* RIE + WIE + KSE */ | ||
| 235 | |||
| 236 | |||
| 237 | /* | ||
| 238 | * Misc register names in Bank 1. | ||
| 239 | * | ||
| 240 | * The DV0 bit in Control Register A must be set to 1 for these registers | ||
| 241 | * to become available, including Extended Control Registers 4A & 4B. | ||
| 242 | */ | ||
| 243 | #define RTC_BANK1_SSN_MODEL 0x40 /* Model Number */ | ||
| 244 | #define RTC_BANK1_SSN_BYTE_1 0x41 /* 1st Byte of Serial Number */ | ||
| 245 | #define RTC_BANK1_SSN_BYTE_2 0x42 /* 2nd Byte of Serial Number */ | ||
| 246 | #define RTC_BANK1_SSN_BYTE_3 0x43 /* 3rd Byte of Serial Number */ | ||
| 247 | #define RTC_BANK1_SSN_BYTE_4 0x44 /* 4th Byte of Serial Number */ | ||
| 248 | #define RTC_BANK1_SSN_BYTE_5 0x45 /* 5th Byte of Serial Number */ | ||
| 249 | #define RTC_BANK1_SSN_BYTE_6 0x46 /* 6th Byte of Serial Number */ | ||
| 250 | #define RTC_BANK1_SSN_CRC 0x47 /* Serial CRC Byte */ | ||
| 251 | #define RTC_BANK1_RAM_DATA_PORT 0x53 /* Extended RAM Data Port */ | ||
| 252 | |||
| 253 | |||
| 254 | /* | ||
| 255 | * Model-specific registers in Bank 1. | ||
| 256 | * | ||
| 257 | * The addresses below differ depending on the model of the RTC chip | ||
| 258 | * selected in the kernel configuration. Not all of these features are | ||
| 259 | * supported in the main driver at present. | ||
| 260 | * | ||
| 261 | * DS1685/DS1687 - Extended NV-SRAM address (LSB only). | ||
| 262 | * DS1689/DS1693 - Vcc, Vbat, Pwr Cycle Counters & Customer-specific S/N. | ||
| 263 | * DS17x85/DS17x87 - Extended NV-SRAM addresses (MSB & LSB) & Write counter. | ||
| 264 | */ | ||
| 265 | #if defined(CONFIG_RTC_DRV_DS1685) | ||
| 266 | #define RTC_BANK1_RAM_ADDR 0x50 /* NV-SRAM Addr */ | ||
| 267 | #elif defined(CONFIG_RTC_DRV_DS1689) | ||
| 268 | #define RTC_BANK1_VCC_CTR_LSB 0x54 /* Vcc Counter Addr (LSB) */ | ||
| 269 | #define RTC_BANK1_VCC_CTR_MSB 0x57 /* Vcc Counter Addr (MSB) */ | ||
| 270 | #define RTC_BANK1_VBAT_CTR_LSB 0x58 /* Vbat Counter Addr (LSB) */ | ||
| 271 | #define RTC_BANK1_VBAT_CTR_MSB 0x5b /* Vbat Counter Addr (MSB) */ | ||
| 272 | #define RTC_BANK1_PWR_CTR_LSB 0x5c /* Pwr Cycle Counter Addr (LSB) */ | ||
| 273 | #define RTC_BANK1_PWR_CTR_MSB 0x5d /* Pwr Cycle Counter Addr (MSB) */ | ||
| 274 | #define RTC_BANK1_UNIQ_SN 0x60 /* Customer-specific S/N */ | ||
| 275 | #else /* DS17x85/DS17x87 */ | ||
| 276 | #define RTC_BANK1_RAM_ADDR_LSB 0x50 /* NV-SRAM Addr (LSB) */ | ||
| 277 | #define RTC_BANK1_RAM_ADDR_MSB 0x51 /* NV-SRAM Addr (MSB) */ | ||
| 278 | #define RTC_BANK1_WRITE_CTR 0x5e /* RTC Write Counter */ | ||
| 279 | #endif | ||
| 280 | |||
| 281 | |||
| 282 | /* | ||
| 283 | * Model numbers. | ||
| 284 | * | ||
| 285 | * The DS1688/DS1691 and DS1689/DS1693 chips share the same model number | ||
| 286 | * and the manual doesn't indicate any major differences. As such, they | ||
| 287 | * are regarded as the same chip in this driver. | ||
| 288 | */ | ||
| 289 | #define RTC_MODEL_DS1685 0x71 /* DS1685/DS1687 */ | ||
| 290 | #define RTC_MODEL_DS17285 0x72 /* DS17285/DS17287 */ | ||
| 291 | #define RTC_MODEL_DS1689 0x73 /* DS1688/DS1691/DS1689/DS1693 */ | ||
| 292 | #define RTC_MODEL_DS17485 0x74 /* DS17485/DS17487 */ | ||
| 293 | #define RTC_MODEL_DS17885 0x78 /* DS17885/DS17887 */ | ||
| 294 | |||
| 295 | |||
| 296 | /* | ||
| 297 | * Periodic Interrupt Rates / Square-Wave Output Frequency | ||
| 298 | * | ||
| 299 | * Periodic rates are selected by setting the RS3-RS0 bits in Control | ||
| 300 | * Register A and enabled via either the E32K bit in Extended Control | ||
| 301 | * Register 4B or the SQWE bit in Control Register B. | ||
| 302 | * | ||
| 303 | * E32K overrides the settings of RS3-RS0 and outputs a frequency of 32768Hz | ||
| 304 | * on the SQW pin of the RTC chip. While there are 16 possible selections, | ||
| 305 | * the 1-of-16 decoder is only able to divide the base 32768Hz signal into 13 | ||
| 306 | * smaller frequencies. The values 0x01 and 0x02 are not used and are | ||
| 307 | * synonymous with 0x08 and 0x09, respectively. | ||
| 308 | * | ||
| 309 | * When E32K is set to a logic 1, periodic interrupts are disabled and reading | ||
| 310 | * /dev/rtc will return -EINVAL. This also applies if the periodic interrupt | ||
| 311 | * frequency is set to 0Hz. | ||
| 312 | * | ||
| 313 | * Not currently used by the rtc-ds1685 driver because the RTC core removed | ||
| 314 | * support for hardware-generated periodic-interrupts in favour of | ||
| 315 | * hrtimer-generated interrupts. But these defines are kept around for use | ||
| 316 | * in userland, as documentation to the hardware, and possible future use if | ||
| 317 | * hardware-generated periodic interrupts are ever added back. | ||
| 318 | */ | ||
| 319 | /* E32K RS3 RS2 RS1 RS0 */ | ||
| 320 | #define RTC_SQW_8192HZ 0x03 /* 0 0 0 1 1 */ | ||
| 321 | #define RTC_SQW_4096HZ 0x04 /* 0 0 1 0 0 */ | ||
| 322 | #define RTC_SQW_2048HZ 0x05 /* 0 0 1 0 1 */ | ||
| 323 | #define RTC_SQW_1024HZ 0x06 /* 0 0 1 1 0 */ | ||
| 324 | #define RTC_SQW_512HZ 0x07 /* 0 0 1 1 1 */ | ||
| 325 | #define RTC_SQW_256HZ 0x08 /* 0 1 0 0 0 */ | ||
| 326 | #define RTC_SQW_128HZ 0x09 /* 0 1 0 0 1 */ | ||
| 327 | #define RTC_SQW_64HZ 0x0a /* 0 1 0 1 0 */ | ||
| 328 | #define RTC_SQW_32HZ 0x0b /* 0 1 0 1 1 */ | ||
| 329 | #define RTC_SQW_16HZ 0x0c /* 0 1 1 0 0 */ | ||
| 330 | #define RTC_SQW_8HZ 0x0d /* 0 1 1 0 1 */ | ||
| 331 | #define RTC_SQW_4HZ 0x0e /* 0 1 1 1 0 */ | ||
| 332 | #define RTC_SQW_2HZ 0x0f /* 0 1 1 1 1 */ | ||
| 333 | #define RTC_SQW_0HZ 0x00 /* 0 0 0 0 0 */ | ||
| 334 | #define RTC_SQW_32768HZ 32768 /* 1 - - - - */ | ||
| 335 | #define RTC_MAX_USER_FREQ 8192 | ||
| 336 | |||
| 337 | |||
| 338 | /* | ||
| 339 | * NVRAM data & addresses: | ||
| 340 | * - 50 bytes of NVRAM are available just past the clock registers. | ||
| 341 | * - 64 additional bytes are available in Bank0. | ||
| 342 | * | ||
| 343 | * Extended, battery-backed NV-SRAM: | ||
| 344 | * - DS1685/DS1687 - 128 bytes. | ||
| 345 | * - DS1689/DS1693 - 0 bytes. | ||
| 346 | * - DS17285/DS17287 - 2048 bytes. | ||
| 347 | * - DS17485/DS17487 - 4096 bytes. | ||
| 348 | * - DS17885/DS17887 - 8192 bytes. | ||
| 349 | */ | ||
| 350 | #define NVRAM_TIME_BASE 0x0e /* NVRAM Addr in Time regs */ | ||
| 351 | #define NVRAM_BANK0_BASE 0x40 /* NVRAM Addr in Bank0 regs */ | ||
| 352 | #define NVRAM_SZ_TIME 50 | ||
| 353 | #define NVRAM_SZ_BANK0 64 | ||
| 354 | #if defined(CONFIG_RTC_DRV_DS1685) | ||
| 355 | # define NVRAM_SZ_EXTND 128 | ||
| 356 | #elif defined(CONFIG_RTC_DRV_DS1689) | ||
| 357 | # define NVRAM_SZ_EXTND 0 | ||
| 358 | #elif defined(CONFIG_RTC_DRV_DS17285) | ||
| 359 | # define NVRAM_SZ_EXTND 2048 | ||
| 360 | #elif defined(CONFIG_RTC_DRV_DS17485) | ||
| 361 | # define NVRAM_SZ_EXTND 4096 | ||
| 362 | #elif defined(CONFIG_RTC_DRV_DS17885) | ||
| 363 | # define NVRAM_SZ_EXTND 8192 | ||
| 364 | #endif | ||
| 365 | #define NVRAM_TOTAL_SZ_BANK0 (NVRAM_SZ_TIME + NVRAM_SZ_BANK0) | ||
| 366 | #define NVRAM_TOTAL_SZ (NVRAM_TOTAL_SZ_BANK0 + NVRAM_SZ_EXTND) | ||
| 367 | |||
| 368 | |||
| 369 | /* | ||
| 370 | * Function Prototypes. | ||
| 371 | */ | ||
| 372 | extern void __noreturn | ||
| 373 | ds1685_rtc_poweroff(struct platform_device *pdev); | ||
| 374 | |||
| 375 | #endif /* _LINUX_RTC_DS1685_H_ */ | ||
diff --git a/include/linux/sched.h b/include/linux/sched.h index 8db31ef98d2f..41c60e5302d7 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
| @@ -1370,6 +1370,8 @@ struct task_struct { | |||
| 1370 | 1370 | ||
| 1371 | unsigned long atomic_flags; /* Flags needing atomic access. */ | 1371 | unsigned long atomic_flags; /* Flags needing atomic access. */ |
| 1372 | 1372 | ||
| 1373 | struct restart_block restart_block; | ||
| 1374 | |||
| 1373 | pid_t pid; | 1375 | pid_t pid; |
| 1374 | pid_t tgid; | 1376 | pid_t tgid; |
| 1375 | 1377 | ||
| @@ -1662,6 +1664,9 @@ struct task_struct { | |||
| 1662 | unsigned long timer_slack_ns; | 1664 | unsigned long timer_slack_ns; |
| 1663 | unsigned long default_timer_slack_ns; | 1665 | unsigned long default_timer_slack_ns; |
| 1664 | 1666 | ||
| 1667 | #ifdef CONFIG_KASAN | ||
| 1668 | unsigned int kasan_depth; | ||
| 1669 | #endif | ||
| 1665 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER | 1670 | #ifdef CONFIG_FUNCTION_GRAPH_TRACER |
| 1666 | /* Index of current stored address in ret_stack */ | 1671 | /* Index of current stored address in ret_stack */ |
| 1667 | int curr_ret_stack; | 1672 | int curr_ret_stack; |
| @@ -2145,6 +2150,7 @@ extern unsigned long long notrace sched_clock(void); | |||
| 2145 | */ | 2150 | */ |
| 2146 | extern u64 cpu_clock(int cpu); | 2151 | extern u64 cpu_clock(int cpu); |
| 2147 | extern u64 local_clock(void); | 2152 | extern u64 local_clock(void); |
| 2153 | extern u64 running_clock(void); | ||
| 2148 | extern u64 sched_clock_cpu(int cpu); | 2154 | extern u64 sched_clock_cpu(int cpu); |
| 2149 | 2155 | ||
| 2150 | 2156 | ||
diff --git a/include/linux/security.h b/include/linux/security.h index ba96471c11ba..a1b7dbd127ff 100644 --- a/include/linux/security.h +++ b/include/linux/security.h | |||
| @@ -1281,6 +1281,25 @@ static inline void security_free_mnt_opts(struct security_mnt_opts *opts) | |||
| 1281 | * @alter contains the flag indicating whether changes are to be made. | 1281 | * @alter contains the flag indicating whether changes are to be made. |
| 1282 | * Return 0 if permission is granted. | 1282 | * Return 0 if permission is granted. |
| 1283 | * | 1283 | * |
| 1284 | * @binder_set_context_mgr | ||
| 1285 | * Check whether @mgr is allowed to be the binder context manager. | ||
| 1286 | * @mgr contains the task_struct for the task being registered. | ||
| 1287 | * Return 0 if permission is granted. | ||
| 1288 | * @binder_transaction | ||
| 1289 | * Check whether @from is allowed to invoke a binder transaction call | ||
| 1290 | * to @to. | ||
| 1291 | * @from contains the task_struct for the sending task. | ||
| 1292 | * @to contains the task_struct for the receiving task. | ||
| 1293 | * @binder_transfer_binder | ||
| 1294 | * Check whether @from is allowed to transfer a binder reference to @to. | ||
| 1295 | * @from contains the task_struct for the sending task. | ||
| 1296 | * @to contains the task_struct for the receiving task. | ||
| 1297 | * @binder_transfer_file | ||
| 1298 | * Check whether @from is allowed to transfer @file to @to. | ||
| 1299 | * @from contains the task_struct for the sending task. | ||
| 1300 | * @file contains the struct file being transferred. | ||
| 1301 | * @to contains the task_struct for the receiving task. | ||
| 1302 | * | ||
| 1284 | * @ptrace_access_check: | 1303 | * @ptrace_access_check: |
| 1285 | * Check permission before allowing the current process to trace the | 1304 | * Check permission before allowing the current process to trace the |
| 1286 | * @child process. | 1305 | * @child process. |
| @@ -1441,6 +1460,14 @@ static inline void security_free_mnt_opts(struct security_mnt_opts *opts) | |||
| 1441 | struct security_operations { | 1460 | struct security_operations { |
| 1442 | char name[SECURITY_NAME_MAX + 1]; | 1461 | char name[SECURITY_NAME_MAX + 1]; |
| 1443 | 1462 | ||
| 1463 | int (*binder_set_context_mgr) (struct task_struct *mgr); | ||
| 1464 | int (*binder_transaction) (struct task_struct *from, | ||
| 1465 | struct task_struct *to); | ||
| 1466 | int (*binder_transfer_binder) (struct task_struct *from, | ||
| 1467 | struct task_struct *to); | ||
| 1468 | int (*binder_transfer_file) (struct task_struct *from, | ||
| 1469 | struct task_struct *to, struct file *file); | ||
| 1470 | |||
| 1444 | int (*ptrace_access_check) (struct task_struct *child, unsigned int mode); | 1471 | int (*ptrace_access_check) (struct task_struct *child, unsigned int mode); |
| 1445 | int (*ptrace_traceme) (struct task_struct *parent); | 1472 | int (*ptrace_traceme) (struct task_struct *parent); |
| 1446 | int (*capget) (struct task_struct *target, | 1473 | int (*capget) (struct task_struct *target, |
| @@ -1739,6 +1766,13 @@ extern void __init security_fixup_ops(struct security_operations *ops); | |||
| 1739 | 1766 | ||
| 1740 | 1767 | ||
| 1741 | /* Security operations */ | 1768 | /* Security operations */ |
| 1769 | int security_binder_set_context_mgr(struct task_struct *mgr); | ||
| 1770 | int security_binder_transaction(struct task_struct *from, | ||
| 1771 | struct task_struct *to); | ||
| 1772 | int security_binder_transfer_binder(struct task_struct *from, | ||
| 1773 | struct task_struct *to); | ||
| 1774 | int security_binder_transfer_file(struct task_struct *from, | ||
| 1775 | struct task_struct *to, struct file *file); | ||
| 1742 | int security_ptrace_access_check(struct task_struct *child, unsigned int mode); | 1776 | int security_ptrace_access_check(struct task_struct *child, unsigned int mode); |
| 1743 | int security_ptrace_traceme(struct task_struct *parent); | 1777 | int security_ptrace_traceme(struct task_struct *parent); |
| 1744 | int security_capget(struct task_struct *target, | 1778 | int security_capget(struct task_struct *target, |
| @@ -1927,6 +1961,30 @@ static inline int security_init(void) | |||
| 1927 | return 0; | 1961 | return 0; |
| 1928 | } | 1962 | } |
| 1929 | 1963 | ||
| 1964 | static inline int security_binder_set_context_mgr(struct task_struct *mgr) | ||
| 1965 | { | ||
| 1966 | return 0; | ||
| 1967 | } | ||
| 1968 | |||
| 1969 | static inline int security_binder_transaction(struct task_struct *from, | ||
| 1970 | struct task_struct *to) | ||
| 1971 | { | ||
| 1972 | return 0; | ||
| 1973 | } | ||
| 1974 | |||
| 1975 | static inline int security_binder_transfer_binder(struct task_struct *from, | ||
| 1976 | struct task_struct *to) | ||
| 1977 | { | ||
| 1978 | return 0; | ||
| 1979 | } | ||
| 1980 | |||
| 1981 | static inline int security_binder_transfer_file(struct task_struct *from, | ||
| 1982 | struct task_struct *to, | ||
| 1983 | struct file *file) | ||
| 1984 | { | ||
| 1985 | return 0; | ||
| 1986 | } | ||
| 1987 | |||
| 1930 | static inline int security_ptrace_access_check(struct task_struct *child, | 1988 | static inline int security_ptrace_access_check(struct task_struct *child, |
| 1931 | unsigned int mode) | 1989 | unsigned int mode) |
| 1932 | { | 1990 | { |
diff --git a/include/linux/seq_buf.h b/include/linux/seq_buf.h index 9aafe0e24c68..fb7eb9ccb1cd 100644 --- a/include/linux/seq_buf.h +++ b/include/linux/seq_buf.h | |||
| @@ -125,9 +125,6 @@ extern int seq_buf_putmem_hex(struct seq_buf *s, const void *mem, | |||
| 125 | unsigned int len); | 125 | unsigned int len); |
| 126 | extern int seq_buf_path(struct seq_buf *s, const struct path *path, const char *esc); | 126 | extern int seq_buf_path(struct seq_buf *s, const struct path *path, const char *esc); |
| 127 | 127 | ||
| 128 | extern int seq_buf_bitmask(struct seq_buf *s, const unsigned long *maskp, | ||
| 129 | int nmaskbits); | ||
| 130 | |||
| 131 | #ifdef CONFIG_BINARY_PRINTF | 128 | #ifdef CONFIG_BINARY_PRINTF |
| 132 | extern int | 129 | extern int |
| 133 | seq_buf_bprintf(struct seq_buf *s, const char *fmt, const u32 *binary); | 130 | seq_buf_bprintf(struct seq_buf *s, const char *fmt, const u32 *binary); |
diff --git a/include/linux/seq_file.h b/include/linux/seq_file.h index cf6a9daaaf6d..afbb1fd77c77 100644 --- a/include/linux/seq_file.h +++ b/include/linux/seq_file.h | |||
| @@ -126,31 +126,6 @@ int seq_path(struct seq_file *, const struct path *, const char *); | |||
| 126 | int seq_dentry(struct seq_file *, struct dentry *, const char *); | 126 | int seq_dentry(struct seq_file *, struct dentry *, const char *); |
| 127 | int seq_path_root(struct seq_file *m, const struct path *path, | 127 | int seq_path_root(struct seq_file *m, const struct path *path, |
| 128 | const struct path *root, const char *esc); | 128 | const struct path *root, const char *esc); |
| 129 | int seq_bitmap(struct seq_file *m, const unsigned long *bits, | ||
| 130 | unsigned int nr_bits); | ||
| 131 | static inline int seq_cpumask(struct seq_file *m, const struct cpumask *mask) | ||
| 132 | { | ||
| 133 | return seq_bitmap(m, cpumask_bits(mask), nr_cpu_ids); | ||
| 134 | } | ||
| 135 | |||
| 136 | static inline int seq_nodemask(struct seq_file *m, nodemask_t *mask) | ||
| 137 | { | ||
| 138 | return seq_bitmap(m, mask->bits, MAX_NUMNODES); | ||
| 139 | } | ||
| 140 | |||
| 141 | int seq_bitmap_list(struct seq_file *m, const unsigned long *bits, | ||
| 142 | unsigned int nr_bits); | ||
| 143 | |||
| 144 | static inline int seq_cpumask_list(struct seq_file *m, | ||
| 145 | const struct cpumask *mask) | ||
| 146 | { | ||
| 147 | return seq_bitmap_list(m, cpumask_bits(mask), nr_cpu_ids); | ||
| 148 | } | ||
| 149 | |||
| 150 | static inline int seq_nodemask_list(struct seq_file *m, nodemask_t *mask) | ||
| 151 | { | ||
| 152 | return seq_bitmap_list(m, mask->bits, MAX_NUMNODES); | ||
| 153 | } | ||
| 154 | 129 | ||
| 155 | int single_open(struct file *, int (*)(struct seq_file *, void *), void *); | 130 | int single_open(struct file *, int (*)(struct seq_file *, void *), void *); |
| 156 | int single_open_size(struct file *, int (*)(struct seq_file *, void *), void *, size_t); | 131 | int single_open_size(struct file *, int (*)(struct seq_file *, void *), void *, size_t); |
diff --git a/include/linux/serial_8250.h b/include/linux/serial_8250.h index e02acf0a0ec9..a8efa235b7c1 100644 --- a/include/linux/serial_8250.h +++ b/include/linux/serial_8250.h | |||
| @@ -85,6 +85,9 @@ struct uart_8250_port { | |||
| 85 | unsigned char mcr_force; /* mask of forced bits */ | 85 | unsigned char mcr_force; /* mask of forced bits */ |
| 86 | unsigned char cur_iotype; /* Running I/O type */ | 86 | unsigned char cur_iotype; /* Running I/O type */ |
| 87 | unsigned int rpm_tx_active; | 87 | unsigned int rpm_tx_active; |
| 88 | unsigned char canary; /* non-zero during system sleep | ||
| 89 | * if no_console_suspend | ||
| 90 | */ | ||
| 88 | 91 | ||
| 89 | /* | 92 | /* |
| 90 | * Some bits in registers are cleared on a read, so they must | 93 | * Some bits in registers are cleared on a read, so they must |
| @@ -126,6 +129,7 @@ extern int serial8250_do_startup(struct uart_port *port); | |||
| 126 | extern void serial8250_do_shutdown(struct uart_port *port); | 129 | extern void serial8250_do_shutdown(struct uart_port *port); |
| 127 | extern void serial8250_do_pm(struct uart_port *port, unsigned int state, | 130 | extern void serial8250_do_pm(struct uart_port *port, unsigned int state, |
| 128 | unsigned int oldstate); | 131 | unsigned int oldstate); |
| 132 | extern void serial8250_do_set_mctrl(struct uart_port *port, unsigned int mctrl); | ||
| 129 | extern int fsl8250_handle_irq(struct uart_port *port); | 133 | extern int fsl8250_handle_irq(struct uart_port *port); |
| 130 | int serial8250_handle_irq(struct uart_port *port, unsigned int iir); | 134 | int serial8250_handle_irq(struct uart_port *port, unsigned int iir); |
| 131 | unsigned char serial8250_rx_chars(struct uart_8250_port *up, unsigned char lsr); | 135 | unsigned char serial8250_rx_chars(struct uart_8250_port *up, unsigned char lsr); |
diff --git a/include/linux/serial_core.h b/include/linux/serial_core.h index 057038cf2788..baf3e1d08416 100644 --- a/include/linux/serial_core.h +++ b/include/linux/serial_core.h | |||
| @@ -123,6 +123,7 @@ struct uart_port { | |||
| 123 | void (*set_termios)(struct uart_port *, | 123 | void (*set_termios)(struct uart_port *, |
| 124 | struct ktermios *new, | 124 | struct ktermios *new, |
| 125 | struct ktermios *old); | 125 | struct ktermios *old); |
| 126 | void (*set_mctrl)(struct uart_port *, unsigned int); | ||
| 126 | int (*startup)(struct uart_port *port); | 127 | int (*startup)(struct uart_port *port); |
| 127 | void (*shutdown)(struct uart_port *port); | 128 | void (*shutdown)(struct uart_port *port); |
| 128 | void (*throttle)(struct uart_port *port); | 129 | void (*throttle)(struct uart_port *port); |
| @@ -190,8 +191,10 @@ struct uart_port { | |||
| 190 | #define UPF_NO_TXEN_TEST ((__force upf_t) (1 << 15)) | 191 | #define UPF_NO_TXEN_TEST ((__force upf_t) (1 << 15)) |
| 191 | #define UPF_MAGIC_MULTIPLIER ((__force upf_t) ASYNC_MAGIC_MULTIPLIER /* 16 */ ) | 192 | #define UPF_MAGIC_MULTIPLIER ((__force upf_t) ASYNC_MAGIC_MULTIPLIER /* 16 */ ) |
| 192 | 193 | ||
| 193 | /* Port has hardware-assisted h/w flow control (iow, auto-RTS *not* auto-CTS) */ | 194 | /* Port has hardware-assisted h/w flow control */ |
| 194 | #define UPF_HARD_FLOW ((__force upf_t) (1 << 21)) | 195 | #define UPF_AUTO_CTS ((__force upf_t) (1 << 20)) |
| 196 | #define UPF_AUTO_RTS ((__force upf_t) (1 << 21)) | ||
| 197 | #define UPF_HARD_FLOW ((__force upf_t) (UPF_AUTO_CTS | UPF_AUTO_RTS)) | ||
| 195 | /* Port has hardware-assisted s/w flow control */ | 198 | /* Port has hardware-assisted s/w flow control */ |
| 196 | #define UPF_SOFT_FLOW ((__force upf_t) (1 << 22)) | 199 | #define UPF_SOFT_FLOW ((__force upf_t) (1 << 22)) |
| 197 | #define UPF_CONS_FLOW ((__force upf_t) (1 << 23)) | 200 | #define UPF_CONS_FLOW ((__force upf_t) (1 << 23)) |
| @@ -213,11 +216,17 @@ struct uart_port { | |||
| 213 | #error Change mask not equivalent to userspace-visible bit defines | 216 | #error Change mask not equivalent to userspace-visible bit defines |
| 214 | #endif | 217 | #endif |
| 215 | 218 | ||
| 216 | /* status must be updated while holding port lock */ | 219 | /* |
| 220 | * Must hold termios_rwsem, port mutex and port lock to change; | ||
| 221 | * can hold any one lock to read. | ||
| 222 | */ | ||
| 217 | upstat_t status; | 223 | upstat_t status; |
| 218 | 224 | ||
| 219 | #define UPSTAT_CTS_ENABLE ((__force upstat_t) (1 << 0)) | 225 | #define UPSTAT_CTS_ENABLE ((__force upstat_t) (1 << 0)) |
| 220 | #define UPSTAT_DCD_ENABLE ((__force upstat_t) (1 << 1)) | 226 | #define UPSTAT_DCD_ENABLE ((__force upstat_t) (1 << 1)) |
| 227 | #define UPSTAT_AUTORTS ((__force upstat_t) (1 << 2)) | ||
| 228 | #define UPSTAT_AUTOCTS ((__force upstat_t) (1 << 3)) | ||
| 229 | #define UPSTAT_AUTOXOFF ((__force upstat_t) (1 << 4)) | ||
| 221 | 230 | ||
| 222 | int hw_stopped; /* sw-assisted CTS flow state */ | 231 | int hw_stopped; /* sw-assisted CTS flow state */ |
| 223 | unsigned int mctrl; /* current modem ctrl settings */ | 232 | unsigned int mctrl; /* current modem ctrl settings */ |
| @@ -391,6 +400,13 @@ static inline bool uart_cts_enabled(struct uart_port *uport) | |||
| 391 | return !!(uport->status & UPSTAT_CTS_ENABLE); | 400 | return !!(uport->status & UPSTAT_CTS_ENABLE); |
| 392 | } | 401 | } |
| 393 | 402 | ||
| 403 | static inline bool uart_softcts_mode(struct uart_port *uport) | ||
| 404 | { | ||
| 405 | upstat_t mask = UPSTAT_CTS_ENABLE | UPSTAT_AUTOCTS; | ||
| 406 | |||
| 407 | return ((uport->status & mask) == UPSTAT_CTS_ENABLE); | ||
| 408 | } | ||
| 409 | |||
| 394 | /* | 410 | /* |
| 395 | * The following are helper functions for the low level drivers. | 411 | * The following are helper functions for the low level drivers. |
| 396 | */ | 412 | */ |
diff --git a/include/linux/serial_s3c.h b/include/linux/serial_s3c.h index e6fc9567690b..a7f004a3c177 100644 --- a/include/linux/serial_s3c.h +++ b/include/linux/serial_s3c.h | |||
| @@ -104,6 +104,31 @@ | |||
| 104 | S3C2410_UCON_RXIRQMODE | \ | 104 | S3C2410_UCON_RXIRQMODE | \ |
| 105 | S3C2410_UCON_RXFIFO_TOI) | 105 | S3C2410_UCON_RXFIFO_TOI) |
| 106 | 106 | ||
| 107 | #define S3C64XX_UCON_TXBURST_1 (0<<20) | ||
| 108 | #define S3C64XX_UCON_TXBURST_4 (1<<20) | ||
| 109 | #define S3C64XX_UCON_TXBURST_8 (2<<20) | ||
| 110 | #define S3C64XX_UCON_TXBURST_16 (3<<20) | ||
| 111 | #define S3C64XX_UCON_TXBURST_MASK (0xf<<20) | ||
| 112 | #define S3C64XX_UCON_RXBURST_1 (0<<16) | ||
| 113 | #define S3C64XX_UCON_RXBURST_4 (1<<16) | ||
| 114 | #define S3C64XX_UCON_RXBURST_8 (2<<16) | ||
| 115 | #define S3C64XX_UCON_RXBURST_16 (3<<16) | ||
| 116 | #define S3C64XX_UCON_RXBURST_MASK (0xf<<16) | ||
| 117 | #define S3C64XX_UCON_TIMEOUT_SHIFT (12) | ||
| 118 | #define S3C64XX_UCON_TIMEOUT_MASK (0xf<<12) | ||
| 119 | #define S3C64XX_UCON_EMPTYINT_EN (1<<11) | ||
| 120 | #define S3C64XX_UCON_DMASUS_EN (1<<10) | ||
| 121 | #define S3C64XX_UCON_TXINT_LEVEL (1<<9) | ||
| 122 | #define S3C64XX_UCON_RXINT_LEVEL (1<<8) | ||
| 123 | #define S3C64XX_UCON_TIMEOUT_EN (1<<7) | ||
| 124 | #define S3C64XX_UCON_ERRINT_EN (1<<6) | ||
| 125 | #define S3C64XX_UCON_TXMODE_DMA (2<<2) | ||
| 126 | #define S3C64XX_UCON_TXMODE_CPU (1<<2) | ||
| 127 | #define S3C64XX_UCON_TXMODE_MASK (3<<2) | ||
| 128 | #define S3C64XX_UCON_RXMODE_DMA (2<<0) | ||
| 129 | #define S3C64XX_UCON_RXMODE_CPU (1<<0) | ||
| 130 | #define S3C64XX_UCON_RXMODE_MASK (3<<0) | ||
| 131 | |||
| 107 | #define S3C2410_UFCON_FIFOMODE (1<<0) | 132 | #define S3C2410_UFCON_FIFOMODE (1<<0) |
| 108 | #define S3C2410_UFCON_TXTRIG0 (0<<6) | 133 | #define S3C2410_UFCON_TXTRIG0 (0<<6) |
| 109 | #define S3C2410_UFCON_RXTRIG8 (1<<4) | 134 | #define S3C2410_UFCON_RXTRIG8 (1<<4) |
| @@ -155,6 +180,7 @@ | |||
| 155 | #define S3C2440_UFSTAT_TXMASK (63<<8) | 180 | #define S3C2440_UFSTAT_TXMASK (63<<8) |
| 156 | #define S3C2440_UFSTAT_RXMASK (63) | 181 | #define S3C2440_UFSTAT_RXMASK (63) |
| 157 | 182 | ||
| 183 | #define S3C2410_UTRSTAT_TIMEOUT (1<<3) | ||
| 158 | #define S3C2410_UTRSTAT_TXE (1<<2) | 184 | #define S3C2410_UTRSTAT_TXE (1<<2) |
| 159 | #define S3C2410_UTRSTAT_TXFE (1<<1) | 185 | #define S3C2410_UTRSTAT_TXFE (1<<1) |
| 160 | #define S3C2410_UTRSTAT_RXDR (1<<0) | 186 | #define S3C2410_UTRSTAT_RXDR (1<<0) |
| @@ -179,8 +205,10 @@ | |||
| 179 | #define S3C64XX_UINTM 0x38 | 205 | #define S3C64XX_UINTM 0x38 |
| 180 | 206 | ||
| 181 | #define S3C64XX_UINTM_RXD (0) | 207 | #define S3C64XX_UINTM_RXD (0) |
| 208 | #define S3C64XX_UINTM_ERROR (1) | ||
| 182 | #define S3C64XX_UINTM_TXD (2) | 209 | #define S3C64XX_UINTM_TXD (2) |
| 183 | #define S3C64XX_UINTM_RXD_MSK (1 << S3C64XX_UINTM_RXD) | 210 | #define S3C64XX_UINTM_RXD_MSK (1 << S3C64XX_UINTM_RXD) |
| 211 | #define S3C64XX_UINTM_ERR_MSK (1 << S3C64XX_UINTM_ERROR) | ||
| 184 | #define S3C64XX_UINTM_TXD_MSK (1 << S3C64XX_UINTM_TXD) | 212 | #define S3C64XX_UINTM_TXD_MSK (1 << S3C64XX_UINTM_TXD) |
| 185 | 213 | ||
| 186 | /* Following are specific to S5PV210 */ | 214 | /* Following are specific to S5PV210 */ |
diff --git a/include/linux/shrinker.h b/include/linux/shrinker.h index f4aee75f00b1..4fcacd915d45 100644 --- a/include/linux/shrinker.h +++ b/include/linux/shrinker.h | |||
| @@ -20,6 +20,9 @@ struct shrink_control { | |||
| 20 | 20 | ||
| 21 | /* current node being shrunk (for NUMA aware shrinkers) */ | 21 | /* current node being shrunk (for NUMA aware shrinkers) */ |
| 22 | int nid; | 22 | int nid; |
| 23 | |||
| 24 | /* current memcg being shrunk (for memcg aware shrinkers) */ | ||
| 25 | struct mem_cgroup *memcg; | ||
| 23 | }; | 26 | }; |
| 24 | 27 | ||
| 25 | #define SHRINK_STOP (~0UL) | 28 | #define SHRINK_STOP (~0UL) |
| @@ -61,7 +64,8 @@ struct shrinker { | |||
| 61 | #define DEFAULT_SEEKS 2 /* A good number if you don't know better. */ | 64 | #define DEFAULT_SEEKS 2 /* A good number if you don't know better. */ |
| 62 | 65 | ||
| 63 | /* Flags */ | 66 | /* Flags */ |
| 64 | #define SHRINKER_NUMA_AWARE (1 << 0) | 67 | #define SHRINKER_NUMA_AWARE (1 << 0) |
| 68 | #define SHRINKER_MEMCG_AWARE (1 << 1) | ||
| 65 | 69 | ||
| 66 | extern int register_shrinker(struct shrinker *); | 70 | extern int register_shrinker(struct shrinker *); |
| 67 | extern void unregister_shrinker(struct shrinker *); | 71 | extern void unregister_shrinker(struct shrinker *); |
diff --git a/include/linux/slab.h b/include/linux/slab.h index 2e3b448cfa2d..76f1feeabd38 100644 --- a/include/linux/slab.h +++ b/include/linux/slab.h | |||
| @@ -104,6 +104,7 @@ | |||
| 104 | (unsigned long)ZERO_SIZE_PTR) | 104 | (unsigned long)ZERO_SIZE_PTR) |
| 105 | 105 | ||
| 106 | #include <linux/kmemleak.h> | 106 | #include <linux/kmemleak.h> |
| 107 | #include <linux/kasan.h> | ||
| 107 | 108 | ||
| 108 | struct mem_cgroup; | 109 | struct mem_cgroup; |
| 109 | /* | 110 | /* |
| @@ -115,13 +116,12 @@ int slab_is_available(void); | |||
| 115 | struct kmem_cache *kmem_cache_create(const char *, size_t, size_t, | 116 | struct kmem_cache *kmem_cache_create(const char *, size_t, size_t, |
| 116 | unsigned long, | 117 | unsigned long, |
| 117 | void (*)(void *)); | 118 | void (*)(void *)); |
| 118 | #ifdef CONFIG_MEMCG_KMEM | ||
| 119 | void memcg_create_kmem_cache(struct mem_cgroup *, struct kmem_cache *); | ||
| 120 | void memcg_destroy_kmem_caches(struct mem_cgroup *); | ||
| 121 | #endif | ||
| 122 | void kmem_cache_destroy(struct kmem_cache *); | 119 | void kmem_cache_destroy(struct kmem_cache *); |
| 123 | int kmem_cache_shrink(struct kmem_cache *); | 120 | int kmem_cache_shrink(struct kmem_cache *); |
| 124 | void kmem_cache_free(struct kmem_cache *, void *); | 121 | |
| 122 | void memcg_create_kmem_cache(struct mem_cgroup *, struct kmem_cache *); | ||
| 123 | void memcg_deactivate_kmem_caches(struct mem_cgroup *); | ||
| 124 | void memcg_destroy_kmem_caches(struct mem_cgroup *); | ||
| 125 | 125 | ||
| 126 | /* | 126 | /* |
| 127 | * Please use this macro to create slab caches. Simply specify the | 127 | * Please use this macro to create slab caches. Simply specify the |
| @@ -288,6 +288,7 @@ static __always_inline int kmalloc_index(size_t size) | |||
| 288 | 288 | ||
| 289 | void *__kmalloc(size_t size, gfp_t flags); | 289 | void *__kmalloc(size_t size, gfp_t flags); |
| 290 | void *kmem_cache_alloc(struct kmem_cache *, gfp_t flags); | 290 | void *kmem_cache_alloc(struct kmem_cache *, gfp_t flags); |
| 291 | void kmem_cache_free(struct kmem_cache *, void *); | ||
| 291 | 292 | ||
| 292 | #ifdef CONFIG_NUMA | 293 | #ifdef CONFIG_NUMA |
| 293 | void *__kmalloc_node(size_t size, gfp_t flags, int node); | 294 | void *__kmalloc_node(size_t size, gfp_t flags, int node); |
| @@ -325,7 +326,10 @@ kmem_cache_alloc_node_trace(struct kmem_cache *s, | |||
| 325 | static __always_inline void *kmem_cache_alloc_trace(struct kmem_cache *s, | 326 | static __always_inline void *kmem_cache_alloc_trace(struct kmem_cache *s, |
| 326 | gfp_t flags, size_t size) | 327 | gfp_t flags, size_t size) |
| 327 | { | 328 | { |
| 328 | return kmem_cache_alloc(s, flags); | 329 | void *ret = kmem_cache_alloc(s, flags); |
| 330 | |||
| 331 | kasan_kmalloc(s, ret, size); | ||
| 332 | return ret; | ||
| 329 | } | 333 | } |
| 330 | 334 | ||
| 331 | static __always_inline void * | 335 | static __always_inline void * |
| @@ -333,7 +337,10 @@ kmem_cache_alloc_node_trace(struct kmem_cache *s, | |||
| 333 | gfp_t gfpflags, | 337 | gfp_t gfpflags, |
| 334 | int node, size_t size) | 338 | int node, size_t size) |
| 335 | { | 339 | { |
| 336 | return kmem_cache_alloc_node(s, gfpflags, node); | 340 | void *ret = kmem_cache_alloc_node(s, gfpflags, node); |
| 341 | |||
| 342 | kasan_kmalloc(s, ret, size); | ||
| 343 | return ret; | ||
| 337 | } | 344 | } |
| 338 | #endif /* CONFIG_TRACING */ | 345 | #endif /* CONFIG_TRACING */ |
| 339 | 346 | ||
| @@ -473,14 +480,14 @@ static __always_inline void *kmalloc_node(size_t size, gfp_t flags, int node) | |||
| 473 | #ifndef ARCH_SLAB_MINALIGN | 480 | #ifndef ARCH_SLAB_MINALIGN |
| 474 | #define ARCH_SLAB_MINALIGN __alignof__(unsigned long long) | 481 | #define ARCH_SLAB_MINALIGN __alignof__(unsigned long long) |
| 475 | #endif | 482 | #endif |
| 483 | |||
| 484 | struct memcg_cache_array { | ||
| 485 | struct rcu_head rcu; | ||
| 486 | struct kmem_cache *entries[0]; | ||
| 487 | }; | ||
| 488 | |||
| 476 | /* | 489 | /* |
| 477 | * This is the main placeholder for memcg-related information in kmem caches. | 490 | * This is the main placeholder for memcg-related information in kmem caches. |
| 478 | * struct kmem_cache will hold a pointer to it, so the memory cost while | ||
| 479 | * disabled is 1 pointer. The runtime cost while enabled, gets bigger than it | ||
| 480 | * would otherwise be if that would be bundled in kmem_cache: we'll need an | ||
| 481 | * extra pointer chase. But the trade off clearly lays in favor of not | ||
| 482 | * penalizing non-users. | ||
| 483 | * | ||
| 484 | * Both the root cache and the child caches will have it. For the root cache, | 491 | * Both the root cache and the child caches will have it. For the root cache, |
| 485 | * this will hold a dynamically allocated array large enough to hold | 492 | * this will hold a dynamically allocated array large enough to hold |
| 486 | * information about the currently limited memcgs in the system. To allow the | 493 | * information about the currently limited memcgs in the system. To allow the |
| @@ -491,14 +498,15 @@ static __always_inline void *kmalloc_node(size_t size, gfp_t flags, int node) | |||
| 491 | * | 498 | * |
| 492 | * @memcg: pointer to the memcg this cache belongs to | 499 | * @memcg: pointer to the memcg this cache belongs to |
| 493 | * @root_cache: pointer to the global, root cache, this cache was derived from | 500 | * @root_cache: pointer to the global, root cache, this cache was derived from |
| 501 | * | ||
| 502 | * Both root and child caches of the same kind are linked into a list chained | ||
| 503 | * through @list. | ||
| 494 | */ | 504 | */ |
| 495 | struct memcg_cache_params { | 505 | struct memcg_cache_params { |
| 496 | bool is_root_cache; | 506 | bool is_root_cache; |
| 507 | struct list_head list; | ||
| 497 | union { | 508 | union { |
| 498 | struct { | 509 | struct memcg_cache_array __rcu *memcg_caches; |
| 499 | struct rcu_head rcu_head; | ||
| 500 | struct kmem_cache *memcg_caches[0]; | ||
| 501 | }; | ||
| 502 | struct { | 510 | struct { |
| 503 | struct mem_cgroup *memcg; | 511 | struct mem_cgroup *memcg; |
| 504 | struct kmem_cache *root_cache; | 512 | struct kmem_cache *root_cache; |
diff --git a/include/linux/slab_def.h b/include/linux/slab_def.h index b869d1662ba3..33d049066c3d 100644 --- a/include/linux/slab_def.h +++ b/include/linux/slab_def.h | |||
| @@ -70,7 +70,7 @@ struct kmem_cache { | |||
| 70 | int obj_offset; | 70 | int obj_offset; |
| 71 | #endif /* CONFIG_DEBUG_SLAB */ | 71 | #endif /* CONFIG_DEBUG_SLAB */ |
| 72 | #ifdef CONFIG_MEMCG_KMEM | 72 | #ifdef CONFIG_MEMCG_KMEM |
| 73 | struct memcg_cache_params *memcg_params; | 73 | struct memcg_cache_params memcg_params; |
| 74 | #endif | 74 | #endif |
| 75 | 75 | ||
| 76 | struct kmem_cache_node *node[MAX_NUMNODES]; | 76 | struct kmem_cache_node *node[MAX_NUMNODES]; |
diff --git a/include/linux/slub_def.h b/include/linux/slub_def.h index d82abd40a3c0..33885118523c 100644 --- a/include/linux/slub_def.h +++ b/include/linux/slub_def.h | |||
| @@ -85,7 +85,7 @@ struct kmem_cache { | |||
| 85 | struct kobject kobj; /* For sysfs */ | 85 | struct kobject kobj; /* For sysfs */ |
| 86 | #endif | 86 | #endif |
| 87 | #ifdef CONFIG_MEMCG_KMEM | 87 | #ifdef CONFIG_MEMCG_KMEM |
| 88 | struct memcg_cache_params *memcg_params; | 88 | struct memcg_cache_params memcg_params; |
| 89 | int max_attr_size; /* for propagation, maximum size of a stored attr */ | 89 | int max_attr_size; /* for propagation, maximum size of a stored attr */ |
| 90 | #ifdef CONFIG_SYSFS | 90 | #ifdef CONFIG_SYSFS |
| 91 | struct kset *memcg_kset; | 91 | struct kset *memcg_kset; |
| @@ -110,4 +110,23 @@ static inline void sysfs_slab_remove(struct kmem_cache *s) | |||
| 110 | } | 110 | } |
| 111 | #endif | 111 | #endif |
| 112 | 112 | ||
| 113 | |||
| 114 | /** | ||
| 115 | * virt_to_obj - returns address of the beginning of object. | ||
| 116 | * @s: object's kmem_cache | ||
| 117 | * @slab_page: address of slab page | ||
| 118 | * @x: address within object memory range | ||
| 119 | * | ||
| 120 | * Returns address of the beginning of object | ||
| 121 | */ | ||
| 122 | static inline void *virt_to_obj(struct kmem_cache *s, | ||
| 123 | const void *slab_page, | ||
| 124 | const void *x) | ||
| 125 | { | ||
| 126 | return (void *)x - ((x - slab_page) % s->size); | ||
| 127 | } | ||
| 128 | |||
| 129 | void object_err(struct kmem_cache *s, struct page *page, | ||
| 130 | u8 *object, char *reason); | ||
| 131 | |||
| 113 | #endif /* _LINUX_SLUB_DEF_H */ | 132 | #endif /* _LINUX_SLUB_DEF_H */ |
diff --git a/include/linux/string.h b/include/linux/string.h index 2e22a2e58f3a..e40099e585c9 100644 --- a/include/linux/string.h +++ b/include/linux/string.h | |||
| @@ -40,9 +40,6 @@ extern int strcmp(const char *,const char *); | |||
| 40 | #ifndef __HAVE_ARCH_STRNCMP | 40 | #ifndef __HAVE_ARCH_STRNCMP |
| 41 | extern int strncmp(const char *,const char *,__kernel_size_t); | 41 | extern int strncmp(const char *,const char *,__kernel_size_t); |
| 42 | #endif | 42 | #endif |
| 43 | #ifndef __HAVE_ARCH_STRNICMP | ||
| 44 | #define strnicmp strncasecmp | ||
| 45 | #endif | ||
| 46 | #ifndef __HAVE_ARCH_STRCASECMP | 43 | #ifndef __HAVE_ARCH_STRCASECMP |
| 47 | extern int strcasecmp(const char *s1, const char *s2); | 44 | extern int strcasecmp(const char *s1, const char *s2); |
| 48 | #endif | 45 | #endif |
| @@ -115,7 +112,10 @@ extern void * memchr(const void *,int,__kernel_size_t); | |||
| 115 | #endif | 112 | #endif |
| 116 | void *memchr_inv(const void *s, int c, size_t n); | 113 | void *memchr_inv(const void *s, int c, size_t n); |
| 117 | 114 | ||
| 115 | extern void kfree_const(const void *x); | ||
| 116 | |||
| 118 | extern char *kstrdup(const char *s, gfp_t gfp); | 117 | extern char *kstrdup(const char *s, gfp_t gfp); |
| 118 | extern const char *kstrdup_const(const char *s, gfp_t gfp); | ||
| 119 | extern char *kstrndup(const char *s, size_t len, gfp_t gfp); | 119 | extern char *kstrndup(const char *s, size_t len, gfp_t gfp); |
| 120 | extern void *kmemdup(const void *src, size_t len, gfp_t gfp); | 120 | extern void *kmemdup(const void *src, size_t len, gfp_t gfp); |
| 121 | 121 | ||
diff --git a/include/linux/string_helpers.h b/include/linux/string_helpers.h index 6eb567ac56bc..657571817260 100644 --- a/include/linux/string_helpers.h +++ b/include/linux/string_helpers.h | |||
| @@ -10,8 +10,8 @@ enum string_size_units { | |||
| 10 | STRING_UNITS_2, /* use binary powers of 2^10 */ | 10 | STRING_UNITS_2, /* use binary powers of 2^10 */ |
| 11 | }; | 11 | }; |
| 12 | 12 | ||
| 13 | int string_get_size(u64 size, enum string_size_units units, | 13 | void string_get_size(u64 size, enum string_size_units units, |
| 14 | char *buf, int len); | 14 | char *buf, int len); |
| 15 | 15 | ||
| 16 | #define UNESCAPE_SPACE 0x01 | 16 | #define UNESCAPE_SPACE 0x01 |
| 17 | #define UNESCAPE_OCTAL 0x02 | 17 | #define UNESCAPE_OCTAL 0x02 |
diff --git a/include/linux/sunrpc/clnt.h b/include/linux/sunrpc/clnt.h index d86acc63b25f..598ba80ec30c 100644 --- a/include/linux/sunrpc/clnt.h +++ b/include/linux/sunrpc/clnt.h | |||
| @@ -57,7 +57,7 @@ struct rpc_clnt { | |||
| 57 | const struct rpc_timeout *cl_timeout; /* Timeout strategy */ | 57 | const struct rpc_timeout *cl_timeout; /* Timeout strategy */ |
| 58 | 58 | ||
| 59 | int cl_nodelen; /* nodename length */ | 59 | int cl_nodelen; /* nodename length */ |
| 60 | char cl_nodename[UNX_MAXNODENAME]; | 60 | char cl_nodename[UNX_MAXNODENAME+1]; |
| 61 | struct rpc_pipe_dir_head cl_pipedir_objects; | 61 | struct rpc_pipe_dir_head cl_pipedir_objects; |
| 62 | struct rpc_clnt * cl_parent; /* Points to parent of clones */ | 62 | struct rpc_clnt * cl_parent; /* Points to parent of clones */ |
| 63 | struct rpc_rtt cl_rtt_default; | 63 | struct rpc_rtt cl_rtt_default; |
| @@ -112,6 +112,7 @@ struct rpc_create_args { | |||
| 112 | struct sockaddr *saddress; | 112 | struct sockaddr *saddress; |
| 113 | const struct rpc_timeout *timeout; | 113 | const struct rpc_timeout *timeout; |
| 114 | const char *servername; | 114 | const char *servername; |
| 115 | const char *nodename; | ||
| 115 | const struct rpc_program *program; | 116 | const struct rpc_program *program; |
| 116 | u32 prognumber; /* overrides program->number */ | 117 | u32 prognumber; /* overrides program->number */ |
| 117 | u32 version; | 118 | u32 version; |
diff --git a/include/linux/sunrpc/metrics.h b/include/linux/sunrpc/metrics.h index eecb5a71e6c0..7e61a17030a4 100644 --- a/include/linux/sunrpc/metrics.h +++ b/include/linux/sunrpc/metrics.h | |||
| @@ -79,6 +79,8 @@ struct rpc_clnt; | |||
| 79 | struct rpc_iostats * rpc_alloc_iostats(struct rpc_clnt *); | 79 | struct rpc_iostats * rpc_alloc_iostats(struct rpc_clnt *); |
| 80 | void rpc_count_iostats(const struct rpc_task *, | 80 | void rpc_count_iostats(const struct rpc_task *, |
| 81 | struct rpc_iostats *); | 81 | struct rpc_iostats *); |
| 82 | void rpc_count_iostats_metrics(const struct rpc_task *, | ||
| 83 | struct rpc_iostats *); | ||
| 82 | void rpc_print_iostats(struct seq_file *, struct rpc_clnt *); | 84 | void rpc_print_iostats(struct seq_file *, struct rpc_clnt *); |
| 83 | void rpc_free_iostats(struct rpc_iostats *); | 85 | void rpc_free_iostats(struct rpc_iostats *); |
| 84 | 86 | ||
| @@ -87,6 +89,8 @@ void rpc_free_iostats(struct rpc_iostats *); | |||
| 87 | static inline struct rpc_iostats *rpc_alloc_iostats(struct rpc_clnt *clnt) { return NULL; } | 89 | static inline struct rpc_iostats *rpc_alloc_iostats(struct rpc_clnt *clnt) { return NULL; } |
| 88 | static inline void rpc_count_iostats(const struct rpc_task *task, | 90 | static inline void rpc_count_iostats(const struct rpc_task *task, |
| 89 | struct rpc_iostats *stats) {} | 91 | struct rpc_iostats *stats) {} |
| 92 | static inline void rpc_count_iostats_metrics(const struct rpc_task *, | ||
| 93 | struct rpc_iostats *) {} | ||
| 90 | static inline void rpc_print_iostats(struct seq_file *seq, struct rpc_clnt *clnt) {} | 94 | static inline void rpc_print_iostats(struct seq_file *seq, struct rpc_clnt *clnt) {} |
| 91 | static inline void rpc_free_iostats(struct rpc_iostats *stats) {} | 95 | static inline void rpc_free_iostats(struct rpc_iostats *stats) {} |
| 92 | 96 | ||
diff --git a/include/linux/sunrpc/rpc_rdma.h b/include/linux/sunrpc/rpc_rdma.h index b78f16b1dea3..f33c5a4d6fe4 100644 --- a/include/linux/sunrpc/rpc_rdma.h +++ b/include/linux/sunrpc/rpc_rdma.h | |||
| @@ -42,6 +42,9 @@ | |||
| 42 | 42 | ||
| 43 | #include <linux/types.h> | 43 | #include <linux/types.h> |
| 44 | 44 | ||
| 45 | #define RPCRDMA_VERSION 1 | ||
| 46 | #define rpcrdma_version cpu_to_be32(RPCRDMA_VERSION) | ||
| 47 | |||
| 45 | struct rpcrdma_segment { | 48 | struct rpcrdma_segment { |
| 46 | __be32 rs_handle; /* Registered memory handle */ | 49 | __be32 rs_handle; /* Registered memory handle */ |
| 47 | __be32 rs_length; /* Length of the chunk in bytes */ | 50 | __be32 rs_length; /* Length of the chunk in bytes */ |
| @@ -95,7 +98,10 @@ struct rpcrdma_msg { | |||
| 95 | } rm_body; | 98 | } rm_body; |
| 96 | }; | 99 | }; |
| 97 | 100 | ||
| 98 | #define RPCRDMA_HDRLEN_MIN 28 | 101 | /* |
| 102 | * Smallest RPC/RDMA header: rm_xid through rm_type, then rm_nochunks | ||
| 103 | */ | ||
| 104 | #define RPCRDMA_HDRLEN_MIN (sizeof(__be32) * 7) | ||
| 99 | 105 | ||
| 100 | enum rpcrdma_errcode { | 106 | enum rpcrdma_errcode { |
| 101 | ERR_VERS = 1, | 107 | ERR_VERS = 1, |
| @@ -115,4 +121,10 @@ enum rpcrdma_proc { | |||
| 115 | RDMA_ERROR = 4 /* An RPC RDMA encoding error */ | 121 | RDMA_ERROR = 4 /* An RPC RDMA encoding error */ |
| 116 | }; | 122 | }; |
| 117 | 123 | ||
| 124 | #define rdma_msg cpu_to_be32(RDMA_MSG) | ||
| 125 | #define rdma_nomsg cpu_to_be32(RDMA_NOMSG) | ||
| 126 | #define rdma_msgp cpu_to_be32(RDMA_MSGP) | ||
| 127 | #define rdma_done cpu_to_be32(RDMA_DONE) | ||
| 128 | #define rdma_error cpu_to_be32(RDMA_ERROR) | ||
| 129 | |||
| 118 | #endif /* _LINUX_SUNRPC_RPC_RDMA_H */ | 130 | #endif /* _LINUX_SUNRPC_RPC_RDMA_H */ |
diff --git a/include/linux/sunrpc/svc.h b/include/linux/sunrpc/svc.h index 6f22cfeef5e3..fae6fb947fc8 100644 --- a/include/linux/sunrpc/svc.h +++ b/include/linux/sunrpc/svc.h | |||
| @@ -110,7 +110,7 @@ struct svc_serv { | |||
| 110 | * We use sv_nrthreads as a reference count. svc_destroy() drops | 110 | * We use sv_nrthreads as a reference count. svc_destroy() drops |
| 111 | * this refcount, so we need to bump it up around operations that | 111 | * this refcount, so we need to bump it up around operations that |
| 112 | * change the number of threads. Horrible, but there it is. | 112 | * change the number of threads. Horrible, but there it is. |
| 113 | * Should be called with the BKL held. | 113 | * Should be called with the "service mutex" held. |
| 114 | */ | 114 | */ |
| 115 | static inline void svc_get(struct svc_serv *serv) | 115 | static inline void svc_get(struct svc_serv *serv) |
| 116 | { | 116 | { |
diff --git a/include/linux/sunrpc/svc_rdma.h b/include/linux/sunrpc/svc_rdma.h index 975da754c778..df8edf8ec914 100644 --- a/include/linux/sunrpc/svc_rdma.h +++ b/include/linux/sunrpc/svc_rdma.h | |||
| @@ -63,8 +63,6 @@ extern atomic_t rdma_stat_rq_prod; | |||
| 63 | extern atomic_t rdma_stat_sq_poll; | 63 | extern atomic_t rdma_stat_sq_poll; |
| 64 | extern atomic_t rdma_stat_sq_prod; | 64 | extern atomic_t rdma_stat_sq_prod; |
| 65 | 65 | ||
| 66 | #define RPCRDMA_VERSION 1 | ||
| 67 | |||
| 68 | /* | 66 | /* |
| 69 | * Contexts are built when an RDMA request is created and are a | 67 | * Contexts are built when an RDMA request is created and are a |
| 70 | * record of the resources that can be recovered when the request | 68 | * record of the resources that can be recovered when the request |
| @@ -79,6 +77,7 @@ struct svc_rdma_op_ctxt { | |||
| 79 | enum ib_wr_opcode wr_op; | 77 | enum ib_wr_opcode wr_op; |
| 80 | enum ib_wc_status wc_status; | 78 | enum ib_wc_status wc_status; |
| 81 | u32 byte_len; | 79 | u32 byte_len; |
| 80 | u32 position; | ||
| 82 | struct svcxprt_rdma *xprt; | 81 | struct svcxprt_rdma *xprt; |
| 83 | unsigned long flags; | 82 | unsigned long flags; |
| 84 | enum dma_data_direction direction; | 83 | enum dma_data_direction direction; |
| @@ -150,6 +149,10 @@ struct svcxprt_rdma { | |||
| 150 | struct ib_cq *sc_rq_cq; | 149 | struct ib_cq *sc_rq_cq; |
| 151 | struct ib_cq *sc_sq_cq; | 150 | struct ib_cq *sc_sq_cq; |
| 152 | struct ib_mr *sc_phys_mr; /* MR for server memory */ | 151 | struct ib_mr *sc_phys_mr; /* MR for server memory */ |
| 152 | int (*sc_reader)(struct svcxprt_rdma *, | ||
| 153 | struct svc_rqst *, | ||
| 154 | struct svc_rdma_op_ctxt *, | ||
| 155 | int *, u32 *, u32, u32, u64, bool); | ||
| 153 | u32 sc_dev_caps; /* distilled device caps */ | 156 | u32 sc_dev_caps; /* distilled device caps */ |
| 154 | u32 sc_dma_lkey; /* local dma key */ | 157 | u32 sc_dma_lkey; /* local dma key */ |
| 155 | unsigned int sc_frmr_pg_list_len; | 158 | unsigned int sc_frmr_pg_list_len; |
| @@ -178,8 +181,6 @@ struct svcxprt_rdma { | |||
| 178 | #define RPCRDMA_MAX_REQ_SIZE 4096 | 181 | #define RPCRDMA_MAX_REQ_SIZE 4096 |
| 179 | 182 | ||
| 180 | /* svc_rdma_marshal.c */ | 183 | /* svc_rdma_marshal.c */ |
| 181 | extern void svc_rdma_rcl_chunk_counts(struct rpcrdma_read_chunk *, | ||
| 182 | int *, int *); | ||
| 183 | extern int svc_rdma_xdr_decode_req(struct rpcrdma_msg **, struct svc_rqst *); | 184 | extern int svc_rdma_xdr_decode_req(struct rpcrdma_msg **, struct svc_rqst *); |
| 184 | extern int svc_rdma_xdr_decode_deferred_req(struct svc_rqst *); | 185 | extern int svc_rdma_xdr_decode_deferred_req(struct svc_rqst *); |
| 185 | extern int svc_rdma_xdr_encode_error(struct svcxprt_rdma *, | 186 | extern int svc_rdma_xdr_encode_error(struct svcxprt_rdma *, |
| @@ -197,6 +198,12 @@ extern int svc_rdma_xdr_get_reply_hdr_len(struct rpcrdma_msg *); | |||
| 197 | 198 | ||
| 198 | /* svc_rdma_recvfrom.c */ | 199 | /* svc_rdma_recvfrom.c */ |
| 199 | extern int svc_rdma_recvfrom(struct svc_rqst *); | 200 | extern int svc_rdma_recvfrom(struct svc_rqst *); |
| 201 | extern int rdma_read_chunk_lcl(struct svcxprt_rdma *, struct svc_rqst *, | ||
| 202 | struct svc_rdma_op_ctxt *, int *, u32 *, | ||
| 203 | u32, u32, u64, bool); | ||
| 204 | extern int rdma_read_chunk_frmr(struct svcxprt_rdma *, struct svc_rqst *, | ||
| 205 | struct svc_rdma_op_ctxt *, int *, u32 *, | ||
| 206 | u32, u32, u64, bool); | ||
| 200 | 207 | ||
| 201 | /* svc_rdma_sendto.c */ | 208 | /* svc_rdma_sendto.c */ |
| 202 | extern int svc_rdma_sendto(struct svc_rqst *); | 209 | extern int svc_rdma_sendto(struct svc_rqst *); |
diff --git a/include/linux/sunrpc/xprt.h b/include/linux/sunrpc/xprt.h index 9d27ac45b909..8b93ef53df3c 100644 --- a/include/linux/sunrpc/xprt.h +++ b/include/linux/sunrpc/xprt.h | |||
| @@ -347,6 +347,9 @@ void xprt_force_disconnect(struct rpc_xprt *xprt); | |||
| 347 | void xprt_conditional_disconnect(struct rpc_xprt *xprt, unsigned int cookie); | 347 | void xprt_conditional_disconnect(struct rpc_xprt *xprt, unsigned int cookie); |
| 348 | int xs_swapper(struct rpc_xprt *xprt, int enable); | 348 | int xs_swapper(struct rpc_xprt *xprt, int enable); |
| 349 | 349 | ||
| 350 | bool xprt_lock_connect(struct rpc_xprt *, struct rpc_task *, void *); | ||
| 351 | void xprt_unlock_connect(struct rpc_xprt *, void *); | ||
| 352 | |||
| 350 | /* | 353 | /* |
| 351 | * Reserved bit positions in xprt->state | 354 | * Reserved bit positions in xprt->state |
| 352 | */ | 355 | */ |
| @@ -357,10 +360,7 @@ int xs_swapper(struct rpc_xprt *xprt, int enable); | |||
| 357 | #define XPRT_BOUND (4) | 360 | #define XPRT_BOUND (4) |
| 358 | #define XPRT_BINDING (5) | 361 | #define XPRT_BINDING (5) |
| 359 | #define XPRT_CLOSING (6) | 362 | #define XPRT_CLOSING (6) |
| 360 | #define XPRT_CONNECTION_ABORT (7) | ||
| 361 | #define XPRT_CONNECTION_CLOSE (8) | ||
| 362 | #define XPRT_CONGESTED (9) | 363 | #define XPRT_CONGESTED (9) |
| 363 | #define XPRT_CONNECTION_REUSE (10) | ||
| 364 | 364 | ||
| 365 | static inline void xprt_set_connected(struct rpc_xprt *xprt) | 365 | static inline void xprt_set_connected(struct rpc_xprt *xprt) |
| 366 | { | 366 | { |
diff --git a/include/linux/suspend.h b/include/linux/suspend.h index 3388c1b6f7d8..5efe743ce1e8 100644 --- a/include/linux/suspend.h +++ b/include/linux/suspend.h | |||
| @@ -201,6 +201,21 @@ struct platform_freeze_ops { | |||
| 201 | */ | 201 | */ |
| 202 | extern void suspend_set_ops(const struct platform_suspend_ops *ops); | 202 | extern void suspend_set_ops(const struct platform_suspend_ops *ops); |
| 203 | extern int suspend_valid_only_mem(suspend_state_t state); | 203 | extern int suspend_valid_only_mem(suspend_state_t state); |
| 204 | |||
| 205 | /* Suspend-to-idle state machnine. */ | ||
| 206 | enum freeze_state { | ||
| 207 | FREEZE_STATE_NONE, /* Not suspended/suspending. */ | ||
| 208 | FREEZE_STATE_ENTER, /* Enter suspend-to-idle. */ | ||
| 209 | FREEZE_STATE_WAKE, /* Wake up from suspend-to-idle. */ | ||
| 210 | }; | ||
| 211 | |||
| 212 | extern enum freeze_state __read_mostly suspend_freeze_state; | ||
| 213 | |||
| 214 | static inline bool idle_should_freeze(void) | ||
| 215 | { | ||
| 216 | return unlikely(suspend_freeze_state == FREEZE_STATE_ENTER); | ||
| 217 | } | ||
| 218 | |||
| 204 | extern void freeze_set_ops(const struct platform_freeze_ops *ops); | 219 | extern void freeze_set_ops(const struct platform_freeze_ops *ops); |
| 205 | extern void freeze_wake(void); | 220 | extern void freeze_wake(void); |
| 206 | 221 | ||
| @@ -228,6 +243,7 @@ extern int pm_suspend(suspend_state_t state); | |||
| 228 | 243 | ||
| 229 | static inline void suspend_set_ops(const struct platform_suspend_ops *ops) {} | 244 | static inline void suspend_set_ops(const struct platform_suspend_ops *ops) {} |
| 230 | static inline int pm_suspend(suspend_state_t state) { return -ENOSYS; } | 245 | static inline int pm_suspend(suspend_state_t state) { return -ENOSYS; } |
| 246 | static inline bool idle_should_freeze(void) { return false; } | ||
| 231 | static inline void freeze_set_ops(const struct platform_freeze_ops *ops) {} | 247 | static inline void freeze_set_ops(const struct platform_freeze_ops *ops) {} |
| 232 | static inline void freeze_wake(void) {} | 248 | static inline void freeze_wake(void) {} |
| 233 | #endif /* !CONFIG_SUSPEND */ | 249 | #endif /* !CONFIG_SUSPEND */ |
diff --git a/include/linux/swap.h b/include/linux/swap.h index 34e8b60ab973..7067eca501e2 100644 --- a/include/linux/swap.h +++ b/include/linux/swap.h | |||
| @@ -437,16 +437,6 @@ extern int reuse_swap_page(struct page *); | |||
| 437 | extern int try_to_free_swap(struct page *); | 437 | extern int try_to_free_swap(struct page *); |
| 438 | struct backing_dev_info; | 438 | struct backing_dev_info; |
| 439 | 439 | ||
| 440 | #ifdef CONFIG_MEMCG | ||
| 441 | extern void | ||
| 442 | mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout); | ||
| 443 | #else | ||
| 444 | static inline void | ||
| 445 | mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent, bool swapout) | ||
| 446 | { | ||
| 447 | } | ||
| 448 | #endif | ||
| 449 | |||
| 450 | #else /* CONFIG_SWAP */ | 440 | #else /* CONFIG_SWAP */ |
| 451 | 441 | ||
| 452 | #define swap_address_space(entry) (NULL) | 442 | #define swap_address_space(entry) (NULL) |
| @@ -547,11 +537,6 @@ static inline swp_entry_t get_swap_page(void) | |||
| 547 | return entry; | 537 | return entry; |
| 548 | } | 538 | } |
| 549 | 539 | ||
| 550 | static inline void | ||
| 551 | mem_cgroup_uncharge_swapcache(struct page *page, swp_entry_t ent) | ||
| 552 | { | ||
| 553 | } | ||
| 554 | |||
| 555 | #endif /* CONFIG_SWAP */ | 540 | #endif /* CONFIG_SWAP */ |
| 556 | #endif /* __KERNEL__*/ | 541 | #endif /* __KERNEL__*/ |
| 557 | #endif /* _LINUX_SWAP_H */ | 542 | #endif /* _LINUX_SWAP_H */ |
diff --git a/include/linux/swapops.h b/include/linux/swapops.h index 50cbc876be56..cedf3d3c373f 100644 --- a/include/linux/swapops.h +++ b/include/linux/swapops.h | |||
| @@ -54,7 +54,7 @@ static inline pgoff_t swp_offset(swp_entry_t entry) | |||
| 54 | /* check whether a pte points to a swap entry */ | 54 | /* check whether a pte points to a swap entry */ |
| 55 | static inline int is_swap_pte(pte_t pte) | 55 | static inline int is_swap_pte(pte_t pte) |
| 56 | { | 56 | { |
| 57 | return !pte_none(pte) && !pte_present_nonuma(pte); | 57 | return !pte_none(pte) && !pte_present(pte); |
| 58 | } | 58 | } |
| 59 | #endif | 59 | #endif |
| 60 | 60 | ||
| @@ -135,6 +135,8 @@ static inline void make_migration_entry_read(swp_entry_t *entry) | |||
| 135 | *entry = swp_entry(SWP_MIGRATION_READ, swp_offset(*entry)); | 135 | *entry = swp_entry(SWP_MIGRATION_READ, swp_offset(*entry)); |
| 136 | } | 136 | } |
| 137 | 137 | ||
| 138 | extern void __migration_entry_wait(struct mm_struct *mm, pte_t *ptep, | ||
| 139 | spinlock_t *ptl); | ||
| 138 | extern void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd, | 140 | extern void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd, |
| 139 | unsigned long address); | 141 | unsigned long address); |
| 140 | extern void migration_entry_wait_huge(struct vm_area_struct *vma, | 142 | extern void migration_entry_wait_huge(struct vm_area_struct *vma, |
| @@ -148,6 +150,8 @@ static inline int is_migration_entry(swp_entry_t swp) | |||
| 148 | } | 150 | } |
| 149 | #define migration_entry_to_page(swp) NULL | 151 | #define migration_entry_to_page(swp) NULL |
| 150 | static inline void make_migration_entry_read(swp_entry_t *entryp) { } | 152 | static inline void make_migration_entry_read(swp_entry_t *entryp) { } |
| 153 | static inline void __migration_entry_wait(struct mm_struct *mm, pte_t *ptep, | ||
| 154 | spinlock_t *ptl) { } | ||
| 151 | static inline void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd, | 155 | static inline void migration_entry_wait(struct mm_struct *mm, pmd_t *pmd, |
| 152 | unsigned long address) { } | 156 | unsigned long address) { } |
| 153 | static inline void migration_entry_wait_huge(struct vm_area_struct *vma, | 157 | static inline void migration_entry_wait_huge(struct vm_area_struct *vma, |
diff --git a/include/linux/syscalls.h b/include/linux/syscalls.h index 85893d744901..76d1e38aabe1 100644 --- a/include/linux/syscalls.h +++ b/include/linux/syscalls.h | |||
| @@ -410,12 +410,16 @@ asmlinkage long sys_newlstat(const char __user *filename, | |||
| 410 | struct stat __user *statbuf); | 410 | struct stat __user *statbuf); |
| 411 | asmlinkage long sys_newfstat(unsigned int fd, struct stat __user *statbuf); | 411 | asmlinkage long sys_newfstat(unsigned int fd, struct stat __user *statbuf); |
| 412 | asmlinkage long sys_ustat(unsigned dev, struct ustat __user *ubuf); | 412 | asmlinkage long sys_ustat(unsigned dev, struct ustat __user *ubuf); |
| 413 | #if BITS_PER_LONG == 32 | 413 | #if defined(__ARCH_WANT_STAT64) || defined(__ARCH_WANT_COMPAT_STAT64) |
| 414 | asmlinkage long sys_stat64(const char __user *filename, | 414 | asmlinkage long sys_stat64(const char __user *filename, |
| 415 | struct stat64 __user *statbuf); | 415 | struct stat64 __user *statbuf); |
| 416 | asmlinkage long sys_fstat64(unsigned long fd, struct stat64 __user *statbuf); | 416 | asmlinkage long sys_fstat64(unsigned long fd, struct stat64 __user *statbuf); |
| 417 | asmlinkage long sys_lstat64(const char __user *filename, | 417 | asmlinkage long sys_lstat64(const char __user *filename, |
| 418 | struct stat64 __user *statbuf); | 418 | struct stat64 __user *statbuf); |
| 419 | asmlinkage long sys_fstatat64(int dfd, const char __user *filename, | ||
| 420 | struct stat64 __user *statbuf, int flag); | ||
| 421 | #endif | ||
| 422 | #if BITS_PER_LONG == 32 | ||
| 419 | asmlinkage long sys_truncate64(const char __user *path, loff_t length); | 423 | asmlinkage long sys_truncate64(const char __user *path, loff_t length); |
| 420 | asmlinkage long sys_ftruncate64(unsigned int fd, loff_t length); | 424 | asmlinkage long sys_ftruncate64(unsigned int fd, loff_t length); |
| 421 | #endif | 425 | #endif |
| @@ -771,8 +775,6 @@ asmlinkage long sys_openat(int dfd, const char __user *filename, int flags, | |||
| 771 | umode_t mode); | 775 | umode_t mode); |
| 772 | asmlinkage long sys_newfstatat(int dfd, const char __user *filename, | 776 | asmlinkage long sys_newfstatat(int dfd, const char __user *filename, |
| 773 | struct stat __user *statbuf, int flag); | 777 | struct stat __user *statbuf, int flag); |
| 774 | asmlinkage long sys_fstatat64(int dfd, const char __user *filename, | ||
| 775 | struct stat64 __user *statbuf, int flag); | ||
| 776 | asmlinkage long sys_readlinkat(int dfd, const char __user *path, char __user *buf, | 778 | asmlinkage long sys_readlinkat(int dfd, const char __user *path, char __user *buf, |
| 777 | int bufsiz); | 779 | int bufsiz); |
| 778 | asmlinkage long sys_utimensat(int dfd, const char __user *filename, | 780 | asmlinkage long sys_utimensat(int dfd, const char __user *filename, |
diff --git a/include/linux/ti_wilink_st.h b/include/linux/ti_wilink_st.h index 884d6263e962..c78dcfeaf25f 100644 --- a/include/linux/ti_wilink_st.h +++ b/include/linux/ti_wilink_st.h | |||
| @@ -86,6 +86,7 @@ struct st_proto_s { | |||
| 86 | extern long st_register(struct st_proto_s *); | 86 | extern long st_register(struct st_proto_s *); |
| 87 | extern long st_unregister(struct st_proto_s *); | 87 | extern long st_unregister(struct st_proto_s *); |
| 88 | 88 | ||
| 89 | extern struct ti_st_plat_data *dt_pdata; | ||
| 89 | 90 | ||
| 90 | /* | 91 | /* |
| 91 | * header information used by st_core.c | 92 | * header information used by st_core.c |
| @@ -261,7 +262,7 @@ struct kim_data_s { | |||
| 261 | struct completion kim_rcvd, ldisc_installed; | 262 | struct completion kim_rcvd, ldisc_installed; |
| 262 | char resp_buffer[30]; | 263 | char resp_buffer[30]; |
| 263 | const struct firmware *fw_entry; | 264 | const struct firmware *fw_entry; |
| 264 | long nshutdown; | 265 | unsigned nshutdown; |
| 265 | unsigned long rx_state; | 266 | unsigned long rx_state; |
| 266 | unsigned long rx_count; | 267 | unsigned long rx_count; |
| 267 | struct sk_buff *rx_skb; | 268 | struct sk_buff *rx_skb; |
| @@ -269,8 +270,8 @@ struct kim_data_s { | |||
| 269 | struct chip_version version; | 270 | struct chip_version version; |
| 270 | unsigned char ldisc_install; | 271 | unsigned char ldisc_install; |
| 271 | unsigned char dev_name[UART_DEV_NAME_LEN + 1]; | 272 | unsigned char dev_name[UART_DEV_NAME_LEN + 1]; |
| 272 | unsigned char flow_cntrl; | 273 | unsigned flow_cntrl; |
| 273 | unsigned long baud_rate; | 274 | unsigned baud_rate; |
| 274 | }; | 275 | }; |
| 275 | 276 | ||
| 276 | /** | 277 | /** |
| @@ -436,10 +437,10 @@ struct gps_event_hdr { | |||
| 436 | * | 437 | * |
| 437 | */ | 438 | */ |
| 438 | struct ti_st_plat_data { | 439 | struct ti_st_plat_data { |
| 439 | long nshutdown_gpio; | 440 | u32 nshutdown_gpio; |
| 440 | unsigned char dev_name[UART_DEV_NAME_LEN]; /* uart name */ | 441 | unsigned char dev_name[UART_DEV_NAME_LEN]; /* uart name */ |
| 441 | unsigned char flow_cntrl; /* flow control flag */ | 442 | u32 flow_cntrl; /* flow control flag */ |
| 442 | unsigned long baud_rate; | 443 | u32 baud_rate; |
| 443 | int (*suspend)(struct platform_device *, pm_message_t); | 444 | int (*suspend)(struct platform_device *, pm_message_t); |
| 444 | int (*resume)(struct platform_device *); | 445 | int (*resume)(struct platform_device *); |
| 445 | int (*chip_enable) (struct kim_data_s *); | 446 | int (*chip_enable) (struct kim_data_s *); |
diff --git a/include/linux/tick.h b/include/linux/tick.h index eda850ca757a..9c085dc12ae9 100644 --- a/include/linux/tick.h +++ b/include/linux/tick.h | |||
| @@ -79,6 +79,9 @@ extern void __init tick_init(void); | |||
| 79 | extern int tick_is_oneshot_available(void); | 79 | extern int tick_is_oneshot_available(void); |
| 80 | extern struct tick_device *tick_get_device(int cpu); | 80 | extern struct tick_device *tick_get_device(int cpu); |
| 81 | 81 | ||
| 82 | extern void tick_freeze(void); | ||
| 83 | extern void tick_unfreeze(void); | ||
| 84 | |||
| 82 | # ifdef CONFIG_HIGH_RES_TIMERS | 85 | # ifdef CONFIG_HIGH_RES_TIMERS |
| 83 | extern int tick_init_highres(void); | 86 | extern int tick_init_highres(void); |
| 84 | extern int tick_program_event(ktime_t expires, int force); | 87 | extern int tick_program_event(ktime_t expires, int force); |
| @@ -119,6 +122,8 @@ static inline int tick_oneshot_mode_active(void) { return 0; } | |||
| 119 | 122 | ||
| 120 | #else /* CONFIG_GENERIC_CLOCKEVENTS */ | 123 | #else /* CONFIG_GENERIC_CLOCKEVENTS */ |
| 121 | static inline void tick_init(void) { } | 124 | static inline void tick_init(void) { } |
| 125 | static inline void tick_freeze(void) { } | ||
| 126 | static inline void tick_unfreeze(void) { } | ||
| 122 | static inline void tick_cancel_sched_timer(int cpu) { } | 127 | static inline void tick_cancel_sched_timer(int cpu) { } |
| 123 | static inline void tick_clock_notify(void) { } | 128 | static inline void tick_clock_notify(void) { } |
| 124 | static inline int tick_check_oneshot_change(int allow_nohz) { return 0; } | 129 | static inline int tick_check_oneshot_change(int allow_nohz) { return 0; } |
| @@ -226,5 +231,4 @@ static inline void tick_nohz_task_switch(struct task_struct *tsk) | |||
| 226 | __tick_nohz_task_switch(tsk); | 231 | __tick_nohz_task_switch(tsk); |
| 227 | } | 232 | } |
| 228 | 233 | ||
| 229 | |||
| 230 | #endif | 234 | #endif |
diff --git a/include/linux/tty.h b/include/linux/tty.h index 7d66ae508e5c..358a337af598 100644 --- a/include/linux/tty.h +++ b/include/linux/tty.h | |||
| @@ -14,6 +14,29 @@ | |||
| 14 | #include <linux/llist.h> | 14 | #include <linux/llist.h> |
| 15 | 15 | ||
| 16 | 16 | ||
| 17 | /* | ||
| 18 | * Lock subclasses for tty locks | ||
| 19 | * | ||
| 20 | * TTY_LOCK_NORMAL is for normal ttys and master ptys. | ||
| 21 | * TTY_LOCK_SLAVE is for slave ptys only. | ||
| 22 | * | ||
| 23 | * Lock subclasses are necessary for handling nested locking with pty pairs. | ||
| 24 | * tty locks which use nested locking: | ||
| 25 | * | ||
| 26 | * legacy_mutex - Nested tty locks are necessary for releasing pty pairs. | ||
| 27 | * The stable lock order is master pty first, then slave pty. | ||
| 28 | * termios_rwsem - The stable lock order is tty_buffer lock->termios_rwsem. | ||
| 29 | * Subclassing this lock enables the slave pty to hold its | ||
| 30 | * termios_rwsem when claiming the master tty_buffer lock. | ||
| 31 | * tty_buffer lock - slave ptys can claim nested buffer lock when handling | ||
| 32 | * signal chars. The stable lock order is slave pty, then | ||
| 33 | * master. | ||
| 34 | */ | ||
| 35 | |||
| 36 | enum { | ||
| 37 | TTY_LOCK_NORMAL = 0, | ||
| 38 | TTY_LOCK_SLAVE, | ||
| 39 | }; | ||
| 17 | 40 | ||
| 18 | /* | 41 | /* |
| 19 | * (Note: the *_driver.minor_start values 1, 64, 128, 192 are | 42 | * (Note: the *_driver.minor_start values 1, 64, 128, 192 are |
| @@ -443,6 +466,7 @@ extern void tty_flush_to_ldisc(struct tty_struct *tty); | |||
| 443 | extern void tty_buffer_free_all(struct tty_port *port); | 466 | extern void tty_buffer_free_all(struct tty_port *port); |
| 444 | extern void tty_buffer_flush(struct tty_struct *tty, struct tty_ldisc *ld); | 467 | extern void tty_buffer_flush(struct tty_struct *tty, struct tty_ldisc *ld); |
| 445 | extern void tty_buffer_init(struct tty_port *port); | 468 | extern void tty_buffer_init(struct tty_port *port); |
| 469 | extern void tty_buffer_set_lock_subclass(struct tty_port *port); | ||
| 446 | extern speed_t tty_termios_baud_rate(struct ktermios *termios); | 470 | extern speed_t tty_termios_baud_rate(struct ktermios *termios); |
| 447 | extern speed_t tty_termios_input_baud_rate(struct ktermios *termios); | 471 | extern speed_t tty_termios_input_baud_rate(struct ktermios *termios); |
| 448 | extern void tty_termios_encode_baud_rate(struct ktermios *termios, | 472 | extern void tty_termios_encode_baud_rate(struct ktermios *termios, |
| @@ -467,7 +491,6 @@ static inline speed_t tty_get_baud_rate(struct tty_struct *tty) | |||
| 467 | 491 | ||
| 468 | extern void tty_termios_copy_hw(struct ktermios *new, struct ktermios *old); | 492 | extern void tty_termios_copy_hw(struct ktermios *new, struct ktermios *old); |
| 469 | extern int tty_termios_hw_change(struct ktermios *a, struct ktermios *b); | 493 | extern int tty_termios_hw_change(struct ktermios *a, struct ktermios *b); |
| 470 | extern int tty_set_termios(struct tty_struct *tty, struct ktermios *kt); | ||
| 471 | 494 | ||
| 472 | extern struct tty_ldisc *tty_ldisc_ref(struct tty_struct *); | 495 | extern struct tty_ldisc *tty_ldisc_ref(struct tty_struct *); |
| 473 | extern void tty_ldisc_deref(struct tty_ldisc *); | 496 | extern void tty_ldisc_deref(struct tty_ldisc *); |
diff --git a/include/linux/types.h b/include/linux/types.h index 62323825cff9..6747247e3f9f 100644 --- a/include/linux/types.h +++ b/include/linux/types.h | |||
| @@ -135,12 +135,9 @@ typedef unsigned long blkcnt_t; | |||
| 135 | #endif | 135 | #endif |
| 136 | 136 | ||
| 137 | /* | 137 | /* |
| 138 | * The type of an index into the pagecache. Use a #define so asm/types.h | 138 | * The type of an index into the pagecache. |
| 139 | * can override it. | ||
| 140 | */ | 139 | */ |
| 141 | #ifndef pgoff_t | ||
| 142 | #define pgoff_t unsigned long | 140 | #define pgoff_t unsigned long |
| 143 | #endif | ||
| 144 | 141 | ||
| 145 | /* A dma_addr_t can hold any valid DMA or bus address for the platform */ | 142 | /* A dma_addr_t can hold any valid DMA or bus address for the platform */ |
| 146 | #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT | 143 | #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT |
diff --git a/include/linux/uio.h b/include/linux/uio.h index 3e0cb4ea3905..07a022641996 100644 --- a/include/linux/uio.h +++ b/include/linux/uio.h | |||
| @@ -88,7 +88,9 @@ size_t iov_iter_zero(size_t bytes, struct iov_iter *); | |||
| 88 | unsigned long iov_iter_alignment(const struct iov_iter *i); | 88 | unsigned long iov_iter_alignment(const struct iov_iter *i); |
| 89 | void iov_iter_init(struct iov_iter *i, int direction, const struct iovec *iov, | 89 | void iov_iter_init(struct iov_iter *i, int direction, const struct iovec *iov, |
| 90 | unsigned long nr_segs, size_t count); | 90 | unsigned long nr_segs, size_t count); |
| 91 | void iov_iter_kvec(struct iov_iter *i, int direction, const struct kvec *iov, | 91 | void iov_iter_kvec(struct iov_iter *i, int direction, const struct kvec *kvec, |
| 92 | unsigned long nr_segs, size_t count); | ||
| 93 | void iov_iter_bvec(struct iov_iter *i, int direction, const struct bio_vec *bvec, | ||
| 92 | unsigned long nr_segs, size_t count); | 94 | unsigned long nr_segs, size_t count); |
| 93 | ssize_t iov_iter_get_pages(struct iov_iter *i, struct page **pages, | 95 | ssize_t iov_iter_get_pages(struct iov_iter *i, struct page **pages, |
| 94 | size_t maxsize, unsigned maxpages, size_t *start); | 96 | size_t maxsize, unsigned maxpages, size_t *start); |
diff --git a/include/linux/usb.h b/include/linux/usb.h index f89c24a03bd9..7ee1b5c3b4cb 100644 --- a/include/linux/usb.h +++ b/include/linux/usb.h | |||
| @@ -82,7 +82,7 @@ struct usb_host_interface { | |||
| 82 | int extralen; | 82 | int extralen; |
| 83 | unsigned char *extra; /* Extra descriptors */ | 83 | unsigned char *extra; /* Extra descriptors */ |
| 84 | 84 | ||
| 85 | /* array of desc.bNumEndpoint endpoints associated with this | 85 | /* array of desc.bNumEndpoints endpoints associated with this |
| 86 | * interface setting. these will be in no particular order. | 86 | * interface setting. these will be in no particular order. |
| 87 | */ | 87 | */ |
| 88 | struct usb_host_endpoint *endpoint; | 88 | struct usb_host_endpoint *endpoint; |
| @@ -127,10 +127,6 @@ enum usb_interface_condition { | |||
| 127 | * to the sysfs representation for that device. | 127 | * to the sysfs representation for that device. |
| 128 | * @pm_usage_cnt: PM usage counter for this interface | 128 | * @pm_usage_cnt: PM usage counter for this interface |
| 129 | * @reset_ws: Used for scheduling resets from atomic context. | 129 | * @reset_ws: Used for scheduling resets from atomic context. |
| 130 | * @reset_running: set to 1 if the interface is currently running a | ||
| 131 | * queued reset so that usb_cancel_queued_reset() doesn't try to | ||
| 132 | * remove from the workqueue when running inside the worker | ||
| 133 | * thread. See __usb_queue_reset_device(). | ||
| 134 | * @resetting_device: USB core reset the device, so use alt setting 0 as | 130 | * @resetting_device: USB core reset the device, so use alt setting 0 as |
| 135 | * current; needs bandwidth alloc after reset. | 131 | * current; needs bandwidth alloc after reset. |
| 136 | * | 132 | * |
| @@ -181,7 +177,6 @@ struct usb_interface { | |||
| 181 | unsigned needs_remote_wakeup:1; /* driver requires remote wakeup */ | 177 | unsigned needs_remote_wakeup:1; /* driver requires remote wakeup */ |
| 182 | unsigned needs_altsetting0:1; /* switch to altsetting 0 is pending */ | 178 | unsigned needs_altsetting0:1; /* switch to altsetting 0 is pending */ |
| 183 | unsigned needs_binding:1; /* needs delayed unbind/rebind */ | 179 | unsigned needs_binding:1; /* needs delayed unbind/rebind */ |
| 184 | unsigned reset_running:1; | ||
| 185 | unsigned resetting_device:1; /* true: bandwidth alloc after reset */ | 180 | unsigned resetting_device:1; /* true: bandwidth alloc after reset */ |
| 186 | 181 | ||
| 187 | struct device dev; /* interface specific device info */ | 182 | struct device dev; /* interface specific device info */ |
diff --git a/include/linux/usb/ehci_pdriver.h b/include/linux/usb/ehci_pdriver.h index 7eb4dcd0d386..db0431b39a63 100644 --- a/include/linux/usb/ehci_pdriver.h +++ b/include/linux/usb/ehci_pdriver.h | |||
| @@ -34,6 +34,8 @@ struct usb_hcd; | |||
| 34 | * after initialization. | 34 | * after initialization. |
| 35 | * @no_io_watchdog: set to 1 if the controller does not need the I/O | 35 | * @no_io_watchdog: set to 1 if the controller does not need the I/O |
| 36 | * watchdog to run. | 36 | * watchdog to run. |
| 37 | * @reset_on_resume: set to 1 if the controller needs to be reset after | ||
| 38 | * a suspend / resume cycle (but can't detect that itself). | ||
| 37 | * | 39 | * |
| 38 | * These are general configuration options for the EHCI controller. All of | 40 | * These are general configuration options for the EHCI controller. All of |
| 39 | * these options are activating more or less workarounds for some hardware. | 41 | * these options are activating more or less workarounds for some hardware. |
| @@ -45,6 +47,8 @@ struct usb_ehci_pdata { | |||
| 45 | unsigned big_endian_desc:1; | 47 | unsigned big_endian_desc:1; |
| 46 | unsigned big_endian_mmio:1; | 48 | unsigned big_endian_mmio:1; |
| 47 | unsigned no_io_watchdog:1; | 49 | unsigned no_io_watchdog:1; |
| 50 | unsigned reset_on_resume:1; | ||
| 51 | unsigned dma_mask_64:1; | ||
| 48 | 52 | ||
| 49 | /* Turn on all power and clocks */ | 53 | /* Turn on all power and clocks */ |
| 50 | int (*power_on)(struct platform_device *pdev); | 54 | int (*power_on)(struct platform_device *pdev); |
diff --git a/include/linux/usb/gadget.h b/include/linux/usb/gadget.h index 70ddb3943b62..e2f00fd8cd47 100644 --- a/include/linux/usb/gadget.h +++ b/include/linux/usb/gadget.h | |||
| @@ -523,6 +523,7 @@ struct usb_gadget_ops { | |||
| 523 | * enabled HNP support. | 523 | * enabled HNP support. |
| 524 | * @quirk_ep_out_aligned_size: epout requires buffer size to be aligned to | 524 | * @quirk_ep_out_aligned_size: epout requires buffer size to be aligned to |
| 525 | * MaxPacketSize. | 525 | * MaxPacketSize. |
| 526 | * @is_selfpowered: if the gadget is self-powered. | ||
| 526 | * | 527 | * |
| 527 | * Gadgets have a mostly-portable "gadget driver" implementing device | 528 | * Gadgets have a mostly-portable "gadget driver" implementing device |
| 528 | * functions, handling all usb configurations and interfaces. Gadget | 529 | * functions, handling all usb configurations and interfaces. Gadget |
| @@ -563,6 +564,7 @@ struct usb_gadget { | |||
| 563 | unsigned a_hnp_support:1; | 564 | unsigned a_hnp_support:1; |
| 564 | unsigned a_alt_hnp_support:1; | 565 | unsigned a_alt_hnp_support:1; |
| 565 | unsigned quirk_ep_out_aligned_size:1; | 566 | unsigned quirk_ep_out_aligned_size:1; |
| 567 | unsigned is_selfpowered:1; | ||
| 566 | }; | 568 | }; |
| 567 | #define work_to_gadget(w) (container_of((w), struct usb_gadget, work)) | 569 | #define work_to_gadget(w) (container_of((w), struct usb_gadget, work)) |
| 568 | 570 | ||
diff --git a/include/linux/usb/hcd.h b/include/linux/usb/hcd.h index 086bf13307e6..68b1e836dff1 100644 --- a/include/linux/usb/hcd.h +++ b/include/linux/usb/hcd.h | |||
| @@ -146,6 +146,8 @@ struct usb_hcd { | |||
| 146 | unsigned amd_resume_bug:1; /* AMD remote wakeup quirk */ | 146 | unsigned amd_resume_bug:1; /* AMD remote wakeup quirk */ |
| 147 | unsigned can_do_streams:1; /* HC supports streams */ | 147 | unsigned can_do_streams:1; /* HC supports streams */ |
| 148 | unsigned tpl_support:1; /* OTG & EH TPL support */ | 148 | unsigned tpl_support:1; /* OTG & EH TPL support */ |
| 149 | unsigned cant_recv_wakeups:1; | ||
| 150 | /* wakeup requests from downstream aren't received */ | ||
| 149 | 151 | ||
| 150 | unsigned int irq; /* irq allocated */ | 152 | unsigned int irq; /* irq allocated */ |
| 151 | void __iomem *regs; /* device memory/io */ | 153 | void __iomem *regs; /* device memory/io */ |
| @@ -453,6 +455,7 @@ extern const struct dev_pm_ops usb_hcd_pci_pm_ops; | |||
| 453 | #endif /* CONFIG_PCI */ | 455 | #endif /* CONFIG_PCI */ |
| 454 | 456 | ||
| 455 | /* pci-ish (pdev null is ok) buffer alloc/mapping support */ | 457 | /* pci-ish (pdev null is ok) buffer alloc/mapping support */ |
| 458 | void usb_init_pool_max(void); | ||
| 456 | int hcd_buffer_create(struct usb_hcd *hcd); | 459 | int hcd_buffer_create(struct usb_hcd *hcd); |
| 457 | void hcd_buffer_destroy(struct usb_hcd *hcd); | 460 | void hcd_buffer_destroy(struct usb_hcd *hcd); |
| 458 | 461 | ||
diff --git a/include/linux/usb/phy.h b/include/linux/usb/phy.h index f499c23e6342..bc91b5d380fd 100644 --- a/include/linux/usb/phy.h +++ b/include/linux/usb/phy.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | /* USB OTG (On The Go) defines */ | ||
| 2 | /* | 1 | /* |
| 2 | * USB PHY defines | ||
| 3 | * | 3 | * |
| 4 | * These APIs may be used between USB controllers. USB device drivers | 4 | * These APIs may be used between USB controllers. USB device drivers |
| 5 | * (for either host or peripheral roles) don't use these calls; they | 5 | * (for either host or peripheral roles) don't use these calls; they |
| @@ -106,7 +106,7 @@ struct usb_phy { | |||
| 106 | int (*set_power)(struct usb_phy *x, | 106 | int (*set_power)(struct usb_phy *x, |
| 107 | unsigned mA); | 107 | unsigned mA); |
| 108 | 108 | ||
| 109 | /* for non-OTG B devices: set transceiver into suspend mode */ | 109 | /* Set transceiver into suspend mode */ |
| 110 | int (*set_suspend)(struct usb_phy *x, | 110 | int (*set_suspend)(struct usb_phy *x, |
| 111 | int suspend); | 111 | int suspend); |
| 112 | 112 | ||
diff --git a/include/linux/usb/usb_phy_generic.h b/include/linux/usb/usb_phy_generic.h index 68adae83affc..c13632d5292e 100644 --- a/include/linux/usb/usb_phy_generic.h +++ b/include/linux/usb/usb_phy_generic.h | |||
| @@ -2,6 +2,7 @@ | |||
| 2 | #define __LINUX_USB_NOP_XCEIV_H | 2 | #define __LINUX_USB_NOP_XCEIV_H |
| 3 | 3 | ||
| 4 | #include <linux/usb/otg.h> | 4 | #include <linux/usb/otg.h> |
| 5 | #include <linux/gpio/consumer.h> | ||
| 5 | 6 | ||
| 6 | struct usb_phy_generic_platform_data { | 7 | struct usb_phy_generic_platform_data { |
| 7 | enum usb_phy_type type; | 8 | enum usb_phy_type type; |
| @@ -11,6 +12,7 @@ struct usb_phy_generic_platform_data { | |||
| 11 | unsigned int needs_vcc:1; | 12 | unsigned int needs_vcc:1; |
| 12 | unsigned int needs_reset:1; /* deprecated */ | 13 | unsigned int needs_reset:1; /* deprecated */ |
| 13 | int gpio_reset; | 14 | int gpio_reset; |
| 15 | struct gpio_desc *gpiod_vbus; | ||
| 14 | }; | 16 | }; |
| 15 | 17 | ||
| 16 | #if IS_ENABLED(CONFIG_NOP_USB_XCEIV) | 18 | #if IS_ENABLED(CONFIG_NOP_USB_XCEIV) |
diff --git a/include/linux/vmalloc.h b/include/linux/vmalloc.h index b87696fdf06a..7d7acb35603d 100644 --- a/include/linux/vmalloc.h +++ b/include/linux/vmalloc.h | |||
| @@ -16,6 +16,7 @@ struct vm_area_struct; /* vma defining user mapping in mm_types.h */ | |||
| 16 | #define VM_USERMAP 0x00000008 /* suitable for remap_vmalloc_range */ | 16 | #define VM_USERMAP 0x00000008 /* suitable for remap_vmalloc_range */ |
| 17 | #define VM_VPAGES 0x00000010 /* buffer for pages was vmalloc'ed */ | 17 | #define VM_VPAGES 0x00000010 /* buffer for pages was vmalloc'ed */ |
| 18 | #define VM_UNINITIALIZED 0x00000020 /* vm_struct is not fully initialized */ | 18 | #define VM_UNINITIALIZED 0x00000020 /* vm_struct is not fully initialized */ |
| 19 | #define VM_NO_GUARD 0x00000040 /* don't add guard page */ | ||
| 19 | /* bits [20..32] reserved for arch specific ioremap internals */ | 20 | /* bits [20..32] reserved for arch specific ioremap internals */ |
| 20 | 21 | ||
| 21 | /* | 22 | /* |
| @@ -75,7 +76,9 @@ extern void *vmalloc_32_user(unsigned long size); | |||
| 75 | extern void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot); | 76 | extern void *__vmalloc(unsigned long size, gfp_t gfp_mask, pgprot_t prot); |
| 76 | extern void *__vmalloc_node_range(unsigned long size, unsigned long align, | 77 | extern void *__vmalloc_node_range(unsigned long size, unsigned long align, |
| 77 | unsigned long start, unsigned long end, gfp_t gfp_mask, | 78 | unsigned long start, unsigned long end, gfp_t gfp_mask, |
| 78 | pgprot_t prot, int node, const void *caller); | 79 | pgprot_t prot, unsigned long vm_flags, int node, |
| 80 | const void *caller); | ||
| 81 | |||
| 79 | extern void vfree(const void *addr); | 82 | extern void vfree(const void *addr); |
| 80 | 83 | ||
| 81 | extern void *vmap(struct page **pages, unsigned int count, | 84 | extern void *vmap(struct page **pages, unsigned int count, |
| @@ -96,8 +99,12 @@ void vmalloc_sync_all(void); | |||
| 96 | 99 | ||
| 97 | static inline size_t get_vm_area_size(const struct vm_struct *area) | 100 | static inline size_t get_vm_area_size(const struct vm_struct *area) |
| 98 | { | 101 | { |
| 99 | /* return actual size without guard page */ | 102 | if (!(area->flags & VM_NO_GUARD)) |
| 100 | return area->size - PAGE_SIZE; | 103 | /* return actual size without guard page */ |
| 104 | return area->size - PAGE_SIZE; | ||
| 105 | else | ||
| 106 | return area->size; | ||
| 107 | |||
| 101 | } | 108 | } |
| 102 | 109 | ||
| 103 | extern struct vm_struct *get_vm_area(unsigned long size, unsigned long flags); | 110 | extern struct vm_struct *get_vm_area(unsigned long size, unsigned long flags); |
diff --git a/include/linux/vt_buffer.h b/include/linux/vt_buffer.h index 057db7d2f448..f38c10ba3ff5 100644 --- a/include/linux/vt_buffer.h +++ b/include/linux/vt_buffer.h | |||
| @@ -21,10 +21,6 @@ | |||
| 21 | #ifndef VT_BUF_HAVE_RW | 21 | #ifndef VT_BUF_HAVE_RW |
| 22 | #define scr_writew(val, addr) (*(addr) = (val)) | 22 | #define scr_writew(val, addr) (*(addr) = (val)) |
| 23 | #define scr_readw(addr) (*(addr)) | 23 | #define scr_readw(addr) (*(addr)) |
| 24 | #define scr_memcpyw(d, s, c) memcpy(d, s, c) | ||
| 25 | #define scr_memmovew(d, s, c) memmove(d, s, c) | ||
| 26 | #define VT_BUF_HAVE_MEMCPYW | ||
| 27 | #define VT_BUF_HAVE_MEMMOVEW | ||
| 28 | #endif | 24 | #endif |
| 29 | 25 | ||
| 30 | #ifndef VT_BUF_HAVE_MEMSETW | 26 | #ifndef VT_BUF_HAVE_MEMSETW |
diff --git a/include/linux/wait.h b/include/linux/wait.h index 537d58eea8a0..2db83349865b 100644 --- a/include/linux/wait.h +++ b/include/linux/wait.h | |||
| @@ -267,6 +267,21 @@ do { \ | |||
| 267 | __wait_event(wq, condition); \ | 267 | __wait_event(wq, condition); \ |
| 268 | } while (0) | 268 | } while (0) |
| 269 | 269 | ||
| 270 | #define __io_wait_event(wq, condition) \ | ||
| 271 | (void)___wait_event(wq, condition, TASK_UNINTERRUPTIBLE, 0, 0, \ | ||
| 272 | io_schedule()) | ||
| 273 | |||
| 274 | /* | ||
| 275 | * io_wait_event() -- like wait_event() but with io_schedule() | ||
| 276 | */ | ||
| 277 | #define io_wait_event(wq, condition) \ | ||
| 278 | do { \ | ||
| 279 | might_sleep(); \ | ||
| 280 | if (condition) \ | ||
| 281 | break; \ | ||
| 282 | __io_wait_event(wq, condition); \ | ||
| 283 | } while (0) | ||
| 284 | |||
| 270 | #define __wait_event_freezable(wq, condition) \ | 285 | #define __wait_event_freezable(wq, condition) \ |
| 271 | ___wait_event(wq, condition, TASK_INTERRUPTIBLE, 0, 0, \ | 286 | ___wait_event(wq, condition, TASK_INTERRUPTIBLE, 0, 0, \ |
| 272 | schedule(); try_to_freeze()) | 287 | schedule(); try_to_freeze()) |
diff --git a/include/linux/zpool.h b/include/linux/zpool.h index f14bd75f08b3..56529b34dc63 100644 --- a/include/linux/zpool.h +++ b/include/linux/zpool.h | |||
| @@ -36,7 +36,8 @@ enum zpool_mapmode { | |||
| 36 | ZPOOL_MM_DEFAULT = ZPOOL_MM_RW | 36 | ZPOOL_MM_DEFAULT = ZPOOL_MM_RW |
| 37 | }; | 37 | }; |
| 38 | 38 | ||
| 39 | struct zpool *zpool_create_pool(char *type, gfp_t gfp, struct zpool_ops *ops); | 39 | struct zpool *zpool_create_pool(char *type, char *name, |
| 40 | gfp_t gfp, struct zpool_ops *ops); | ||
| 40 | 41 | ||
| 41 | char *zpool_get_type(struct zpool *pool); | 42 | char *zpool_get_type(struct zpool *pool); |
| 42 | 43 | ||
| @@ -80,7 +81,7 @@ struct zpool_driver { | |||
| 80 | atomic_t refcount; | 81 | atomic_t refcount; |
| 81 | struct list_head list; | 82 | struct list_head list; |
| 82 | 83 | ||
| 83 | void *(*create)(gfp_t gfp, struct zpool_ops *ops); | 84 | void *(*create)(char *name, gfp_t gfp, struct zpool_ops *ops); |
| 84 | void (*destroy)(void *pool); | 85 | void (*destroy)(void *pool); |
| 85 | 86 | ||
| 86 | int (*malloc)(void *pool, size_t size, gfp_t gfp, | 87 | int (*malloc)(void *pool, size_t size, gfp_t gfp, |
diff --git a/include/linux/zsmalloc.h b/include/linux/zsmalloc.h index 05c214760977..3283c6a55425 100644 --- a/include/linux/zsmalloc.h +++ b/include/linux/zsmalloc.h | |||
| @@ -36,7 +36,7 @@ enum zs_mapmode { | |||
| 36 | 36 | ||
| 37 | struct zs_pool; | 37 | struct zs_pool; |
| 38 | 38 | ||
| 39 | struct zs_pool *zs_create_pool(gfp_t flags); | 39 | struct zs_pool *zs_create_pool(char *name, gfp_t flags); |
| 40 | void zs_destroy_pool(struct zs_pool *pool); | 40 | void zs_destroy_pool(struct zs_pool *pool); |
| 41 | 41 | ||
| 42 | unsigned long zs_malloc(struct zs_pool *pool, size_t size); | 42 | unsigned long zs_malloc(struct zs_pool *pool, size_t size); |
