diff options
Diffstat (limited to 'include/linux')
60 files changed, 1323 insertions, 434 deletions
diff --git a/include/linux/binfmts.h b/include/linux/binfmts.h index 7e736e201c46..c1e82c514443 100644 --- a/include/linux/binfmts.h +++ b/include/linux/binfmts.h | |||
@@ -69,6 +69,11 @@ extern void remove_arg_zero(struct linux_binprm *); | |||
69 | extern int search_binary_handler(struct linux_binprm *,struct pt_regs *); | 69 | extern int search_binary_handler(struct linux_binprm *,struct pt_regs *); |
70 | extern int flush_old_exec(struct linux_binprm * bprm); | 70 | extern int flush_old_exec(struct linux_binprm * bprm); |
71 | 71 | ||
72 | extern int suid_dumpable; | ||
73 | #define SUID_DUMP_DISABLE 0 /* No setuid dumping */ | ||
74 | #define SUID_DUMP_USER 1 /* Dump as user of process */ | ||
75 | #define SUID_DUMP_ROOT 2 /* Dump as root */ | ||
76 | |||
72 | /* Stack area protections */ | 77 | /* Stack area protections */ |
73 | #define EXSTACK_DEFAULT 0 /* Whatever the arch defaults to */ | 78 | #define EXSTACK_DEFAULT 0 /* Whatever the arch defaults to */ |
74 | #define EXSTACK_DISABLE_X 1 /* Disable executable stacks */ | 79 | #define EXSTACK_DISABLE_X 1 /* Disable executable stacks */ |
diff --git a/include/linux/blkdev.h b/include/linux/blkdev.h index 4a99b76c5a33..60272141ff19 100644 --- a/include/linux/blkdev.h +++ b/include/linux/blkdev.h | |||
@@ -285,16 +285,12 @@ enum blk_queue_state { | |||
285 | Queue_up, | 285 | Queue_up, |
286 | }; | 286 | }; |
287 | 287 | ||
288 | #define BLK_TAGS_PER_LONG (sizeof(unsigned long) * 8) | ||
289 | #define BLK_TAGS_MASK (BLK_TAGS_PER_LONG - 1) | ||
290 | |||
291 | struct blk_queue_tag { | 288 | struct blk_queue_tag { |
292 | struct request **tag_index; /* map of busy tags */ | 289 | struct request **tag_index; /* map of busy tags */ |
293 | unsigned long *tag_map; /* bit map of free/busy tags */ | 290 | unsigned long *tag_map; /* bit map of free/busy tags */ |
294 | struct list_head busy_list; /* fifo list of busy tags */ | 291 | struct list_head busy_list; /* fifo list of busy tags */ |
295 | int busy; /* current depth */ | 292 | int busy; /* current depth */ |
296 | int max_depth; /* what we will send to device */ | 293 | int max_depth; /* what we will send to device */ |
297 | int real_max_depth; /* what the array can hold */ | ||
298 | atomic_t refcnt; /* map can be shared */ | 294 | atomic_t refcnt; /* map can be shared */ |
299 | }; | 295 | }; |
300 | 296 | ||
@@ -396,6 +392,7 @@ struct request_queue | |||
396 | */ | 392 | */ |
397 | unsigned int sg_timeout; | 393 | unsigned int sg_timeout; |
398 | unsigned int sg_reserved_size; | 394 | unsigned int sg_reserved_size; |
395 | int node; | ||
399 | 396 | ||
400 | struct list_head drain_list; | 397 | struct list_head drain_list; |
401 | 398 | ||
@@ -615,6 +612,8 @@ static inline void blkdev_dequeue_request(struct request *req) | |||
615 | /* | 612 | /* |
616 | * Access functions for manipulating queue properties | 613 | * Access functions for manipulating queue properties |
617 | */ | 614 | */ |
615 | extern request_queue_t *blk_init_queue_node(request_fn_proc *rfn, | ||
616 | spinlock_t *lock, int node_id); | ||
618 | extern request_queue_t *blk_init_queue(request_fn_proc *, spinlock_t *); | 617 | extern request_queue_t *blk_init_queue(request_fn_proc *, spinlock_t *); |
619 | extern void blk_cleanup_queue(request_queue_t *); | 618 | extern void blk_cleanup_queue(request_queue_t *); |
620 | extern void blk_queue_make_request(request_queue_t *, make_request_fn *); | 619 | extern void blk_queue_make_request(request_queue_t *, make_request_fn *); |
@@ -646,7 +645,8 @@ extern void blk_wait_queue_drained(request_queue_t *, int); | |||
646 | extern void blk_finish_queue_drain(request_queue_t *); | 645 | extern void blk_finish_queue_drain(request_queue_t *); |
647 | 646 | ||
648 | int blk_get_queue(request_queue_t *); | 647 | int blk_get_queue(request_queue_t *); |
649 | request_queue_t *blk_alloc_queue(int); | 648 | request_queue_t *blk_alloc_queue(int gfp_mask); |
649 | request_queue_t *blk_alloc_queue_node(int,int); | ||
650 | #define blk_put_queue(q) blk_cleanup_queue((q)) | 650 | #define blk_put_queue(q) blk_cleanup_queue((q)) |
651 | 651 | ||
652 | /* | 652 | /* |
diff --git a/include/linux/bootmem.h b/include/linux/bootmem.h index 0dd8ca1a3d5a..500f451ce0c0 100644 --- a/include/linux/bootmem.h +++ b/include/linux/bootmem.h | |||
@@ -67,6 +67,15 @@ extern void * __init __alloc_bootmem_node (pg_data_t *pgdat, unsigned long size, | |||
67 | __alloc_bootmem_node((pgdat), (x), PAGE_SIZE, 0) | 67 | __alloc_bootmem_node((pgdat), (x), PAGE_SIZE, 0) |
68 | #endif /* !CONFIG_HAVE_ARCH_BOOTMEM_NODE */ | 68 | #endif /* !CONFIG_HAVE_ARCH_BOOTMEM_NODE */ |
69 | 69 | ||
70 | #ifdef CONFIG_HAVE_ARCH_ALLOC_REMAP | ||
71 | extern void *alloc_remap(int nid, unsigned long size); | ||
72 | #else | ||
73 | static inline void *alloc_remap(int nid, unsigned long size) | ||
74 | { | ||
75 | return NULL; | ||
76 | } | ||
77 | #endif | ||
78 | |||
70 | extern unsigned long __initdata nr_kernel_pages; | 79 | extern unsigned long __initdata nr_kernel_pages; |
71 | extern unsigned long __initdata nr_all_pages; | 80 | extern unsigned long __initdata nr_all_pages; |
72 | 81 | ||
diff --git a/include/linux/dqblk_v1.h b/include/linux/dqblk_v1.h index 42fbf4797156..57f1250d5a52 100644 --- a/include/linux/dqblk_v1.h +++ b/include/linux/dqblk_v1.h | |||
@@ -11,6 +11,12 @@ | |||
11 | /* Root squash turned on */ | 11 | /* Root squash turned on */ |
12 | #define V1_DQF_RSQUASH 1 | 12 | #define V1_DQF_RSQUASH 1 |
13 | 13 | ||
14 | /* Numbers of blocks needed for updates */ | ||
15 | #define V1_INIT_ALLOC 1 | ||
16 | #define V1_INIT_REWRITE 1 | ||
17 | #define V1_DEL_ALLOC 0 | ||
18 | #define V1_DEL_REWRITE 2 | ||
19 | |||
14 | /* Special information about quotafile */ | 20 | /* Special information about quotafile */ |
15 | struct v1_mem_dqinfo { | 21 | struct v1_mem_dqinfo { |
16 | }; | 22 | }; |
diff --git a/include/linux/dqblk_v2.h b/include/linux/dqblk_v2.h index 4a6c5f6867bb..4f853322cb7f 100644 --- a/include/linux/dqblk_v2.h +++ b/include/linux/dqblk_v2.h | |||
@@ -10,6 +10,12 @@ | |||
10 | /* id numbers of quota format */ | 10 | /* id numbers of quota format */ |
11 | #define QFMT_VFS_V0 2 | 11 | #define QFMT_VFS_V0 2 |
12 | 12 | ||
13 | /* Numbers of blocks needed for updates */ | ||
14 | #define V2_INIT_ALLOC 4 | ||
15 | #define V2_INIT_REWRITE 2 | ||
16 | #define V2_DEL_ALLOC 0 | ||
17 | #define V2_DEL_REWRITE 6 | ||
18 | |||
13 | /* Inmemory copy of version specific information */ | 19 | /* Inmemory copy of version specific information */ |
14 | struct v2_mem_dqinfo { | 20 | struct v2_mem_dqinfo { |
15 | unsigned int dqi_blocks; | 21 | unsigned int dqi_blocks; |
diff --git a/include/linux/ext2_fs.h b/include/linux/ext2_fs.h index fab43527e597..a657130ba03a 100644 --- a/include/linux/ext2_fs.h +++ b/include/linux/ext2_fs.h | |||
@@ -300,18 +300,19 @@ struct ext2_inode { | |||
300 | /* | 300 | /* |
301 | * Mount flags | 301 | * Mount flags |
302 | */ | 302 | */ |
303 | #define EXT2_MOUNT_CHECK 0x0001 /* Do mount-time checks */ | 303 | #define EXT2_MOUNT_CHECK 0x000001 /* Do mount-time checks */ |
304 | #define EXT2_MOUNT_OLDALLOC 0x0002 /* Don't use the new Orlov allocator */ | 304 | #define EXT2_MOUNT_OLDALLOC 0x000002 /* Don't use the new Orlov allocator */ |
305 | #define EXT2_MOUNT_GRPID 0x0004 /* Create files with directory's group */ | 305 | #define EXT2_MOUNT_GRPID 0x000004 /* Create files with directory's group */ |
306 | #define EXT2_MOUNT_DEBUG 0x0008 /* Some debugging messages */ | 306 | #define EXT2_MOUNT_DEBUG 0x000008 /* Some debugging messages */ |
307 | #define EXT2_MOUNT_ERRORS_CONT 0x0010 /* Continue on errors */ | 307 | #define EXT2_MOUNT_ERRORS_CONT 0x000010 /* Continue on errors */ |
308 | #define EXT2_MOUNT_ERRORS_RO 0x0020 /* Remount fs ro on errors */ | 308 | #define EXT2_MOUNT_ERRORS_RO 0x000020 /* Remount fs ro on errors */ |
309 | #define EXT2_MOUNT_ERRORS_PANIC 0x0040 /* Panic on errors */ | 309 | #define EXT2_MOUNT_ERRORS_PANIC 0x000040 /* Panic on errors */ |
310 | #define EXT2_MOUNT_MINIX_DF 0x0080 /* Mimics the Minix statfs */ | 310 | #define EXT2_MOUNT_MINIX_DF 0x000080 /* Mimics the Minix statfs */ |
311 | #define EXT2_MOUNT_NOBH 0x0100 /* No buffer_heads */ | 311 | #define EXT2_MOUNT_NOBH 0x000100 /* No buffer_heads */ |
312 | #define EXT2_MOUNT_NO_UID32 0x0200 /* Disable 32-bit UIDs */ | 312 | #define EXT2_MOUNT_NO_UID32 0x000200 /* Disable 32-bit UIDs */ |
313 | #define EXT2_MOUNT_XATTR_USER 0x4000 /* Extended user attributes */ | 313 | #define EXT2_MOUNT_XATTR_USER 0x004000 /* Extended user attributes */ |
314 | #define EXT2_MOUNT_POSIX_ACL 0x8000 /* POSIX Access Control Lists */ | 314 | #define EXT2_MOUNT_POSIX_ACL 0x008000 /* POSIX Access Control Lists */ |
315 | #define EXT2_MOUNT_XIP 0x010000 /* Execute in place */ | ||
315 | 316 | ||
316 | #define clear_opt(o, opt) o &= ~EXT2_MOUNT_##opt | 317 | #define clear_opt(o, opt) o &= ~EXT2_MOUNT_##opt |
317 | #define set_opt(o, opt) o |= EXT2_MOUNT_##opt | 318 | #define set_opt(o, opt) o |= EXT2_MOUNT_##opt |
diff --git a/include/linux/ext3_fs.h b/include/linux/ext3_fs.h index 74ad31781e3e..4b6e1ab216a5 100644 --- a/include/linux/ext3_fs.h +++ b/include/linux/ext3_fs.h | |||
@@ -358,6 +358,7 @@ struct ext3_inode { | |||
358 | #define EXT3_MOUNT_RESERVATION 0x10000 /* Preallocation */ | 358 | #define EXT3_MOUNT_RESERVATION 0x10000 /* Preallocation */ |
359 | #define EXT3_MOUNT_BARRIER 0x20000 /* Use block barriers */ | 359 | #define EXT3_MOUNT_BARRIER 0x20000 /* Use block barriers */ |
360 | #define EXT3_MOUNT_NOBH 0x40000 /* No bufferheads */ | 360 | #define EXT3_MOUNT_NOBH 0x40000 /* No bufferheads */ |
361 | #define EXT3_MOUNT_QUOTA 0x80000 /* Some quota option set */ | ||
361 | 362 | ||
362 | /* Compatibility, for having both ext2_fs.h and ext3_fs.h included at once */ | 363 | /* Compatibility, for having both ext2_fs.h and ext3_fs.h included at once */ |
363 | #ifndef _LINUX_EXT2_FS_H | 364 | #ifndef _LINUX_EXT2_FS_H |
diff --git a/include/linux/ext3_jbd.h b/include/linux/ext3_jbd.h index e8292af9033b..c8307c02dd07 100644 --- a/include/linux/ext3_jbd.h +++ b/include/linux/ext3_jbd.h | |||
@@ -42,15 +42,15 @@ | |||
42 | * superblock only gets updated once, of course, so don't bother | 42 | * superblock only gets updated once, of course, so don't bother |
43 | * counting that again for the quota updates. */ | 43 | * counting that again for the quota updates. */ |
44 | 44 | ||
45 | #define EXT3_DATA_TRANS_BLOCKS (EXT3_SINGLEDATA_TRANS_BLOCKS + \ | 45 | #define EXT3_DATA_TRANS_BLOCKS(sb) (EXT3_SINGLEDATA_TRANS_BLOCKS + \ |
46 | EXT3_XATTR_TRANS_BLOCKS - 2 + \ | 46 | EXT3_XATTR_TRANS_BLOCKS - 2 + \ |
47 | 2*EXT3_QUOTA_TRANS_BLOCKS) | 47 | 2*EXT3_QUOTA_TRANS_BLOCKS(sb)) |
48 | 48 | ||
49 | /* Delete operations potentially hit one directory's namespace plus an | 49 | /* Delete operations potentially hit one directory's namespace plus an |
50 | * entire inode, plus arbitrary amounts of bitmap/indirection data. Be | 50 | * entire inode, plus arbitrary amounts of bitmap/indirection data. Be |
51 | * generous. We can grow the delete transaction later if necessary. */ | 51 | * generous. We can grow the delete transaction later if necessary. */ |
52 | 52 | ||
53 | #define EXT3_DELETE_TRANS_BLOCKS (2 * EXT3_DATA_TRANS_BLOCKS + 64) | 53 | #define EXT3_DELETE_TRANS_BLOCKS(sb) (2 * EXT3_DATA_TRANS_BLOCKS(sb) + 64) |
54 | 54 | ||
55 | /* Define an arbitrary limit for the amount of data we will anticipate | 55 | /* Define an arbitrary limit for the amount of data we will anticipate |
56 | * writing to any given transaction. For unbounded transactions such as | 56 | * writing to any given transaction. For unbounded transactions such as |
@@ -74,14 +74,17 @@ | |||
74 | #ifdef CONFIG_QUOTA | 74 | #ifdef CONFIG_QUOTA |
75 | /* Amount of blocks needed for quota update - we know that the structure was | 75 | /* Amount of blocks needed for quota update - we know that the structure was |
76 | * allocated so we need to update only inode+data */ | 76 | * allocated so we need to update only inode+data */ |
77 | #define EXT3_QUOTA_TRANS_BLOCKS 2 | 77 | #define EXT3_QUOTA_TRANS_BLOCKS(sb) (test_opt(sb, QUOTA) ? 2 : 0) |
78 | /* Amount of blocks needed for quota insert/delete - we do some block writes | 78 | /* Amount of blocks needed for quota insert/delete - we do some block writes |
79 | * but inode, sb and group updates are done only once */ | 79 | * but inode, sb and group updates are done only once */ |
80 | #define EXT3_QUOTA_INIT_BLOCKS (DQUOT_MAX_WRITES*\ | 80 | #define EXT3_QUOTA_INIT_BLOCKS(sb) (test_opt(sb, QUOTA) ? (DQUOT_INIT_ALLOC*\ |
81 | (EXT3_SINGLEDATA_TRANS_BLOCKS-3)+3) | 81 | (EXT3_SINGLEDATA_TRANS_BLOCKS-3)+3+DQUOT_INIT_REWRITE) : 0) |
82 | #define EXT3_QUOTA_DEL_BLOCKS(sb) (test_opt(sb, QUOTA) ? (DQUOT_DEL_ALLOC*\ | ||
83 | (EXT3_SINGLEDATA_TRANS_BLOCKS-3)+3+DQUOT_DEL_REWRITE) : 0) | ||
82 | #else | 84 | #else |
83 | #define EXT3_QUOTA_TRANS_BLOCKS 0 | 85 | #define EXT3_QUOTA_TRANS_BLOCKS(sb) 0 |
84 | #define EXT3_QUOTA_INIT_BLOCKS 0 | 86 | #define EXT3_QUOTA_INIT_BLOCKS(sb) 0 |
87 | #define EXT3_QUOTA_DEL_BLOCKS(sb) 0 | ||
85 | #endif | 88 | #endif |
86 | 89 | ||
87 | int | 90 | int |
diff --git a/include/linux/fcntl.h b/include/linux/fcntl.h index 704fb76b6334..8a7c82151de9 100644 --- a/include/linux/fcntl.h +++ b/include/linux/fcntl.h | |||
@@ -25,6 +25,10 @@ | |||
25 | 25 | ||
26 | #ifdef __KERNEL__ | 26 | #ifdef __KERNEL__ |
27 | 27 | ||
28 | #ifndef force_o_largefile | ||
29 | #define force_o_largefile() (BITS_PER_LONG != 32) | ||
30 | #endif | ||
31 | |||
28 | #if BITS_PER_LONG == 32 | 32 | #if BITS_PER_LONG == 32 |
29 | #define IS_GETLK32(cmd) ((cmd) == F_GETLK) | 33 | #define IS_GETLK32(cmd) ((cmd) == F_GETLK) |
30 | #define IS_SETLK32(cmd) ((cmd) == F_SETLK) | 34 | #define IS_SETLK32(cmd) ((cmd) == F_SETLK) |
diff --git a/include/linux/fs.h b/include/linux/fs.h index e5a8db00df29..3ae8e37bdfc8 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -220,6 +220,7 @@ extern int dir_notify_enable; | |||
220 | 220 | ||
221 | struct iovec; | 221 | struct iovec; |
222 | struct nameidata; | 222 | struct nameidata; |
223 | struct kiocb; | ||
223 | struct pipe_inode_info; | 224 | struct pipe_inode_info; |
224 | struct poll_table_struct; | 225 | struct poll_table_struct; |
225 | struct kstatfs; | 226 | struct kstatfs; |
@@ -240,7 +241,7 @@ typedef int (get_block_t)(struct inode *inode, sector_t iblock, | |||
240 | typedef int (get_blocks_t)(struct inode *inode, sector_t iblock, | 241 | typedef int (get_blocks_t)(struct inode *inode, sector_t iblock, |
241 | unsigned long max_blocks, | 242 | unsigned long max_blocks, |
242 | struct buffer_head *bh_result, int create); | 243 | struct buffer_head *bh_result, int create); |
243 | typedef void (dio_iodone_t)(struct inode *inode, loff_t offset, | 244 | typedef void (dio_iodone_t)(struct kiocb *iocb, loff_t offset, |
244 | ssize_t bytes, void *private); | 245 | ssize_t bytes, void *private); |
245 | 246 | ||
246 | /* | 247 | /* |
@@ -302,7 +303,6 @@ struct iattr { | |||
302 | struct page; | 303 | struct page; |
303 | struct address_space; | 304 | struct address_space; |
304 | struct writeback_control; | 305 | struct writeback_control; |
305 | struct kiocb; | ||
306 | 306 | ||
307 | struct address_space_operations { | 307 | struct address_space_operations { |
308 | int (*writepage)(struct page *page, struct writeback_control *wbc); | 308 | int (*writepage)(struct page *page, struct writeback_control *wbc); |
@@ -330,6 +330,8 @@ struct address_space_operations { | |||
330 | int (*releasepage) (struct page *, int); | 330 | int (*releasepage) (struct page *, int); |
331 | ssize_t (*direct_IO)(int, struct kiocb *, const struct iovec *iov, | 331 | ssize_t (*direct_IO)(int, struct kiocb *, const struct iovec *iov, |
332 | loff_t offset, unsigned long nr_segs); | 332 | loff_t offset, unsigned long nr_segs); |
333 | struct page* (*get_xip_page)(struct address_space *, sector_t, | ||
334 | int); | ||
333 | }; | 335 | }; |
334 | 336 | ||
335 | struct backing_dev_info; | 337 | struct backing_dev_info; |
@@ -581,7 +583,6 @@ struct file { | |||
581 | atomic_t f_count; | 583 | atomic_t f_count; |
582 | unsigned int f_flags; | 584 | unsigned int f_flags; |
583 | mode_t f_mode; | 585 | mode_t f_mode; |
584 | int f_error; | ||
585 | loff_t f_pos; | 586 | loff_t f_pos; |
586 | struct fown_struct f_owner; | 587 | struct fown_struct f_owner; |
587 | unsigned int f_uid, f_gid; | 588 | unsigned int f_uid, f_gid; |
@@ -884,7 +885,9 @@ struct block_device_operations { | |||
884 | int (*open) (struct inode *, struct file *); | 885 | int (*open) (struct inode *, struct file *); |
885 | int (*release) (struct inode *, struct file *); | 886 | int (*release) (struct inode *, struct file *); |
886 | int (*ioctl) (struct inode *, struct file *, unsigned, unsigned long); | 887 | int (*ioctl) (struct inode *, struct file *, unsigned, unsigned long); |
888 | long (*unlocked_ioctl) (struct file *, unsigned, unsigned long); | ||
887 | long (*compat_ioctl) (struct file *, unsigned, unsigned long); | 889 | long (*compat_ioctl) (struct file *, unsigned, unsigned long); |
890 | int (*direct_access) (struct block_device *, sector_t, unsigned long *); | ||
888 | int (*media_changed) (struct gendisk *); | 891 | int (*media_changed) (struct gendisk *); |
889 | int (*revalidate_disk) (struct gendisk *); | 892 | int (*revalidate_disk) (struct gendisk *); |
890 | struct module *owner; | 893 | struct module *owner; |
@@ -1025,6 +1028,7 @@ struct super_operations { | |||
1025 | #define I_FREEING 16 | 1028 | #define I_FREEING 16 |
1026 | #define I_CLEAR 32 | 1029 | #define I_CLEAR 32 |
1027 | #define I_NEW 64 | 1030 | #define I_NEW 64 |
1031 | #define I_WILL_FREE 128 | ||
1028 | 1032 | ||
1029 | #define I_DIRTY (I_DIRTY_SYNC | I_DIRTY_DATASYNC | I_DIRTY_PAGES) | 1033 | #define I_DIRTY (I_DIRTY_SYNC | I_DIRTY_DATASYNC | I_DIRTY_PAGES) |
1030 | 1034 | ||
@@ -1495,6 +1499,23 @@ extern loff_t remote_llseek(struct file *file, loff_t offset, int origin); | |||
1495 | extern int generic_file_open(struct inode * inode, struct file * filp); | 1499 | extern int generic_file_open(struct inode * inode, struct file * filp); |
1496 | extern int nonseekable_open(struct inode * inode, struct file * filp); | 1500 | extern int nonseekable_open(struct inode * inode, struct file * filp); |
1497 | 1501 | ||
1502 | #ifdef CONFIG_FS_XIP | ||
1503 | extern ssize_t xip_file_read(struct file *filp, char __user *buf, size_t len, | ||
1504 | loff_t *ppos); | ||
1505 | extern ssize_t xip_file_sendfile(struct file *in_file, loff_t *ppos, | ||
1506 | size_t count, read_actor_t actor, | ||
1507 | void *target); | ||
1508 | extern int xip_file_mmap(struct file * file, struct vm_area_struct * vma); | ||
1509 | extern ssize_t xip_file_write(struct file *filp, const char __user *buf, | ||
1510 | size_t len, loff_t *ppos); | ||
1511 | extern int xip_truncate_page(struct address_space *mapping, loff_t from); | ||
1512 | #else | ||
1513 | static inline int xip_truncate_page(struct address_space *mapping, loff_t from) | ||
1514 | { | ||
1515 | return 0; | ||
1516 | } | ||
1517 | #endif | ||
1518 | |||
1498 | static inline void do_generic_file_read(struct file * filp, loff_t *ppos, | 1519 | static inline void do_generic_file_read(struct file * filp, loff_t *ppos, |
1499 | read_descriptor_t * desc, | 1520 | read_descriptor_t * desc, |
1500 | read_actor_t actor) | 1521 | read_actor_t actor) |
diff --git a/include/linux/genhd.h b/include/linux/genhd.h index 47dedaf971d6..01796c41c951 100644 --- a/include/linux/genhd.h +++ b/include/linux/genhd.h | |||
@@ -224,7 +224,7 @@ static inline void free_disk_stats(struct gendisk *disk) | |||
224 | extern void disk_round_stats(struct gendisk *disk); | 224 | extern void disk_round_stats(struct gendisk *disk); |
225 | 225 | ||
226 | /* drivers/block/genhd.c */ | 226 | /* drivers/block/genhd.c */ |
227 | extern int get_blkdev_list(char *); | 227 | extern int get_blkdev_list(char *, int); |
228 | extern void add_disk(struct gendisk *disk); | 228 | extern void add_disk(struct gendisk *disk); |
229 | extern void del_gendisk(struct gendisk *gp); | 229 | extern void del_gendisk(struct gendisk *gp); |
230 | extern void unlink_gendisk(struct gendisk *gp); | 230 | extern void unlink_gendisk(struct gendisk *gp); |
@@ -403,6 +403,7 @@ extern int rescan_partitions(struct gendisk *disk, struct block_device *bdev); | |||
403 | extern void add_partition(struct gendisk *, int, sector_t, sector_t); | 403 | extern void add_partition(struct gendisk *, int, sector_t, sector_t); |
404 | extern void delete_partition(struct gendisk *, int); | 404 | extern void delete_partition(struct gendisk *, int); |
405 | 405 | ||
406 | extern struct gendisk *alloc_disk_node(int minors, int node_id); | ||
406 | extern struct gendisk *alloc_disk(int minors); | 407 | extern struct gendisk *alloc_disk(int minors); |
407 | extern struct kobject *get_disk(struct gendisk *disk); | 408 | extern struct kobject *get_disk(struct gendisk *disk); |
408 | extern void put_disk(struct gendisk *disk); | 409 | extern void put_disk(struct gendisk *disk); |
diff --git a/include/linux/i2o-dev.h b/include/linux/i2o-dev.h index ef7f644dd873..36fd18cdad28 100644 --- a/include/linux/i2o-dev.h +++ b/include/linux/i2o-dev.h | |||
@@ -24,6 +24,13 @@ | |||
24 | #define MAX_I2O_CONTROLLERS 32 | 24 | #define MAX_I2O_CONTROLLERS 32 |
25 | 25 | ||
26 | //#include <linux/ioctl.h> | 26 | //#include <linux/ioctl.h> |
27 | #ifndef __KERNEL__ | ||
28 | |||
29 | typedef unsigned char u8; | ||
30 | typedef unsigned short u16; | ||
31 | typedef unsigned int u32; | ||
32 | |||
33 | #endif /* __KERNEL__ */ | ||
27 | 34 | ||
28 | /* | 35 | /* |
29 | * I2O Control IOCTLs and structures | 36 | * I2O Control IOCTLs and structures |
@@ -113,6 +120,10 @@ struct i2o_evt_get { | |||
113 | int lost; | 120 | int lost; |
114 | }; | 121 | }; |
115 | 122 | ||
123 | typedef struct i2o_sg_io_hdr { | ||
124 | unsigned int flags; /* see I2O_DPT_SG_IO_FLAGS */ | ||
125 | } i2o_sg_io_hdr_t; | ||
126 | |||
116 | /************************************************************************** | 127 | /************************************************************************** |
117 | * HRT related constants and structures | 128 | * HRT related constants and structures |
118 | **************************************************************************/ | 129 | **************************************************************************/ |
@@ -126,14 +137,6 @@ struct i2o_evt_get { | |||
126 | #define I2O_BUS_CARDBUS 7 | 137 | #define I2O_BUS_CARDBUS 7 |
127 | #define I2O_BUS_UNKNOWN 0x80 | 138 | #define I2O_BUS_UNKNOWN 0x80 |
128 | 139 | ||
129 | #ifndef __KERNEL__ | ||
130 | |||
131 | typedef unsigned char u8; | ||
132 | typedef unsigned short u16; | ||
133 | typedef unsigned int u32; | ||
134 | |||
135 | #endif /* __KERNEL__ */ | ||
136 | |||
137 | typedef struct _i2o_pci_bus { | 140 | typedef struct _i2o_pci_bus { |
138 | u8 PciFunctionNumber; | 141 | u8 PciFunctionNumber; |
139 | u8 PciDeviceNumber; | 142 | u8 PciDeviceNumber; |
@@ -333,7 +336,7 @@ typedef struct _i2o_status_block { | |||
333 | #define I2O_CLASS_ATE_PERIPHERAL 0x061 | 336 | #define I2O_CLASS_ATE_PERIPHERAL 0x061 |
334 | #define I2O_CLASS_FLOPPY_CONTROLLER 0x070 | 337 | #define I2O_CLASS_FLOPPY_CONTROLLER 0x070 |
335 | #define I2O_CLASS_FLOPPY_DEVICE 0x071 | 338 | #define I2O_CLASS_FLOPPY_DEVICE 0x071 |
336 | #define I2O_CLASS_BUS_ADAPTER_PORT 0x080 | 339 | #define I2O_CLASS_BUS_ADAPTER 0x080 |
337 | #define I2O_CLASS_PEER_TRANSPORT_AGENT 0x090 | 340 | #define I2O_CLASS_PEER_TRANSPORT_AGENT 0x090 |
338 | #define I2O_CLASS_PEER_TRANSPORT 0x091 | 341 | #define I2O_CLASS_PEER_TRANSPORT 0x091 |
339 | #define I2O_CLASS_END 0xfff | 342 | #define I2O_CLASS_END 0xfff |
@@ -399,4 +402,26 @@ typedef struct _i2o_status_block { | |||
399 | #define ADAPTER_STATE_FAILED 0x10 | 402 | #define ADAPTER_STATE_FAILED 0x10 |
400 | #define ADAPTER_STATE_FAULTED 0x11 | 403 | #define ADAPTER_STATE_FAULTED 0x11 |
401 | 404 | ||
405 | /* | ||
406 | * Software module types | ||
407 | */ | ||
408 | #define I2O_SOFTWARE_MODULE_IRTOS 0x11 | ||
409 | #define I2O_SOFTWARE_MODULE_IOP_PRIVATE 0x22 | ||
410 | #define I2O_SOFTWARE_MODULE_IOP_CONFIG 0x23 | ||
411 | |||
412 | /* | ||
413 | * Vendors | ||
414 | */ | ||
415 | #define I2O_VENDOR_DPT 0x001b | ||
416 | |||
417 | /* | ||
418 | * DPT / Adaptec specific values for i2o_sg_io_hdr flags. | ||
419 | */ | ||
420 | #define I2O_DPT_SG_FLAG_INTERPRET 0x00010000 | ||
421 | #define I2O_DPT_SG_FLAG_PHYSICAL 0x00020000 | ||
422 | |||
423 | #define I2O_DPT_FLASH_FRAG_SIZE 0x10000 | ||
424 | #define I2O_DPT_FLASH_READ 0x0101 | ||
425 | #define I2O_DPT_FLASH_WRITE 0x0102 | ||
426 | |||
402 | #endif /* _I2O_DEV_H */ | 427 | #endif /* _I2O_DEV_H */ |
diff --git a/include/linux/i2o.h b/include/linux/i2o.h index ea9a3ad4b67f..bdc286ec947c 100644 --- a/include/linux/i2o.h +++ b/include/linux/i2o.h | |||
@@ -119,12 +119,21 @@ struct i2o_driver { | |||
119 | }; | 119 | }; |
120 | 120 | ||
121 | /* | 121 | /* |
122 | * Contains all information which are necessary for DMA operations | 122 | * Contains DMA mapped address information |
123 | */ | 123 | */ |
124 | struct i2o_dma { | 124 | struct i2o_dma { |
125 | void *virt; | 125 | void *virt; |
126 | dma_addr_t phys; | 126 | dma_addr_t phys; |
127 | u32 len; | 127 | size_t len; |
128 | }; | ||
129 | |||
130 | /* | ||
131 | * Contains IO mapped address information | ||
132 | */ | ||
133 | struct i2o_io { | ||
134 | void __iomem *virt; | ||
135 | unsigned long phys; | ||
136 | unsigned long len; | ||
128 | }; | 137 | }; |
129 | 138 | ||
130 | /* | 139 | /* |
@@ -147,28 +156,25 @@ struct i2o_controller { | |||
147 | 156 | ||
148 | struct pci_dev *pdev; /* PCI device */ | 157 | struct pci_dev *pdev; /* PCI device */ |
149 | 158 | ||
150 | unsigned int short_req:1; /* use small block sizes */ | 159 | unsigned int promise:1; /* Promise controller */ |
160 | unsigned int adaptec:1; /* DPT / Adaptec controller */ | ||
161 | unsigned int raptor:1; /* split bar */ | ||
151 | unsigned int no_quiesce:1; /* dont quiesce before reset */ | 162 | unsigned int no_quiesce:1; /* dont quiesce before reset */ |
152 | unsigned int raptor:1; /* split bar */ | 163 | unsigned int short_req:1; /* use small block sizes */ |
153 | unsigned int promise:1; /* Promise controller */ | 164 | unsigned int limit_sectors:1; /* limit number of sectors / request */ |
154 | 165 | unsigned int pae_support:1; /* controller has 64-bit SGL support */ | |
155 | #ifdef CONFIG_MTRR | ||
156 | int mtrr_reg0; | ||
157 | int mtrr_reg1; | ||
158 | #endif | ||
159 | 166 | ||
160 | struct list_head devices; /* list of I2O devices */ | 167 | struct list_head devices; /* list of I2O devices */ |
161 | |||
162 | struct notifier_block *event_notifer; /* Events */ | ||
163 | atomic_t users; | ||
164 | struct list_head list; /* Controller list */ | 168 | struct list_head list; /* Controller list */ |
165 | void __iomem *post_port; /* Inbout port address */ | 169 | |
166 | void __iomem *reply_port; /* Outbound port address */ | 170 | void __iomem *in_port; /* Inbout port address */ |
167 | void __iomem *irq_mask; /* Interrupt register address */ | 171 | void __iomem *out_port; /* Outbound port address */ |
172 | void __iomem *irq_status; /* Interrupt status register address */ | ||
173 | void __iomem *irq_mask; /* Interrupt mask register address */ | ||
168 | 174 | ||
169 | /* Dynamic LCT related data */ | 175 | /* Dynamic LCT related data */ |
170 | 176 | ||
171 | struct i2o_dma status; /* status of IOP */ | 177 | struct i2o_dma status; /* IOP status block */ |
172 | 178 | ||
173 | struct i2o_dma hrt; /* HW Resource Table */ | 179 | struct i2o_dma hrt; /* HW Resource Table */ |
174 | i2o_lct *lct; /* Logical Config Table */ | 180 | i2o_lct *lct; /* Logical Config Table */ |
@@ -176,21 +182,19 @@ struct i2o_controller { | |||
176 | struct semaphore lct_lock; /* Lock for LCT updates */ | 182 | struct semaphore lct_lock; /* Lock for LCT updates */ |
177 | struct i2o_dma status_block; /* IOP status block */ | 183 | struct i2o_dma status_block; /* IOP status block */ |
178 | 184 | ||
179 | struct i2o_dma base; /* controller messaging unit */ | 185 | struct i2o_io base; /* controller messaging unit */ |
180 | struct i2o_dma in_queue; /* inbound message queue Host->IOP */ | 186 | struct i2o_io in_queue; /* inbound message queue Host->IOP */ |
181 | struct i2o_dma out_queue; /* outbound message queue IOP->Host */ | 187 | struct i2o_dma out_queue; /* outbound message queue IOP->Host */ |
182 | 188 | ||
183 | unsigned int battery:1; /* Has a battery backup */ | 189 | unsigned int battery:1; /* Has a battery backup */ |
184 | unsigned int io_alloc:1; /* An I/O resource was allocated */ | 190 | unsigned int io_alloc:1; /* An I/O resource was allocated */ |
185 | unsigned int mem_alloc:1; /* A memory resource was allocated */ | 191 | unsigned int mem_alloc:1; /* A memory resource was allocated */ |
186 | 192 | ||
187 | struct resource io_resource; /* I/O resource allocated to the IOP */ | 193 | struct resource io_resource; /* I/O resource allocated to the IOP */ |
188 | struct resource mem_resource; /* Mem resource allocated to the IOP */ | 194 | struct resource mem_resource; /* Mem resource allocated to the IOP */ |
189 | 195 | ||
190 | struct proc_dir_entry *proc_entry; /* /proc dir */ | ||
191 | |||
192 | struct list_head bus_list; /* list of busses on IOP */ | ||
193 | struct device device; | 196 | struct device device; |
197 | struct class_device classdev; /* I2O controller class */ | ||
194 | struct i2o_device *exec; /* Executive */ | 198 | struct i2o_device *exec; /* Executive */ |
195 | #if BITS_PER_LONG == 64 | 199 | #if BITS_PER_LONG == 64 |
196 | spinlock_t context_list_lock; /* lock for context_list */ | 200 | spinlock_t context_list_lock; /* lock for context_list */ |
@@ -241,9 +245,10 @@ struct i2o_sys_tbl { | |||
241 | extern struct list_head i2o_controllers; | 245 | extern struct list_head i2o_controllers; |
242 | 246 | ||
243 | /* Message functions */ | 247 | /* Message functions */ |
244 | static inline u32 i2o_msg_get(struct i2o_controller *, struct i2o_message __iomem **); | 248 | static inline u32 i2o_msg_get(struct i2o_controller *, |
245 | extern u32 i2o_msg_get_wait(struct i2o_controller *, struct i2o_message __iomem **, | 249 | struct i2o_message __iomem **); |
246 | int); | 250 | extern u32 i2o_msg_get_wait(struct i2o_controller *, |
251 | struct i2o_message __iomem **, int); | ||
247 | static inline void i2o_msg_post(struct i2o_controller *, u32); | 252 | static inline void i2o_msg_post(struct i2o_controller *, u32); |
248 | static inline int i2o_msg_post_wait(struct i2o_controller *, u32, | 253 | static inline int i2o_msg_post_wait(struct i2o_controller *, u32, |
249 | unsigned long); | 254 | unsigned long); |
@@ -252,15 +257,6 @@ extern int i2o_msg_post_wait_mem(struct i2o_controller *, u32, unsigned long, | |||
252 | extern void i2o_msg_nop(struct i2o_controller *, u32); | 257 | extern void i2o_msg_nop(struct i2o_controller *, u32); |
253 | static inline void i2o_flush_reply(struct i2o_controller *, u32); | 258 | static inline void i2o_flush_reply(struct i2o_controller *, u32); |
254 | 259 | ||
255 | /* DMA handling functions */ | ||
256 | static inline int i2o_dma_alloc(struct device *, struct i2o_dma *, size_t, | ||
257 | unsigned int); | ||
258 | static inline void i2o_dma_free(struct device *, struct i2o_dma *); | ||
259 | int i2o_dma_realloc(struct device *, struct i2o_dma *, size_t, unsigned int); | ||
260 | |||
261 | static inline int i2o_dma_map(struct device *, struct i2o_dma *); | ||
262 | static inline void i2o_dma_unmap(struct device *, struct i2o_dma *); | ||
263 | |||
264 | /* IOP functions */ | 260 | /* IOP functions */ |
265 | extern int i2o_status_get(struct i2o_controller *); | 261 | extern int i2o_status_get(struct i2o_controller *); |
266 | 262 | ||
@@ -285,6 +281,16 @@ static inline u32 i2o_ptr_high(void *ptr) | |||
285 | { | 281 | { |
286 | return (u32) ((u64) ptr >> 32); | 282 | return (u32) ((u64) ptr >> 32); |
287 | }; | 283 | }; |
284 | |||
285 | static inline u32 i2o_dma_low(dma_addr_t dma_addr) | ||
286 | { | ||
287 | return (u32) (u64) dma_addr; | ||
288 | }; | ||
289 | |||
290 | static inline u32 i2o_dma_high(dma_addr_t dma_addr) | ||
291 | { | ||
292 | return (u32) ((u64) dma_addr >> 32); | ||
293 | }; | ||
288 | #else | 294 | #else |
289 | static inline u32 i2o_cntxt_list_add(struct i2o_controller *c, void *ptr) | 295 | static inline u32 i2o_cntxt_list_add(struct i2o_controller *c, void *ptr) |
290 | { | 296 | { |
@@ -315,8 +321,246 @@ static inline u32 i2o_ptr_high(void *ptr) | |||
315 | { | 321 | { |
316 | return 0; | 322 | return 0; |
317 | }; | 323 | }; |
324 | |||
325 | static inline u32 i2o_dma_low(dma_addr_t dma_addr) | ||
326 | { | ||
327 | return (u32) dma_addr; | ||
328 | }; | ||
329 | |||
330 | static inline u32 i2o_dma_high(dma_addr_t dma_addr) | ||
331 | { | ||
332 | return 0; | ||
333 | }; | ||
318 | #endif | 334 | #endif |
319 | 335 | ||
336 | /** | ||
337 | * i2o_sg_tablesize - Calculate the maximum number of elements in a SGL | ||
338 | * @c: I2O controller for which the calculation should be done | ||
339 | * @body_size: maximum body size used for message in 32-bit words. | ||
340 | * | ||
341 | * Return the maximum number of SG elements in a SG list. | ||
342 | */ | ||
343 | static inline u16 i2o_sg_tablesize(struct i2o_controller *c, u16 body_size) | ||
344 | { | ||
345 | i2o_status_block *sb = c->status_block.virt; | ||
346 | u16 sg_count = | ||
347 | (sb->inbound_frame_size - sizeof(struct i2o_message) / 4) - | ||
348 | body_size; | ||
349 | |||
350 | if (c->pae_support) { | ||
351 | /* | ||
352 | * for 64-bit a SG attribute element must be added and each | ||
353 | * SG element needs 12 bytes instead of 8. | ||
354 | */ | ||
355 | sg_count -= 2; | ||
356 | sg_count /= 3; | ||
357 | } else | ||
358 | sg_count /= 2; | ||
359 | |||
360 | if (c->short_req && (sg_count > 8)) | ||
361 | sg_count = 8; | ||
362 | |||
363 | return sg_count; | ||
364 | }; | ||
365 | |||
366 | /** | ||
367 | * i2o_dma_map_single - Map pointer to controller and fill in I2O message. | ||
368 | * @c: I2O controller | ||
369 | * @ptr: pointer to the data which should be mapped | ||
370 | * @size: size of data in bytes | ||
371 | * @direction: DMA_TO_DEVICE / DMA_FROM_DEVICE | ||
372 | * @sg_ptr: pointer to the SG list inside the I2O message | ||
373 | * | ||
374 | * This function does all necessary DMA handling and also writes the I2O | ||
375 | * SGL elements into the I2O message. For details on DMA handling see also | ||
376 | * dma_map_single(). The pointer sg_ptr will only be set to the end of the | ||
377 | * SG list if the allocation was successful. | ||
378 | * | ||
379 | * Returns DMA address which must be checked for failures using | ||
380 | * dma_mapping_error(). | ||
381 | */ | ||
382 | static inline dma_addr_t i2o_dma_map_single(struct i2o_controller *c, void *ptr, | ||
383 | size_t size, | ||
384 | enum dma_data_direction direction, | ||
385 | u32 __iomem ** sg_ptr) | ||
386 | { | ||
387 | u32 sg_flags; | ||
388 | u32 __iomem *mptr = *sg_ptr; | ||
389 | dma_addr_t dma_addr; | ||
390 | |||
391 | switch (direction) { | ||
392 | case DMA_TO_DEVICE: | ||
393 | sg_flags = 0xd4000000; | ||
394 | break; | ||
395 | case DMA_FROM_DEVICE: | ||
396 | sg_flags = 0xd0000000; | ||
397 | break; | ||
398 | default: | ||
399 | return 0; | ||
400 | } | ||
401 | |||
402 | dma_addr = dma_map_single(&c->pdev->dev, ptr, size, direction); | ||
403 | if (!dma_mapping_error(dma_addr)) { | ||
404 | #ifdef CONFIG_I2O_EXT_ADAPTEC_DMA64 | ||
405 | if ((sizeof(dma_addr_t) > 4) && c->pae_support) { | ||
406 | writel(0x7C020002, mptr++); | ||
407 | writel(PAGE_SIZE, mptr++); | ||
408 | } | ||
409 | #endif | ||
410 | |||
411 | writel(sg_flags | size, mptr++); | ||
412 | writel(i2o_dma_low(dma_addr), mptr++); | ||
413 | #ifdef CONFIG_I2O_EXT_ADAPTEC_DMA64 | ||
414 | if ((sizeof(dma_addr_t) > 4) && c->pae_support) | ||
415 | writel(i2o_dma_high(dma_addr), mptr++); | ||
416 | #endif | ||
417 | *sg_ptr = mptr; | ||
418 | } | ||
419 | return dma_addr; | ||
420 | }; | ||
421 | |||
422 | /** | ||
423 | * i2o_dma_map_sg - Map a SG List to controller and fill in I2O message. | ||
424 | * @c: I2O controller | ||
425 | * @sg: SG list to be mapped | ||
426 | * @sg_count: number of elements in the SG list | ||
427 | * @direction: DMA_TO_DEVICE / DMA_FROM_DEVICE | ||
428 | * @sg_ptr: pointer to the SG list inside the I2O message | ||
429 | * | ||
430 | * This function does all necessary DMA handling and also writes the I2O | ||
431 | * SGL elements into the I2O message. For details on DMA handling see also | ||
432 | * dma_map_sg(). The pointer sg_ptr will only be set to the end of the SG | ||
433 | * list if the allocation was successful. | ||
434 | * | ||
435 | * Returns 0 on failure or 1 on success. | ||
436 | */ | ||
437 | static inline int i2o_dma_map_sg(struct i2o_controller *c, | ||
438 | struct scatterlist *sg, int sg_count, | ||
439 | enum dma_data_direction direction, | ||
440 | u32 __iomem ** sg_ptr) | ||
441 | { | ||
442 | u32 sg_flags; | ||
443 | u32 __iomem *mptr = *sg_ptr; | ||
444 | |||
445 | switch (direction) { | ||
446 | case DMA_TO_DEVICE: | ||
447 | sg_flags = 0x14000000; | ||
448 | break; | ||
449 | case DMA_FROM_DEVICE: | ||
450 | sg_flags = 0x10000000; | ||
451 | break; | ||
452 | default: | ||
453 | return 0; | ||
454 | } | ||
455 | |||
456 | sg_count = dma_map_sg(&c->pdev->dev, sg, sg_count, direction); | ||
457 | if (!sg_count) | ||
458 | return 0; | ||
459 | |||
460 | #ifdef CONFIG_I2O_EXT_ADAPTEC_DMA64 | ||
461 | if ((sizeof(dma_addr_t) > 4) && c->pae_support) { | ||
462 | writel(0x7C020002, mptr++); | ||
463 | writel(PAGE_SIZE, mptr++); | ||
464 | } | ||
465 | #endif | ||
466 | |||
467 | while (sg_count-- > 0) { | ||
468 | if (!sg_count) | ||
469 | sg_flags |= 0xC0000000; | ||
470 | writel(sg_flags | sg_dma_len(sg), mptr++); | ||
471 | writel(i2o_dma_low(sg_dma_address(sg)), mptr++); | ||
472 | #ifdef CONFIG_I2O_EXT_ADAPTEC_DMA64 | ||
473 | if ((sizeof(dma_addr_t) > 4) && c->pae_support) | ||
474 | writel(i2o_dma_high(sg_dma_address(sg)), mptr++); | ||
475 | #endif | ||
476 | sg++; | ||
477 | } | ||
478 | *sg_ptr = mptr; | ||
479 | |||
480 | return 1; | ||
481 | }; | ||
482 | |||
483 | /** | ||
484 | * i2o_dma_alloc - Allocate DMA memory | ||
485 | * @dev: struct device pointer to the PCI device of the I2O controller | ||
486 | * @addr: i2o_dma struct which should get the DMA buffer | ||
487 | * @len: length of the new DMA memory | ||
488 | * @gfp_mask: GFP mask | ||
489 | * | ||
490 | * Allocate a coherent DMA memory and write the pointers into addr. | ||
491 | * | ||
492 | * Returns 0 on success or -ENOMEM on failure. | ||
493 | */ | ||
494 | static inline int i2o_dma_alloc(struct device *dev, struct i2o_dma *addr, | ||
495 | size_t len, unsigned int gfp_mask) | ||
496 | { | ||
497 | struct pci_dev *pdev = to_pci_dev(dev); | ||
498 | int dma_64 = 0; | ||
499 | |||
500 | if ((sizeof(dma_addr_t) > 4) && (pdev->dma_mask == DMA_64BIT_MASK)) { | ||
501 | dma_64 = 1; | ||
502 | if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) | ||
503 | return -ENOMEM; | ||
504 | } | ||
505 | |||
506 | addr->virt = dma_alloc_coherent(dev, len, &addr->phys, gfp_mask); | ||
507 | |||
508 | if ((sizeof(dma_addr_t) > 4) && dma_64) | ||
509 | if (pci_set_dma_mask(pdev, DMA_64BIT_MASK)) | ||
510 | printk(KERN_WARNING "i2o: unable to set 64-bit DMA"); | ||
511 | |||
512 | if (!addr->virt) | ||
513 | return -ENOMEM; | ||
514 | |||
515 | memset(addr->virt, 0, len); | ||
516 | addr->len = len; | ||
517 | |||
518 | return 0; | ||
519 | }; | ||
520 | |||
521 | /** | ||
522 | * i2o_dma_free - Free DMA memory | ||
523 | * @dev: struct device pointer to the PCI device of the I2O controller | ||
524 | * @addr: i2o_dma struct which contains the DMA buffer | ||
525 | * | ||
526 | * Free a coherent DMA memory and set virtual address of addr to NULL. | ||
527 | */ | ||
528 | static inline void i2o_dma_free(struct device *dev, struct i2o_dma *addr) | ||
529 | { | ||
530 | if (addr->virt) { | ||
531 | if (addr->phys) | ||
532 | dma_free_coherent(dev, addr->len, addr->virt, | ||
533 | addr->phys); | ||
534 | else | ||
535 | kfree(addr->virt); | ||
536 | addr->virt = NULL; | ||
537 | } | ||
538 | }; | ||
539 | |||
540 | /** | ||
541 | * i2o_dma_realloc - Realloc DMA memory | ||
542 | * @dev: struct device pointer to the PCI device of the I2O controller | ||
543 | * @addr: pointer to a i2o_dma struct DMA buffer | ||
544 | * @len: new length of memory | ||
545 | * @gfp_mask: GFP mask | ||
546 | * | ||
547 | * If there was something allocated in the addr, free it first. If len > 0 | ||
548 | * than try to allocate it and write the addresses back to the addr | ||
549 | * structure. If len == 0 set the virtual address to NULL. | ||
550 | * | ||
551 | * Returns the 0 on success or negative error code on failure. | ||
552 | */ | ||
553 | static inline int i2o_dma_realloc(struct device *dev, struct i2o_dma *addr, | ||
554 | size_t len, unsigned int gfp_mask) | ||
555 | { | ||
556 | i2o_dma_free(dev, addr); | ||
557 | |||
558 | if (len) | ||
559 | return i2o_dma_alloc(dev, addr, len, gfp_mask); | ||
560 | |||
561 | return 0; | ||
562 | }; | ||
563 | |||
320 | /* I2O driver (OSM) functions */ | 564 | /* I2O driver (OSM) functions */ |
321 | extern int i2o_driver_register(struct i2o_driver *); | 565 | extern int i2o_driver_register(struct i2o_driver *); |
322 | extern void i2o_driver_unregister(struct i2o_driver *); | 566 | extern void i2o_driver_unregister(struct i2o_driver *); |
@@ -385,49 +629,11 @@ extern int i2o_device_claim_release(struct i2o_device *); | |||
385 | /* Exec OSM functions */ | 629 | /* Exec OSM functions */ |
386 | extern int i2o_exec_lct_get(struct i2o_controller *); | 630 | extern int i2o_exec_lct_get(struct i2o_controller *); |
387 | 631 | ||
388 | /* device to i2o_device and driver to i2o_driver convertion functions */ | 632 | /* device / driver / kobject conversion functions */ |
389 | #define to_i2o_driver(drv) container_of(drv,struct i2o_driver, driver) | 633 | #define to_i2o_driver(drv) container_of(drv,struct i2o_driver, driver) |
390 | #define to_i2o_device(dev) container_of(dev, struct i2o_device, device) | 634 | #define to_i2o_device(dev) container_of(dev, struct i2o_device, device) |
391 | 635 | #define to_i2o_controller(dev) container_of(dev, struct i2o_controller, device) | |
392 | /* | 636 | #define kobj_to_i2o_device(kobj) to_i2o_device(container_of(kobj, struct device, kobj)) |
393 | * Messenger inlines | ||
394 | */ | ||
395 | static inline u32 I2O_POST_READ32(struct i2o_controller *c) | ||
396 | { | ||
397 | rmb(); | ||
398 | return readl(c->post_port); | ||
399 | }; | ||
400 | |||
401 | static inline void I2O_POST_WRITE32(struct i2o_controller *c, u32 val) | ||
402 | { | ||
403 | wmb(); | ||
404 | writel(val, c->post_port); | ||
405 | }; | ||
406 | |||
407 | static inline u32 I2O_REPLY_READ32(struct i2o_controller *c) | ||
408 | { | ||
409 | rmb(); | ||
410 | return readl(c->reply_port); | ||
411 | }; | ||
412 | |||
413 | static inline void I2O_REPLY_WRITE32(struct i2o_controller *c, u32 val) | ||
414 | { | ||
415 | wmb(); | ||
416 | writel(val, c->reply_port); | ||
417 | }; | ||
418 | |||
419 | static inline u32 I2O_IRQ_READ32(struct i2o_controller *c) | ||
420 | { | ||
421 | rmb(); | ||
422 | return readl(c->irq_mask); | ||
423 | }; | ||
424 | |||
425 | static inline void I2O_IRQ_WRITE32(struct i2o_controller *c, u32 val) | ||
426 | { | ||
427 | wmb(); | ||
428 | writel(val, c->irq_mask); | ||
429 | wmb(); | ||
430 | }; | ||
431 | 637 | ||
432 | /** | 638 | /** |
433 | * i2o_msg_get - obtain an I2O message from the IOP | 639 | * i2o_msg_get - obtain an I2O message from the IOP |
@@ -443,11 +649,11 @@ static inline void I2O_IRQ_WRITE32(struct i2o_controller *c, u32 val) | |||
443 | * available returns I2O_QUEUE_EMPTY and msg is leaved untouched. | 649 | * available returns I2O_QUEUE_EMPTY and msg is leaved untouched. |
444 | */ | 650 | */ |
445 | static inline u32 i2o_msg_get(struct i2o_controller *c, | 651 | static inline u32 i2o_msg_get(struct i2o_controller *c, |
446 | struct i2o_message __iomem **msg) | 652 | struct i2o_message __iomem ** msg) |
447 | { | 653 | { |
448 | u32 m; | 654 | u32 m = readl(c->in_port); |
449 | 655 | ||
450 | if ((m = I2O_POST_READ32(c)) != I2O_QUEUE_EMPTY) | 656 | if (m != I2O_QUEUE_EMPTY) |
451 | *msg = c->in_queue.virt + m; | 657 | *msg = c->in_queue.virt + m; |
452 | 658 | ||
453 | return m; | 659 | return m; |
@@ -462,7 +668,7 @@ static inline u32 i2o_msg_get(struct i2o_controller *c, | |||
462 | */ | 668 | */ |
463 | static inline void i2o_msg_post(struct i2o_controller *c, u32 m) | 669 | static inline void i2o_msg_post(struct i2o_controller *c, u32 m) |
464 | { | 670 | { |
465 | I2O_POST_WRITE32(c, m); | 671 | writel(m, c->in_port); |
466 | }; | 672 | }; |
467 | 673 | ||
468 | /** | 674 | /** |
@@ -491,12 +697,10 @@ static inline int i2o_msg_post_wait(struct i2o_controller *c, u32 m, | |||
491 | * The I2O controller must be informed that the reply message is not needed | 697 | * The I2O controller must be informed that the reply message is not needed |
492 | * anymore. If you forget to flush the reply, the message frame can't be | 698 | * anymore. If you forget to flush the reply, the message frame can't be |
493 | * used by the controller anymore and is therefore lost. | 699 | * used by the controller anymore and is therefore lost. |
494 | * | ||
495 | * FIXME: is there a timeout after which the controller reuse the message? | ||
496 | */ | 700 | */ |
497 | static inline void i2o_flush_reply(struct i2o_controller *c, u32 m) | 701 | static inline void i2o_flush_reply(struct i2o_controller *c, u32 m) |
498 | { | 702 | { |
499 | I2O_REPLY_WRITE32(c, m); | 703 | writel(m, c->out_port); |
500 | }; | 704 | }; |
501 | 705 | ||
502 | /** | 706 | /** |
@@ -530,97 +734,13 @@ static inline struct i2o_message *i2o_msg_out_to_virt(struct i2o_controller *c, | |||
530 | * work for receive side messages as they are kmalloc objects | 734 | * work for receive side messages as they are kmalloc objects |
531 | * in a different pool. | 735 | * in a different pool. |
532 | */ | 736 | */ |
533 | static inline struct i2o_message __iomem *i2o_msg_in_to_virt(struct i2o_controller *c, | 737 | static inline struct i2o_message __iomem *i2o_msg_in_to_virt(struct |
534 | u32 m) | 738 | i2o_controller *c, |
739 | u32 m) | ||
535 | { | 740 | { |
536 | return c->in_queue.virt + m; | 741 | return c->in_queue.virt + m; |
537 | }; | 742 | }; |
538 | 743 | ||
539 | /** | ||
540 | * i2o_dma_alloc - Allocate DMA memory | ||
541 | * @dev: struct device pointer to the PCI device of the I2O controller | ||
542 | * @addr: i2o_dma struct which should get the DMA buffer | ||
543 | * @len: length of the new DMA memory | ||
544 | * @gfp_mask: GFP mask | ||
545 | * | ||
546 | * Allocate a coherent DMA memory and write the pointers into addr. | ||
547 | * | ||
548 | * Returns 0 on success or -ENOMEM on failure. | ||
549 | */ | ||
550 | static inline int i2o_dma_alloc(struct device *dev, struct i2o_dma *addr, | ||
551 | size_t len, unsigned int gfp_mask) | ||
552 | { | ||
553 | addr->virt = dma_alloc_coherent(dev, len, &addr->phys, gfp_mask); | ||
554 | if (!addr->virt) | ||
555 | return -ENOMEM; | ||
556 | |||
557 | memset(addr->virt, 0, len); | ||
558 | addr->len = len; | ||
559 | |||
560 | return 0; | ||
561 | }; | ||
562 | |||
563 | /** | ||
564 | * i2o_dma_free - Free DMA memory | ||
565 | * @dev: struct device pointer to the PCI device of the I2O controller | ||
566 | * @addr: i2o_dma struct which contains the DMA buffer | ||
567 | * | ||
568 | * Free a coherent DMA memory and set virtual address of addr to NULL. | ||
569 | */ | ||
570 | static inline void i2o_dma_free(struct device *dev, struct i2o_dma *addr) | ||
571 | { | ||
572 | if (addr->virt) { | ||
573 | if (addr->phys) | ||
574 | dma_free_coherent(dev, addr->len, addr->virt, | ||
575 | addr->phys); | ||
576 | else | ||
577 | kfree(addr->virt); | ||
578 | addr->virt = NULL; | ||
579 | } | ||
580 | }; | ||
581 | |||
582 | /** | ||
583 | * i2o_dma_map - Map the memory to DMA | ||
584 | * @dev: struct device pointer to the PCI device of the I2O controller | ||
585 | * @addr: i2o_dma struct which should be mapped | ||
586 | * | ||
587 | * Map the memory in addr->virt to coherent DMA memory and write the | ||
588 | * physical address into addr->phys. | ||
589 | * | ||
590 | * Returns 0 on success or -ENOMEM on failure. | ||
591 | */ | ||
592 | static inline int i2o_dma_map(struct device *dev, struct i2o_dma *addr) | ||
593 | { | ||
594 | if (!addr->virt) | ||
595 | return -EFAULT; | ||
596 | |||
597 | if (!addr->phys) | ||
598 | addr->phys = dma_map_single(dev, addr->virt, addr->len, | ||
599 | DMA_BIDIRECTIONAL); | ||
600 | if (!addr->phys) | ||
601 | return -ENOMEM; | ||
602 | |||
603 | return 0; | ||
604 | }; | ||
605 | |||
606 | /** | ||
607 | * i2o_dma_unmap - Unmap the DMA memory | ||
608 | * @dev: struct device pointer to the PCI device of the I2O controller | ||
609 | * @addr: i2o_dma struct which should be unmapped | ||
610 | * | ||
611 | * Unmap the memory in addr->virt from DMA memory. | ||
612 | */ | ||
613 | static inline void i2o_dma_unmap(struct device *dev, struct i2o_dma *addr) | ||
614 | { | ||
615 | if (!addr->virt) | ||
616 | return; | ||
617 | |||
618 | if (addr->phys) { | ||
619 | dma_unmap_single(dev, addr->phys, addr->len, DMA_BIDIRECTIONAL); | ||
620 | addr->phys = 0; | ||
621 | } | ||
622 | }; | ||
623 | |||
624 | /* | 744 | /* |
625 | * Endian handling wrapped into the macro - keeps the core code | 745 | * Endian handling wrapped into the macro - keeps the core code |
626 | * cleaner. | 746 | * cleaner. |
@@ -773,6 +893,14 @@ extern void i2o_debug_state(struct i2o_controller *c); | |||
773 | #define I2O_CMD_SCSI_BUSRESET 0x27 | 893 | #define I2O_CMD_SCSI_BUSRESET 0x27 |
774 | 894 | ||
775 | /* | 895 | /* |
896 | * Bus Adapter Class | ||
897 | */ | ||
898 | #define I2O_CMD_BUS_ADAPTER_RESET 0x85 | ||
899 | #define I2O_CMD_BUS_RESET 0x87 | ||
900 | #define I2O_CMD_BUS_SCAN 0x89 | ||
901 | #define I2O_CMD_BUS_QUIESCE 0x8b | ||
902 | |||
903 | /* | ||
776 | * Random Block Storage Class | 904 | * Random Block Storage Class |
777 | */ | 905 | */ |
778 | #define I2O_CMD_BLOCK_READ 0x30 | 906 | #define I2O_CMD_BLOCK_READ 0x30 |
@@ -784,7 +912,7 @@ extern void i2o_debug_state(struct i2o_controller *c); | |||
784 | #define I2O_CMD_BLOCK_MEJECT 0x43 | 912 | #define I2O_CMD_BLOCK_MEJECT 0x43 |
785 | #define I2O_CMD_BLOCK_POWER 0x70 | 913 | #define I2O_CMD_BLOCK_POWER 0x70 |
786 | 914 | ||
787 | #define I2O_PRIVATE_MSG 0xFF | 915 | #define I2O_CMD_PRIVATE 0xFF |
788 | 916 | ||
789 | /* Command status values */ | 917 | /* Command status values */ |
790 | 918 | ||
@@ -922,7 +1050,7 @@ extern void i2o_debug_state(struct i2o_controller *c); | |||
922 | #define I2OVER15 0x0001 | 1050 | #define I2OVER15 0x0001 |
923 | #define I2OVER20 0x0002 | 1051 | #define I2OVER20 0x0002 |
924 | 1052 | ||
925 | /* Default is 1.5, FIXME: Need support for both 1.5 and 2.0 */ | 1053 | /* Default is 1.5 */ |
926 | #define I2OVERSION I2OVER15 | 1054 | #define I2OVERSION I2OVER15 |
927 | 1055 | ||
928 | #define SGL_OFFSET_0 I2OVERSION | 1056 | #define SGL_OFFSET_0 I2OVERSION |
@@ -933,9 +1061,9 @@ extern void i2o_debug_state(struct i2o_controller *c); | |||
933 | #define SGL_OFFSET_8 (0x0080 | I2OVERSION) | 1061 | #define SGL_OFFSET_8 (0x0080 | I2OVERSION) |
934 | #define SGL_OFFSET_9 (0x0090 | I2OVERSION) | 1062 | #define SGL_OFFSET_9 (0x0090 | I2OVERSION) |
935 | #define SGL_OFFSET_10 (0x00A0 | I2OVERSION) | 1063 | #define SGL_OFFSET_10 (0x00A0 | I2OVERSION) |
936 | 1064 | #define SGL_OFFSET_11 (0x00B0 | I2OVERSION) | |
937 | #define TRL_OFFSET_5 (0x0050 | I2OVERSION) | 1065 | #define SGL_OFFSET_12 (0x00C0 | I2OVERSION) |
938 | #define TRL_OFFSET_6 (0x0060 | I2OVERSION) | 1066 | #define SGL_OFFSET(x) (((x)<<4) | I2OVERSION) |
939 | 1067 | ||
940 | /* Transaction Reply Lists (TRL) Control Word structure */ | 1068 | /* Transaction Reply Lists (TRL) Control Word structure */ |
941 | #define TRL_SINGLE_FIXED_LENGTH 0x00 | 1069 | #define TRL_SINGLE_FIXED_LENGTH 0x00 |
@@ -962,17 +1090,13 @@ extern void i2o_debug_state(struct i2o_controller *c); | |||
962 | #define ELEVEN_WORD_MSG_SIZE 0x000B0000 | 1090 | #define ELEVEN_WORD_MSG_SIZE 0x000B0000 |
963 | #define I2O_MESSAGE_SIZE(x) ((x)<<16) | 1091 | #define I2O_MESSAGE_SIZE(x) ((x)<<16) |
964 | 1092 | ||
965 | /* Special TID Assignments */ | 1093 | /* special TID assignments */ |
966 | |||
967 | #define ADAPTER_TID 0 | 1094 | #define ADAPTER_TID 0 |
968 | #define HOST_TID 1 | 1095 | #define HOST_TID 1 |
969 | 1096 | ||
970 | #define MSG_FRAME_SIZE 128 /* i2o_scsi assumes >= 32 */ | 1097 | /* outbound queue defines */ |
971 | #define REPLY_FRAME_SIZE 17 | 1098 | #define I2O_MAX_OUTBOUND_MSG_FRAMES 128 |
972 | #define SG_TABLESIZE 30 | 1099 | #define I2O_OUTBOUND_MSG_FRAME_SIZE 128 /* in 32-bit words */ |
973 | #define NMBR_MSG_FRAMES 128 | ||
974 | |||
975 | #define MSG_POOL_SIZE (MSG_FRAME_SIZE*NMBR_MSG_FRAMES*sizeof(u32)) | ||
976 | 1100 | ||
977 | #define I2O_POST_WAIT_OK 0 | 1101 | #define I2O_POST_WAIT_OK 0 |
978 | #define I2O_POST_WAIT_TIMEOUT -ETIMEDOUT | 1102 | #define I2O_POST_WAIT_TIMEOUT -ETIMEDOUT |
@@ -993,11 +1117,10 @@ extern void i2o_debug_state(struct i2o_controller *c); | |||
993 | #define I2O_HRT_GET_TRIES 3 | 1117 | #define I2O_HRT_GET_TRIES 3 |
994 | #define I2O_LCT_GET_TRIES 3 | 1118 | #define I2O_LCT_GET_TRIES 3 |
995 | 1119 | ||
996 | /* request queue sizes */ | 1120 | /* defines for max_sectors and max_phys_segments */ |
997 | #define I2O_MAX_SECTORS 1024 | 1121 | #define I2O_MAX_SECTORS 1024 |
998 | #define I2O_MAX_SEGMENTS 128 | 1122 | #define I2O_MAX_SECTORS_LIMITED 256 |
999 | 1123 | #define I2O_MAX_PHYS_SEGMENTS MAX_PHYS_SEGMENTS | |
1000 | #define I2O_REQ_MEMPOOL_SIZE 32 | ||
1001 | 1124 | ||
1002 | #endif /* __KERNEL__ */ | 1125 | #endif /* __KERNEL__ */ |
1003 | #endif /* _I2O_H */ | 1126 | #endif /* _I2O_H */ |
diff --git a/include/linux/ide.h b/include/linux/ide.h index 336d6e509f59..92129078d4f3 100644 --- a/include/linux/ide.h +++ b/include/linux/ide.h | |||
@@ -917,7 +917,7 @@ typedef struct hwif_s { | |||
917 | unsigned dma; | 917 | unsigned dma; |
918 | 918 | ||
919 | void (*led_act)(void *data, int rw); | 919 | void (*led_act)(void *data, int rw); |
920 | } ide_hwif_t; | 920 | } ____cacheline_maxaligned_in_smp ide_hwif_t; |
921 | 921 | ||
922 | /* | 922 | /* |
923 | * internal ide interrupt handler type | 923 | * internal ide interrupt handler type |
diff --git a/include/linux/ipmi.h b/include/linux/ipmi.h index 2ec265e1045f..596ca6130159 100644 --- a/include/linux/ipmi.h +++ b/include/linux/ipmi.h | |||
@@ -209,6 +209,11 @@ struct kernel_ipmi_msg | |||
209 | #include <linux/list.h> | 209 | #include <linux/list.h> |
210 | #include <linux/module.h> | 210 | #include <linux/module.h> |
211 | 211 | ||
212 | #ifdef CONFIG_PROC_FS | ||
213 | #include <linux/proc_fs.h> | ||
214 | extern struct proc_dir_entry *proc_ipmi_root; | ||
215 | #endif /* CONFIG_PROC_FS */ | ||
216 | |||
212 | /* Opaque type for a IPMI message user. One of these is needed to | 217 | /* Opaque type for a IPMI message user. One of these is needed to |
213 | send and receive messages. */ | 218 | send and receive messages. */ |
214 | typedef struct ipmi_user *ipmi_user_t; | 219 | typedef struct ipmi_user *ipmi_user_t; |
diff --git a/include/linux/irq.h b/include/linux/irq.h index 7fc1022be9ee..12277799c007 100644 --- a/include/linux/irq.h +++ b/include/linux/irq.h | |||
@@ -88,7 +88,6 @@ extern fastcall int handle_IRQ_event(unsigned int irq, struct pt_regs *regs, | |||
88 | struct irqaction *action); | 88 | struct irqaction *action); |
89 | extern fastcall unsigned int __do_IRQ(unsigned int irq, struct pt_regs *regs); | 89 | extern fastcall unsigned int __do_IRQ(unsigned int irq, struct pt_regs *regs); |
90 | extern void note_interrupt(unsigned int irq, irq_desc_t *desc, int action_ret); | 90 | extern void note_interrupt(unsigned int irq, irq_desc_t *desc, int action_ret); |
91 | extern void report_bad_irq(unsigned int irq, irq_desc_t *desc, int action_ret); | ||
92 | extern int can_request_irq(unsigned int irq, unsigned long irqflags); | 91 | extern int can_request_irq(unsigned int irq, unsigned long irqflags); |
93 | 92 | ||
94 | extern void init_irq_proc(void); | 93 | extern void init_irq_proc(void); |
diff --git a/include/linux/key-ui.h b/include/linux/key-ui.h index 60cc7b762e78..cc326174a808 100644 --- a/include/linux/key-ui.h +++ b/include/linux/key-ui.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* key-ui.h: key userspace interface stuff for use by keyfs | 1 | /* key-ui.h: key userspace interface stuff |
2 | * | 2 | * |
3 | * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. | 3 | * Copyright (C) 2004 Red Hat, Inc. All Rights Reserved. |
4 | * Written by David Howells (dhowells@redhat.com) | 4 | * Written by David Howells (dhowells@redhat.com) |
@@ -31,8 +31,10 @@ extern spinlock_t key_serial_lock; | |||
31 | * subscribed | 31 | * subscribed |
32 | */ | 32 | */ |
33 | struct keyring_list { | 33 | struct keyring_list { |
34 | unsigned maxkeys; /* max keys this list can hold */ | 34 | struct rcu_head rcu; /* RCU deletion hook */ |
35 | unsigned nkeys; /* number of keys currently held */ | 35 | unsigned short maxkeys; /* max keys this list can hold */ |
36 | unsigned short nkeys; /* number of keys currently held */ | ||
37 | unsigned short delkey; /* key to be unlinked by RCU */ | ||
36 | struct key *keys[0]; | 38 | struct key *keys[0]; |
37 | }; | 39 | }; |
38 | 40 | ||
@@ -82,8 +84,45 @@ static inline int key_any_permission(const struct key *key, key_perm_t perm) | |||
82 | return kperm != 0; | 84 | return kperm != 0; |
83 | } | 85 | } |
84 | 86 | ||
87 | static inline int key_task_groups_search(struct task_struct *tsk, gid_t gid) | ||
88 | { | ||
89 | int ret; | ||
90 | |||
91 | task_lock(tsk); | ||
92 | ret = groups_search(tsk->group_info, gid); | ||
93 | task_unlock(tsk); | ||
94 | return ret; | ||
95 | } | ||
96 | |||
97 | static inline int key_task_permission(const struct key *key, | ||
98 | struct task_struct *context, | ||
99 | key_perm_t perm) | ||
100 | { | ||
101 | key_perm_t kperm; | ||
102 | |||
103 | if (key->uid == context->fsuid) { | ||
104 | kperm = key->perm >> 16; | ||
105 | } | ||
106 | else if (key->gid != -1 && | ||
107 | key->perm & KEY_GRP_ALL && ( | ||
108 | key->gid == context->fsgid || | ||
109 | key_task_groups_search(context, key->gid) | ||
110 | ) | ||
111 | ) { | ||
112 | kperm = key->perm >> 8; | ||
113 | } | ||
114 | else { | ||
115 | kperm = key->perm; | ||
116 | } | ||
117 | |||
118 | kperm = kperm & perm & KEY_ALL; | ||
119 | |||
120 | return kperm == perm; | ||
121 | |||
122 | } | ||
85 | 123 | ||
86 | extern struct key *lookup_user_key(key_serial_t id, int create, int part, | 124 | extern struct key *lookup_user_key(struct task_struct *context, |
125 | key_serial_t id, int create, int partial, | ||
87 | key_perm_t perm); | 126 | key_perm_t perm); |
88 | 127 | ||
89 | extern long join_session_keyring(const char *name); | 128 | extern long join_session_keyring(const char *name); |
diff --git a/include/linux/key.h b/include/linux/key.h index 6aa46d0e812f..970bbd916cf4 100644 --- a/include/linux/key.h +++ b/include/linux/key.h | |||
@@ -18,7 +18,7 @@ | |||
18 | #include <linux/types.h> | 18 | #include <linux/types.h> |
19 | #include <linux/list.h> | 19 | #include <linux/list.h> |
20 | #include <linux/rbtree.h> | 20 | #include <linux/rbtree.h> |
21 | #include <linux/spinlock.h> | 21 | #include <linux/rcupdate.h> |
22 | #include <asm/atomic.h> | 22 | #include <asm/atomic.h> |
23 | 23 | ||
24 | #ifdef __KERNEL__ | 24 | #ifdef __KERNEL__ |
@@ -78,7 +78,6 @@ struct key { | |||
78 | key_serial_t serial; /* key serial number */ | 78 | key_serial_t serial; /* key serial number */ |
79 | struct rb_node serial_node; | 79 | struct rb_node serial_node; |
80 | struct key_type *type; /* type of key */ | 80 | struct key_type *type; /* type of key */ |
81 | rwlock_t lock; /* examination vs change lock */ | ||
82 | struct rw_semaphore sem; /* change vs change sem */ | 81 | struct rw_semaphore sem; /* change vs change sem */ |
83 | struct key_user *user; /* owner of this key */ | 82 | struct key_user *user; /* owner of this key */ |
84 | time_t expiry; /* time at which key expires (or 0) */ | 83 | time_t expiry; /* time at which key expires (or 0) */ |
@@ -86,14 +85,10 @@ struct key { | |||
86 | gid_t gid; | 85 | gid_t gid; |
87 | key_perm_t perm; /* access permissions */ | 86 | key_perm_t perm; /* access permissions */ |
88 | unsigned short quotalen; /* length added to quota */ | 87 | unsigned short quotalen; /* length added to quota */ |
89 | unsigned short datalen; /* payload data length */ | 88 | unsigned short datalen; /* payload data length |
90 | unsigned short flags; /* status flags (change with lock writelocked) */ | 89 | * - may not match RCU dereferenced payload |
91 | #define KEY_FLAG_INSTANTIATED 0x00000001 /* set if key has been instantiated */ | 90 | * - payload should contain own length |
92 | #define KEY_FLAG_DEAD 0x00000002 /* set if key type has been deleted */ | 91 | */ |
93 | #define KEY_FLAG_REVOKED 0x00000004 /* set if key had been revoked */ | ||
94 | #define KEY_FLAG_IN_QUOTA 0x00000008 /* set if key consumes quota */ | ||
95 | #define KEY_FLAG_USER_CONSTRUCT 0x00000010 /* set if key is being constructed in userspace */ | ||
96 | #define KEY_FLAG_NEGATIVE 0x00000020 /* set if key is negative */ | ||
97 | 92 | ||
98 | #ifdef KEY_DEBUGGING | 93 | #ifdef KEY_DEBUGGING |
99 | unsigned magic; | 94 | unsigned magic; |
@@ -101,6 +96,14 @@ struct key { | |||
101 | #define KEY_DEBUG_MAGIC_X 0xf8e9dacbu | 96 | #define KEY_DEBUG_MAGIC_X 0xf8e9dacbu |
102 | #endif | 97 | #endif |
103 | 98 | ||
99 | unsigned long flags; /* status flags (change with bitops) */ | ||
100 | #define KEY_FLAG_INSTANTIATED 0 /* set if key has been instantiated */ | ||
101 | #define KEY_FLAG_DEAD 1 /* set if key type has been deleted */ | ||
102 | #define KEY_FLAG_REVOKED 2 /* set if key had been revoked */ | ||
103 | #define KEY_FLAG_IN_QUOTA 3 /* set if key consumes quota */ | ||
104 | #define KEY_FLAG_USER_CONSTRUCT 4 /* set if key is being constructed in userspace */ | ||
105 | #define KEY_FLAG_NEGATIVE 5 /* set if key is negative */ | ||
106 | |||
104 | /* the description string | 107 | /* the description string |
105 | * - this is used to match a key against search criteria | 108 | * - this is used to match a key against search criteria |
106 | * - this should be a printable string | 109 | * - this should be a printable string |
@@ -196,10 +199,12 @@ extern int key_payload_reserve(struct key *key, size_t datalen); | |||
196 | extern int key_instantiate_and_link(struct key *key, | 199 | extern int key_instantiate_and_link(struct key *key, |
197 | const void *data, | 200 | const void *data, |
198 | size_t datalen, | 201 | size_t datalen, |
199 | struct key *keyring); | 202 | struct key *keyring, |
203 | struct key *instkey); | ||
200 | extern int key_negate_and_link(struct key *key, | 204 | extern int key_negate_and_link(struct key *key, |
201 | unsigned timeout, | 205 | unsigned timeout, |
202 | struct key *keyring); | 206 | struct key *keyring, |
207 | struct key *instkey); | ||
203 | extern void key_revoke(struct key *key); | 208 | extern void key_revoke(struct key *key); |
204 | extern void key_put(struct key *key); | 209 | extern void key_put(struct key *key); |
205 | 210 | ||
@@ -242,14 +247,13 @@ extern struct key *keyring_search(struct key *keyring, | |||
242 | struct key_type *type, | 247 | struct key_type *type, |
243 | const char *description); | 248 | const char *description); |
244 | 249 | ||
245 | extern struct key *search_process_keyrings(struct key_type *type, | ||
246 | const char *description); | ||
247 | |||
248 | extern int keyring_add_key(struct key *keyring, | 250 | extern int keyring_add_key(struct key *keyring, |
249 | struct key *key); | 251 | struct key *key); |
250 | 252 | ||
251 | extern struct key *key_lookup(key_serial_t id); | 253 | extern struct key *key_lookup(key_serial_t id); |
252 | 254 | ||
255 | extern void keyring_replace_payload(struct key *key, void *replacement); | ||
256 | |||
253 | #define key_serial(key) ((key) ? (key)->serial : 0) | 257 | #define key_serial(key) ((key) ? (key)->serial : 0) |
254 | 258 | ||
255 | /* | 259 | /* |
@@ -268,14 +272,22 @@ extern void key_fsuid_changed(struct task_struct *tsk); | |||
268 | extern void key_fsgid_changed(struct task_struct *tsk); | 272 | extern void key_fsgid_changed(struct task_struct *tsk); |
269 | extern void key_init(void); | 273 | extern void key_init(void); |
270 | 274 | ||
275 | #define __install_session_keyring(tsk, keyring) \ | ||
276 | ({ \ | ||
277 | struct key *old_session = tsk->signal->session_keyring; \ | ||
278 | tsk->signal->session_keyring = keyring; \ | ||
279 | old_session; \ | ||
280 | }) | ||
281 | |||
271 | #else /* CONFIG_KEYS */ | 282 | #else /* CONFIG_KEYS */ |
272 | 283 | ||
273 | #define key_validate(k) 0 | 284 | #define key_validate(k) 0 |
274 | #define key_serial(k) 0 | 285 | #define key_serial(k) 0 |
275 | #define key_get(k) NULL | 286 | #define key_get(k) ({ NULL; }) |
276 | #define key_put(k) do { } while(0) | 287 | #define key_put(k) do { } while(0) |
277 | #define alloc_uid_keyring(u) 0 | 288 | #define alloc_uid_keyring(u) 0 |
278 | #define switch_uid_keyring(u) do { } while(0) | 289 | #define switch_uid_keyring(u) do { } while(0) |
290 | #define __install_session_keyring(t, k) ({ NULL; }) | ||
279 | #define copy_keys(f,t) 0 | 291 | #define copy_keys(f,t) 0 |
280 | #define copy_thread_group_keys(t) 0 | 292 | #define copy_thread_group_keys(t) 0 |
281 | #define exit_keys(t) do { } while(0) | 293 | #define exit_keys(t) do { } while(0) |
diff --git a/include/linux/keyctl.h b/include/linux/keyctl.h index 381dedc370a3..8d7c59a29e09 100644 --- a/include/linux/keyctl.h +++ b/include/linux/keyctl.h | |||
@@ -20,6 +20,16 @@ | |||
20 | #define KEY_SPEC_USER_SESSION_KEYRING -5 /* - key ID for UID-session keyring */ | 20 | #define KEY_SPEC_USER_SESSION_KEYRING -5 /* - key ID for UID-session keyring */ |
21 | #define KEY_SPEC_GROUP_KEYRING -6 /* - key ID for GID-specific keyring */ | 21 | #define KEY_SPEC_GROUP_KEYRING -6 /* - key ID for GID-specific keyring */ |
22 | 22 | ||
23 | /* request-key default keyrings */ | ||
24 | #define KEY_REQKEY_DEFL_NO_CHANGE -1 | ||
25 | #define KEY_REQKEY_DEFL_DEFAULT 0 | ||
26 | #define KEY_REQKEY_DEFL_THREAD_KEYRING 1 | ||
27 | #define KEY_REQKEY_DEFL_PROCESS_KEYRING 2 | ||
28 | #define KEY_REQKEY_DEFL_SESSION_KEYRING 3 | ||
29 | #define KEY_REQKEY_DEFL_USER_KEYRING 4 | ||
30 | #define KEY_REQKEY_DEFL_USER_SESSION_KEYRING 5 | ||
31 | #define KEY_REQKEY_DEFL_GROUP_KEYRING 6 | ||
32 | |||
23 | /* keyctl commands */ | 33 | /* keyctl commands */ |
24 | #define KEYCTL_GET_KEYRING_ID 0 /* ask for a keyring's ID */ | 34 | #define KEYCTL_GET_KEYRING_ID 0 /* ask for a keyring's ID */ |
25 | #define KEYCTL_JOIN_SESSION_KEYRING 1 /* join or start named session keyring */ | 35 | #define KEYCTL_JOIN_SESSION_KEYRING 1 /* join or start named session keyring */ |
@@ -35,5 +45,6 @@ | |||
35 | #define KEYCTL_READ 11 /* read a key or keyring's contents */ | 45 | #define KEYCTL_READ 11 /* read a key or keyring's contents */ |
36 | #define KEYCTL_INSTANTIATE 12 /* instantiate a partially constructed key */ | 46 | #define KEYCTL_INSTANTIATE 12 /* instantiate a partially constructed key */ |
37 | #define KEYCTL_NEGATE 13 /* negate a partially constructed key */ | 47 | #define KEYCTL_NEGATE 13 /* negate a partially constructed key */ |
48 | #define KEYCTL_SET_REQKEY_KEYRING 14 /* set default request-key keyring */ | ||
38 | 49 | ||
39 | #endif /* _LINUX_KEYCTL_H */ | 50 | #endif /* _LINUX_KEYCTL_H */ |
diff --git a/include/linux/kmod.h b/include/linux/kmod.h index 95d0e4b0814d..e4a231549407 100644 --- a/include/linux/kmod.h +++ b/include/linux/kmod.h | |||
@@ -19,6 +19,7 @@ | |||
19 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 19 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
20 | */ | 20 | */ |
21 | 21 | ||
22 | #include <linux/stddef.h> | ||
22 | #include <linux/config.h> | 23 | #include <linux/config.h> |
23 | #include <linux/errno.h> | 24 | #include <linux/errno.h> |
24 | #include <linux/compiler.h> | 25 | #include <linux/compiler.h> |
@@ -34,7 +35,17 @@ static inline int request_module(const char * name, ...) { return -ENOSYS; } | |||
34 | #endif | 35 | #endif |
35 | 36 | ||
36 | #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x))) | 37 | #define try_then_request_module(x, mod...) ((x) ?: (request_module(mod), (x))) |
37 | extern int call_usermodehelper(char *path, char *argv[], char *envp[], int wait); | 38 | |
39 | struct key; | ||
40 | extern int call_usermodehelper_keys(char *path, char *argv[], char *envp[], | ||
41 | struct key *session_keyring, int wait); | ||
42 | |||
43 | static inline int | ||
44 | call_usermodehelper(char *path, char **argv, char **envp, int wait) | ||
45 | { | ||
46 | return call_usermodehelper_keys(path, argv, envp, NULL, wait); | ||
47 | } | ||
48 | |||
38 | extern void usermodehelper_init(void); | 49 | extern void usermodehelper_init(void); |
39 | 50 | ||
40 | #endif /* __LINUX_KMOD_H__ */ | 51 | #endif /* __LINUX_KMOD_H__ */ |
diff --git a/include/linux/kprobes.h b/include/linux/kprobes.h index 99ddba5a4e00..5e1a7b0d7b3f 100644 --- a/include/linux/kprobes.h +++ b/include/linux/kprobes.h | |||
@@ -25,27 +25,45 @@ | |||
25 | * Rusty Russell). | 25 | * Rusty Russell). |
26 | * 2004-July Suparna Bhattacharya <suparna@in.ibm.com> added jumper probes | 26 | * 2004-July Suparna Bhattacharya <suparna@in.ibm.com> added jumper probes |
27 | * interface to access function arguments. | 27 | * interface to access function arguments. |
28 | * 2005-May Hien Nguyen <hien@us.ibm.com> and Jim Keniston | ||
29 | * <jkenisto@us.ibm.com> and Prasanna S Panchamukhi | ||
30 | * <prasanna@in.ibm.com> added function-return probes. | ||
28 | */ | 31 | */ |
29 | #include <linux/config.h> | 32 | #include <linux/config.h> |
30 | #include <linux/list.h> | 33 | #include <linux/list.h> |
31 | #include <linux/notifier.h> | 34 | #include <linux/notifier.h> |
32 | #include <linux/smp.h> | 35 | #include <linux/smp.h> |
36 | |||
33 | #include <asm/kprobes.h> | 37 | #include <asm/kprobes.h> |
34 | 38 | ||
39 | /* kprobe_status settings */ | ||
40 | #define KPROBE_HIT_ACTIVE 0x00000001 | ||
41 | #define KPROBE_HIT_SS 0x00000002 | ||
42 | #define KPROBE_REENTER 0x00000004 | ||
43 | #define KPROBE_HIT_SSDONE 0x00000008 | ||
44 | |||
35 | struct kprobe; | 45 | struct kprobe; |
36 | struct pt_regs; | 46 | struct pt_regs; |
47 | struct kretprobe; | ||
48 | struct kretprobe_instance; | ||
37 | typedef int (*kprobe_pre_handler_t) (struct kprobe *, struct pt_regs *); | 49 | typedef int (*kprobe_pre_handler_t) (struct kprobe *, struct pt_regs *); |
38 | typedef int (*kprobe_break_handler_t) (struct kprobe *, struct pt_regs *); | 50 | typedef int (*kprobe_break_handler_t) (struct kprobe *, struct pt_regs *); |
39 | typedef void (*kprobe_post_handler_t) (struct kprobe *, struct pt_regs *, | 51 | typedef void (*kprobe_post_handler_t) (struct kprobe *, struct pt_regs *, |
40 | unsigned long flags); | 52 | unsigned long flags); |
41 | typedef int (*kprobe_fault_handler_t) (struct kprobe *, struct pt_regs *, | 53 | typedef int (*kprobe_fault_handler_t) (struct kprobe *, struct pt_regs *, |
42 | int trapnr); | 54 | int trapnr); |
55 | typedef int (*kretprobe_handler_t) (struct kretprobe_instance *, | ||
56 | struct pt_regs *); | ||
57 | |||
43 | struct kprobe { | 58 | struct kprobe { |
44 | struct hlist_node hlist; | 59 | struct hlist_node hlist; |
45 | 60 | ||
46 | /* list of kprobes for multi-handler support */ | 61 | /* list of kprobes for multi-handler support */ |
47 | struct list_head list; | 62 | struct list_head list; |
48 | 63 | ||
64 | /*count the number of times this probe was temporarily disarmed */ | ||
65 | unsigned long nmissed; | ||
66 | |||
49 | /* location of the probe point */ | 67 | /* location of the probe point */ |
50 | kprobe_opcode_t *addr; | 68 | kprobe_opcode_t *addr; |
51 | 69 | ||
@@ -85,6 +103,62 @@ struct jprobe { | |||
85 | kprobe_opcode_t *entry; /* probe handling code to jump to */ | 103 | kprobe_opcode_t *entry; /* probe handling code to jump to */ |
86 | }; | 104 | }; |
87 | 105 | ||
106 | #ifdef ARCH_SUPPORTS_KRETPROBES | ||
107 | extern int trampoline_probe_handler(struct kprobe *p, struct pt_regs *regs); | ||
108 | extern void trampoline_post_handler(struct kprobe *p, struct pt_regs *regs, | ||
109 | unsigned long flags); | ||
110 | extern struct task_struct *arch_get_kprobe_task(void *ptr); | ||
111 | extern void arch_prepare_kretprobe(struct kretprobe *rp, struct pt_regs *regs); | ||
112 | extern void arch_kprobe_flush_task(struct task_struct *tk); | ||
113 | #else /* ARCH_SUPPORTS_KRETPROBES */ | ||
114 | static inline void kretprobe_trampoline(void) | ||
115 | { | ||
116 | } | ||
117 | static inline int trampoline_probe_handler(struct kprobe *p, | ||
118 | struct pt_regs *regs) | ||
119 | { | ||
120 | return 0; | ||
121 | } | ||
122 | static inline void trampoline_post_handler(struct kprobe *p, | ||
123 | struct pt_regs *regs, unsigned long flags) | ||
124 | { | ||
125 | } | ||
126 | static inline void arch_prepare_kretprobe(struct kretprobe *rp, | ||
127 | struct pt_regs *regs) | ||
128 | { | ||
129 | } | ||
130 | static inline void arch_kprobe_flush_task(struct task_struct *tk) | ||
131 | { | ||
132 | } | ||
133 | #define arch_get_kprobe_task(ptr) ((struct task_struct *)NULL) | ||
134 | #endif /* ARCH_SUPPORTS_KRETPROBES */ | ||
135 | /* | ||
136 | * Function-return probe - | ||
137 | * Note: | ||
138 | * User needs to provide a handler function, and initialize maxactive. | ||
139 | * maxactive - The maximum number of instances of the probed function that | ||
140 | * can be active concurrently. | ||
141 | * nmissed - tracks the number of times the probed function's return was | ||
142 | * ignored, due to maxactive being too low. | ||
143 | * | ||
144 | */ | ||
145 | struct kretprobe { | ||
146 | struct kprobe kp; | ||
147 | kretprobe_handler_t handler; | ||
148 | int maxactive; | ||
149 | int nmissed; | ||
150 | struct hlist_head free_instances; | ||
151 | struct hlist_head used_instances; | ||
152 | }; | ||
153 | |||
154 | struct kretprobe_instance { | ||
155 | struct hlist_node uflist; /* either on free list or used list */ | ||
156 | struct hlist_node hlist; | ||
157 | struct kretprobe *rp; | ||
158 | void *ret_addr; | ||
159 | void *stack_addr; | ||
160 | }; | ||
161 | |||
88 | #ifdef CONFIG_KPROBES | 162 | #ifdef CONFIG_KPROBES |
89 | /* Locks kprobe: irq must be disabled */ | 163 | /* Locks kprobe: irq must be disabled */ |
90 | void lock_kprobes(void); | 164 | void lock_kprobes(void); |
@@ -99,11 +173,14 @@ static inline int kprobe_running(void) | |||
99 | 173 | ||
100 | extern int arch_prepare_kprobe(struct kprobe *p); | 174 | extern int arch_prepare_kprobe(struct kprobe *p); |
101 | extern void arch_copy_kprobe(struct kprobe *p); | 175 | extern void arch_copy_kprobe(struct kprobe *p); |
176 | extern void arch_arm_kprobe(struct kprobe *p); | ||
177 | extern void arch_disarm_kprobe(struct kprobe *p); | ||
102 | extern void arch_remove_kprobe(struct kprobe *p); | 178 | extern void arch_remove_kprobe(struct kprobe *p); |
103 | extern void show_registers(struct pt_regs *regs); | 179 | extern void show_registers(struct pt_regs *regs); |
104 | 180 | ||
105 | /* Get the kprobe at this addr (if any). Must have called lock_kprobes */ | 181 | /* Get the kprobe at this addr (if any). Must have called lock_kprobes */ |
106 | struct kprobe *get_kprobe(void *addr); | 182 | struct kprobe *get_kprobe(void *addr); |
183 | struct hlist_head * kretprobe_inst_table_head(struct task_struct *tsk); | ||
107 | 184 | ||
108 | int register_kprobe(struct kprobe *p); | 185 | int register_kprobe(struct kprobe *p); |
109 | void unregister_kprobe(struct kprobe *p); | 186 | void unregister_kprobe(struct kprobe *p); |
@@ -113,7 +190,16 @@ int register_jprobe(struct jprobe *p); | |||
113 | void unregister_jprobe(struct jprobe *p); | 190 | void unregister_jprobe(struct jprobe *p); |
114 | void jprobe_return(void); | 191 | void jprobe_return(void); |
115 | 192 | ||
116 | #else | 193 | int register_kretprobe(struct kretprobe *rp); |
194 | void unregister_kretprobe(struct kretprobe *rp); | ||
195 | |||
196 | struct kretprobe_instance *get_free_rp_inst(struct kretprobe *rp); | ||
197 | struct kretprobe_instance *get_rp_inst(void *sara); | ||
198 | struct kretprobe_instance *get_rp_inst_tsk(struct task_struct *tk); | ||
199 | void add_rp_inst(struct kretprobe_instance *ri); | ||
200 | void kprobe_flush_task(struct task_struct *tk); | ||
201 | void recycle_rp_inst(struct kretprobe_instance *ri); | ||
202 | #else /* CONFIG_KPROBES */ | ||
117 | static inline int kprobe_running(void) | 203 | static inline int kprobe_running(void) |
118 | { | 204 | { |
119 | return 0; | 205 | return 0; |
@@ -135,5 +221,15 @@ static inline void unregister_jprobe(struct jprobe *p) | |||
135 | static inline void jprobe_return(void) | 221 | static inline void jprobe_return(void) |
136 | { | 222 | { |
137 | } | 223 | } |
138 | #endif | 224 | static inline int register_kretprobe(struct kretprobe *rp) |
225 | { | ||
226 | return -ENOSYS; | ||
227 | } | ||
228 | static inline void unregister_kretprobe(struct kretprobe *rp) | ||
229 | { | ||
230 | } | ||
231 | static inline void kprobe_flush_task(struct task_struct *tk) | ||
232 | { | ||
233 | } | ||
234 | #endif /* CONFIG_KPROBES */ | ||
139 | #endif /* _LINUX_KPROBES_H */ | 235 | #endif /* _LINUX_KPROBES_H */ |
diff --git a/include/linux/loop.h b/include/linux/loop.h index 8220d9c9da00..53fa51595443 100644 --- a/include/linux/loop.h +++ b/include/linux/loop.h | |||
@@ -61,7 +61,7 @@ struct loop_device { | |||
61 | struct semaphore lo_sem; | 61 | struct semaphore lo_sem; |
62 | struct semaphore lo_ctl_mutex; | 62 | struct semaphore lo_ctl_mutex; |
63 | struct semaphore lo_bh_mutex; | 63 | struct semaphore lo_bh_mutex; |
64 | atomic_t lo_pending; | 64 | int lo_pending; |
65 | 65 | ||
66 | request_queue_t *lo_queue; | 66 | request_queue_t *lo_queue; |
67 | }; | 67 | }; |
diff --git a/include/linux/mempool.h b/include/linux/mempool.h index 4a36edf1c974..796220ce47cc 100644 --- a/include/linux/mempool.h +++ b/include/linux/mempool.h | |||
@@ -20,9 +20,14 @@ typedef struct mempool_s { | |||
20 | mempool_free_t *free; | 20 | mempool_free_t *free; |
21 | wait_queue_head_t wait; | 21 | wait_queue_head_t wait; |
22 | } mempool_t; | 22 | } mempool_t; |
23 | extern mempool_t * mempool_create(int min_nr, mempool_alloc_t *alloc_fn, | 23 | |
24 | mempool_free_t *free_fn, void *pool_data); | 24 | extern mempool_t *mempool_create(int min_nr, mempool_alloc_t *alloc_fn, |
25 | extern int mempool_resize(mempool_t *pool, int new_min_nr, unsigned int __nocast gfp_mask); | 25 | mempool_free_t *free_fn, void *pool_data); |
26 | extern mempool_t *mempool_create_node(int min_nr, mempool_alloc_t *alloc_fn, | ||
27 | mempool_free_t *free_fn, void *pool_data, int nid); | ||
28 | |||
29 | extern int mempool_resize(mempool_t *pool, int new_min_nr, | ||
30 | unsigned int __nocast gfp_mask); | ||
26 | extern void mempool_destroy(mempool_t *pool); | 31 | extern void mempool_destroy(mempool_t *pool); |
27 | extern void * mempool_alloc(mempool_t *pool, unsigned int __nocast gfp_mask); | 32 | extern void * mempool_alloc(mempool_t *pool, unsigned int __nocast gfp_mask); |
28 | extern void mempool_free(void *element, mempool_t *pool); | 33 | extern void mempool_free(void *element, mempool_t *pool); |
diff --git a/include/linux/mm.h b/include/linux/mm.h index 1813b162b0a8..6eb7f48317f8 100644 --- a/include/linux/mm.h +++ b/include/linux/mm.h | |||
@@ -395,19 +395,81 @@ static inline void put_page(struct page *page) | |||
395 | /* | 395 | /* |
396 | * The zone field is never updated after free_area_init_core() | 396 | * The zone field is never updated after free_area_init_core() |
397 | * sets it, so none of the operations on it need to be atomic. | 397 | * sets it, so none of the operations on it need to be atomic. |
398 | * We'll have up to (MAX_NUMNODES * MAX_NR_ZONES) zones total, | ||
399 | * so we use (MAX_NODES_SHIFT + MAX_ZONES_SHIFT) here to get enough bits. | ||
400 | */ | 398 | */ |
401 | #define NODEZONE_SHIFT (sizeof(page_flags_t)*8 - MAX_NODES_SHIFT - MAX_ZONES_SHIFT) | 399 | |
402 | #define NODEZONE(node, zone) ((node << ZONES_SHIFT) | zone) | 400 | |
401 | /* | ||
402 | * page->flags layout: | ||
403 | * | ||
404 | * There are three possibilities for how page->flags get | ||
405 | * laid out. The first is for the normal case, without | ||
406 | * sparsemem. The second is for sparsemem when there is | ||
407 | * plenty of space for node and section. The last is when | ||
408 | * we have run out of space and have to fall back to an | ||
409 | * alternate (slower) way of determining the node. | ||
410 | * | ||
411 | * No sparsemem: | NODE | ZONE | ... | FLAGS | | ||
412 | * with space for node: | SECTION | NODE | ZONE | ... | FLAGS | | ||
413 | * no space for node: | SECTION | ZONE | ... | FLAGS | | ||
414 | */ | ||
415 | #ifdef CONFIG_SPARSEMEM | ||
416 | #define SECTIONS_WIDTH SECTIONS_SHIFT | ||
417 | #else | ||
418 | #define SECTIONS_WIDTH 0 | ||
419 | #endif | ||
420 | |||
421 | #define ZONES_WIDTH ZONES_SHIFT | ||
422 | |||
423 | #if SECTIONS_WIDTH+ZONES_WIDTH+NODES_SHIFT <= FLAGS_RESERVED | ||
424 | #define NODES_WIDTH NODES_SHIFT | ||
425 | #else | ||
426 | #define NODES_WIDTH 0 | ||
427 | #endif | ||
428 | |||
429 | /* Page flags: | [SECTION] | [NODE] | ZONE | ... | FLAGS | */ | ||
430 | #define SECTIONS_PGOFF ((sizeof(page_flags_t)*8) - SECTIONS_WIDTH) | ||
431 | #define NODES_PGOFF (SECTIONS_PGOFF - NODES_WIDTH) | ||
432 | #define ZONES_PGOFF (NODES_PGOFF - ZONES_WIDTH) | ||
433 | |||
434 | /* | ||
435 | * We are going to use the flags for the page to node mapping if its in | ||
436 | * there. This includes the case where there is no node, so it is implicit. | ||
437 | */ | ||
438 | #define FLAGS_HAS_NODE (NODES_WIDTH > 0 || NODES_SHIFT == 0) | ||
439 | |||
440 | #ifndef PFN_SECTION_SHIFT | ||
441 | #define PFN_SECTION_SHIFT 0 | ||
442 | #endif | ||
443 | |||
444 | /* | ||
445 | * Define the bit shifts to access each section. For non-existant | ||
446 | * sections we define the shift as 0; that plus a 0 mask ensures | ||
447 | * the compiler will optimise away reference to them. | ||
448 | */ | ||
449 | #define SECTIONS_PGSHIFT (SECTIONS_PGOFF * (SECTIONS_WIDTH != 0)) | ||
450 | #define NODES_PGSHIFT (NODES_PGOFF * (NODES_WIDTH != 0)) | ||
451 | #define ZONES_PGSHIFT (ZONES_PGOFF * (ZONES_WIDTH != 0)) | ||
452 | |||
453 | /* NODE:ZONE or SECTION:ZONE is used to lookup the zone from a page. */ | ||
454 | #if FLAGS_HAS_NODE | ||
455 | #define ZONETABLE_SHIFT (NODES_SHIFT + ZONES_SHIFT) | ||
456 | #else | ||
457 | #define ZONETABLE_SHIFT (SECTIONS_SHIFT + ZONES_SHIFT) | ||
458 | #endif | ||
459 | #define ZONETABLE_PGSHIFT ZONES_PGSHIFT | ||
460 | |||
461 | #if SECTIONS_WIDTH+NODES_WIDTH+ZONES_WIDTH > FLAGS_RESERVED | ||
462 | #error SECTIONS_WIDTH+NODES_WIDTH+ZONES_WIDTH > FLAGS_RESERVED | ||
463 | #endif | ||
464 | |||
465 | #define ZONES_MASK ((1UL << ZONES_WIDTH) - 1) | ||
466 | #define NODES_MASK ((1UL << NODES_WIDTH) - 1) | ||
467 | #define SECTIONS_MASK ((1UL << SECTIONS_WIDTH) - 1) | ||
468 | #define ZONETABLE_MASK ((1UL << ZONETABLE_SHIFT) - 1) | ||
403 | 469 | ||
404 | static inline unsigned long page_zonenum(struct page *page) | 470 | static inline unsigned long page_zonenum(struct page *page) |
405 | { | 471 | { |
406 | return (page->flags >> NODEZONE_SHIFT) & (~(~0UL << ZONES_SHIFT)); | 472 | return (page->flags >> ZONES_PGSHIFT) & ZONES_MASK; |
407 | } | ||
408 | static inline unsigned long page_to_nid(struct page *page) | ||
409 | { | ||
410 | return (page->flags >> (NODEZONE_SHIFT + ZONES_SHIFT)); | ||
411 | } | 473 | } |
412 | 474 | ||
413 | struct zone; | 475 | struct zone; |
@@ -415,13 +477,44 @@ extern struct zone *zone_table[]; | |||
415 | 477 | ||
416 | static inline struct zone *page_zone(struct page *page) | 478 | static inline struct zone *page_zone(struct page *page) |
417 | { | 479 | { |
418 | return zone_table[page->flags >> NODEZONE_SHIFT]; | 480 | return zone_table[(page->flags >> ZONETABLE_PGSHIFT) & |
481 | ZONETABLE_MASK]; | ||
482 | } | ||
483 | |||
484 | static inline unsigned long page_to_nid(struct page *page) | ||
485 | { | ||
486 | if (FLAGS_HAS_NODE) | ||
487 | return (page->flags >> NODES_PGSHIFT) & NODES_MASK; | ||
488 | else | ||
489 | return page_zone(page)->zone_pgdat->node_id; | ||
490 | } | ||
491 | static inline unsigned long page_to_section(struct page *page) | ||
492 | { | ||
493 | return (page->flags >> SECTIONS_PGSHIFT) & SECTIONS_MASK; | ||
494 | } | ||
495 | |||
496 | static inline void set_page_zone(struct page *page, unsigned long zone) | ||
497 | { | ||
498 | page->flags &= ~(ZONES_MASK << ZONES_PGSHIFT); | ||
499 | page->flags |= (zone & ZONES_MASK) << ZONES_PGSHIFT; | ||
500 | } | ||
501 | static inline void set_page_node(struct page *page, unsigned long node) | ||
502 | { | ||
503 | page->flags &= ~(NODES_MASK << NODES_PGSHIFT); | ||
504 | page->flags |= (node & NODES_MASK) << NODES_PGSHIFT; | ||
505 | } | ||
506 | static inline void set_page_section(struct page *page, unsigned long section) | ||
507 | { | ||
508 | page->flags &= ~(SECTIONS_MASK << SECTIONS_PGSHIFT); | ||
509 | page->flags |= (section & SECTIONS_MASK) << SECTIONS_PGSHIFT; | ||
419 | } | 510 | } |
420 | 511 | ||
421 | static inline void set_page_zone(struct page *page, unsigned long nodezone_num) | 512 | static inline void set_page_links(struct page *page, unsigned long zone, |
513 | unsigned long node, unsigned long pfn) | ||
422 | { | 514 | { |
423 | page->flags &= ~(~0UL << NODEZONE_SHIFT); | 515 | set_page_zone(page, zone); |
424 | page->flags |= nodezone_num << NODEZONE_SHIFT; | 516 | set_page_node(page, node); |
517 | set_page_section(page, pfn_to_section_nr(pfn)); | ||
425 | } | 518 | } |
426 | 519 | ||
427 | #ifndef CONFIG_DISCONTIGMEM | 520 | #ifndef CONFIG_DISCONTIGMEM |
diff --git a/include/linux/mmzone.h b/include/linux/mmzone.h index 4733d35d8223..6c90461ed99f 100644 --- a/include/linux/mmzone.h +++ b/include/linux/mmzone.h | |||
@@ -269,7 +269,9 @@ typedef struct pglist_data { | |||
269 | struct zone node_zones[MAX_NR_ZONES]; | 269 | struct zone node_zones[MAX_NR_ZONES]; |
270 | struct zonelist node_zonelists[GFP_ZONETYPES]; | 270 | struct zonelist node_zonelists[GFP_ZONETYPES]; |
271 | int nr_zones; | 271 | int nr_zones; |
272 | #ifdef CONFIG_FLAT_NODE_MEM_MAP | ||
272 | struct page *node_mem_map; | 273 | struct page *node_mem_map; |
274 | #endif | ||
273 | struct bootmem_data *bdata; | 275 | struct bootmem_data *bdata; |
274 | unsigned long node_start_pfn; | 276 | unsigned long node_start_pfn; |
275 | unsigned long node_present_pages; /* total number of physical pages */ | 277 | unsigned long node_present_pages; /* total number of physical pages */ |
@@ -284,6 +286,12 @@ typedef struct pglist_data { | |||
284 | 286 | ||
285 | #define node_present_pages(nid) (NODE_DATA(nid)->node_present_pages) | 287 | #define node_present_pages(nid) (NODE_DATA(nid)->node_present_pages) |
286 | #define node_spanned_pages(nid) (NODE_DATA(nid)->node_spanned_pages) | 288 | #define node_spanned_pages(nid) (NODE_DATA(nid)->node_spanned_pages) |
289 | #ifdef CONFIG_FLAT_NODE_MEM_MAP | ||
290 | #define pgdat_page_nr(pgdat, pagenr) ((pgdat)->node_mem_map + (pagenr)) | ||
291 | #else | ||
292 | #define pgdat_page_nr(pgdat, pagenr) pfn_to_page((pgdat)->node_start_pfn + (pagenr)) | ||
293 | #endif | ||
294 | #define nid_page_nr(nid, pagenr) pgdat_page_nr(NODE_DATA(nid),(pagenr)) | ||
287 | 295 | ||
288 | extern struct pglist_data *pgdat_list; | 296 | extern struct pglist_data *pgdat_list; |
289 | 297 | ||
@@ -400,7 +408,7 @@ int lowmem_reserve_ratio_sysctl_handler(struct ctl_table *, int, struct file *, | |||
400 | /* Returns the number of the current Node. */ | 408 | /* Returns the number of the current Node. */ |
401 | #define numa_node_id() (cpu_to_node(raw_smp_processor_id())) | 409 | #define numa_node_id() (cpu_to_node(raw_smp_processor_id())) |
402 | 410 | ||
403 | #ifndef CONFIG_DISCONTIGMEM | 411 | #ifndef CONFIG_NEED_MULTIPLE_NODES |
404 | 412 | ||
405 | extern struct pglist_data contig_page_data; | 413 | extern struct pglist_data contig_page_data; |
406 | #define NODE_DATA(nid) (&contig_page_data) | 414 | #define NODE_DATA(nid) (&contig_page_data) |
@@ -408,36 +416,177 @@ extern struct pglist_data contig_page_data; | |||
408 | #define MAX_NODES_SHIFT 1 | 416 | #define MAX_NODES_SHIFT 1 |
409 | #define pfn_to_nid(pfn) (0) | 417 | #define pfn_to_nid(pfn) (0) |
410 | 418 | ||
411 | #else /* CONFIG_DISCONTIGMEM */ | 419 | #else /* CONFIG_NEED_MULTIPLE_NODES */ |
412 | 420 | ||
413 | #include <asm/mmzone.h> | 421 | #include <asm/mmzone.h> |
414 | 422 | ||
423 | #endif /* !CONFIG_NEED_MULTIPLE_NODES */ | ||
424 | |||
425 | #ifdef CONFIG_SPARSEMEM | ||
426 | #include <asm/sparsemem.h> | ||
427 | #endif | ||
428 | |||
415 | #if BITS_PER_LONG == 32 || defined(ARCH_HAS_ATOMIC_UNSIGNED) | 429 | #if BITS_PER_LONG == 32 || defined(ARCH_HAS_ATOMIC_UNSIGNED) |
416 | /* | 430 | /* |
417 | * with 32 bit page->flags field, we reserve 8 bits for node/zone info. | 431 | * with 32 bit page->flags field, we reserve 8 bits for node/zone info. |
418 | * there are 3 zones (2 bits) and this leaves 8-2=6 bits for nodes. | 432 | * there are 3 zones (2 bits) and this leaves 8-2=6 bits for nodes. |
419 | */ | 433 | */ |
420 | #define MAX_NODES_SHIFT 6 | 434 | #define FLAGS_RESERVED 8 |
435 | |||
421 | #elif BITS_PER_LONG == 64 | 436 | #elif BITS_PER_LONG == 64 |
422 | /* | 437 | /* |
423 | * with 64 bit flags field, there's plenty of room. | 438 | * with 64 bit flags field, there's plenty of room. |
424 | */ | 439 | */ |
425 | #define MAX_NODES_SHIFT 10 | 440 | #define FLAGS_RESERVED 32 |
441 | |||
442 | #else | ||
443 | |||
444 | #error BITS_PER_LONG not defined | ||
445 | |||
446 | #endif | ||
447 | |||
448 | #ifndef CONFIG_HAVE_ARCH_EARLY_PFN_TO_NID | ||
449 | #define early_pfn_to_nid(nid) (0UL) | ||
426 | #endif | 450 | #endif |
427 | 451 | ||
428 | #endif /* !CONFIG_DISCONTIGMEM */ | 452 | #define pfn_to_section_nr(pfn) ((pfn) >> PFN_SECTION_SHIFT) |
453 | #define section_nr_to_pfn(sec) ((sec) << PFN_SECTION_SHIFT) | ||
454 | |||
455 | #ifdef CONFIG_SPARSEMEM | ||
456 | |||
457 | /* | ||
458 | * SECTION_SHIFT #bits space required to store a section # | ||
459 | * | ||
460 | * PA_SECTION_SHIFT physical address to/from section number | ||
461 | * PFN_SECTION_SHIFT pfn to/from section number | ||
462 | */ | ||
463 | #define SECTIONS_SHIFT (MAX_PHYSMEM_BITS - SECTION_SIZE_BITS) | ||
464 | |||
465 | #define PA_SECTION_SHIFT (SECTION_SIZE_BITS) | ||
466 | #define PFN_SECTION_SHIFT (SECTION_SIZE_BITS - PAGE_SHIFT) | ||
467 | |||
468 | #define NR_MEM_SECTIONS (1UL << SECTIONS_SHIFT) | ||
429 | 469 | ||
430 | #if NODES_SHIFT > MAX_NODES_SHIFT | 470 | #define PAGES_PER_SECTION (1UL << PFN_SECTION_SHIFT) |
431 | #error NODES_SHIFT > MAX_NODES_SHIFT | 471 | #define PAGE_SECTION_MASK (~(PAGES_PER_SECTION-1)) |
472 | |||
473 | #if (MAX_ORDER - 1 + PAGE_SHIFT) > SECTION_SIZE_BITS | ||
474 | #error Allocator MAX_ORDER exceeds SECTION_SIZE | ||
432 | #endif | 475 | #endif |
433 | 476 | ||
434 | /* There are currently 3 zones: DMA, Normal & Highmem, thus we need 2 bits */ | 477 | struct page; |
435 | #define MAX_ZONES_SHIFT 2 | 478 | struct mem_section { |
479 | /* | ||
480 | * This is, logically, a pointer to an array of struct | ||
481 | * pages. However, it is stored with some other magic. | ||
482 | * (see sparse.c::sparse_init_one_section()) | ||
483 | * | ||
484 | * Making it a UL at least makes someone do a cast | ||
485 | * before using it wrong. | ||
486 | */ | ||
487 | unsigned long section_mem_map; | ||
488 | }; | ||
489 | |||
490 | extern struct mem_section mem_section[NR_MEM_SECTIONS]; | ||
436 | 491 | ||
437 | #if ZONES_SHIFT > MAX_ZONES_SHIFT | 492 | static inline struct mem_section *__nr_to_section(unsigned long nr) |
438 | #error ZONES_SHIFT > MAX_ZONES_SHIFT | 493 | { |
494 | return &mem_section[nr]; | ||
495 | } | ||
496 | |||
497 | /* | ||
498 | * We use the lower bits of the mem_map pointer to store | ||
499 | * a little bit of information. There should be at least | ||
500 | * 3 bits here due to 32-bit alignment. | ||
501 | */ | ||
502 | #define SECTION_MARKED_PRESENT (1UL<<0) | ||
503 | #define SECTION_HAS_MEM_MAP (1UL<<1) | ||
504 | #define SECTION_MAP_LAST_BIT (1UL<<2) | ||
505 | #define SECTION_MAP_MASK (~(SECTION_MAP_LAST_BIT-1)) | ||
506 | |||
507 | static inline struct page *__section_mem_map_addr(struct mem_section *section) | ||
508 | { | ||
509 | unsigned long map = section->section_mem_map; | ||
510 | map &= SECTION_MAP_MASK; | ||
511 | return (struct page *)map; | ||
512 | } | ||
513 | |||
514 | static inline int valid_section(struct mem_section *section) | ||
515 | { | ||
516 | return (section->section_mem_map & SECTION_MARKED_PRESENT); | ||
517 | } | ||
518 | |||
519 | static inline int section_has_mem_map(struct mem_section *section) | ||
520 | { | ||
521 | return (section->section_mem_map & SECTION_HAS_MEM_MAP); | ||
522 | } | ||
523 | |||
524 | static inline int valid_section_nr(unsigned long nr) | ||
525 | { | ||
526 | return valid_section(__nr_to_section(nr)); | ||
527 | } | ||
528 | |||
529 | /* | ||
530 | * Given a kernel address, find the home node of the underlying memory. | ||
531 | */ | ||
532 | #define kvaddr_to_nid(kaddr) pfn_to_nid(__pa(kaddr) >> PAGE_SHIFT) | ||
533 | |||
534 | static inline struct mem_section *__pfn_to_section(unsigned long pfn) | ||
535 | { | ||
536 | return __nr_to_section(pfn_to_section_nr(pfn)); | ||
537 | } | ||
538 | |||
539 | #define pfn_to_page(pfn) \ | ||
540 | ({ \ | ||
541 | unsigned long __pfn = (pfn); \ | ||
542 | __section_mem_map_addr(__pfn_to_section(__pfn)) + __pfn; \ | ||
543 | }) | ||
544 | #define page_to_pfn(page) \ | ||
545 | ({ \ | ||
546 | page - __section_mem_map_addr(__nr_to_section( \ | ||
547 | page_to_section(page))); \ | ||
548 | }) | ||
549 | |||
550 | static inline int pfn_valid(unsigned long pfn) | ||
551 | { | ||
552 | if (pfn_to_section_nr(pfn) >= NR_MEM_SECTIONS) | ||
553 | return 0; | ||
554 | return valid_section(__nr_to_section(pfn_to_section_nr(pfn))); | ||
555 | } | ||
556 | |||
557 | /* | ||
558 | * These are _only_ used during initialisation, therefore they | ||
559 | * can use __initdata ... They could have names to indicate | ||
560 | * this restriction. | ||
561 | */ | ||
562 | #ifdef CONFIG_NUMA | ||
563 | #define pfn_to_nid early_pfn_to_nid | ||
564 | #endif | ||
565 | |||
566 | #define pfn_to_pgdat(pfn) \ | ||
567 | ({ \ | ||
568 | NODE_DATA(pfn_to_nid(pfn)); \ | ||
569 | }) | ||
570 | |||
571 | #define early_pfn_valid(pfn) pfn_valid(pfn) | ||
572 | void sparse_init(void); | ||
573 | #else | ||
574 | #define sparse_init() do {} while (0) | ||
575 | #endif /* CONFIG_SPARSEMEM */ | ||
576 | |||
577 | #ifdef CONFIG_NODES_SPAN_OTHER_NODES | ||
578 | #define early_pfn_in_nid(pfn, nid) (early_pfn_to_nid(pfn) == (nid)) | ||
579 | #else | ||
580 | #define early_pfn_in_nid(pfn, nid) (1) | ||
581 | #endif | ||
582 | |||
583 | #ifndef early_pfn_valid | ||
584 | #define early_pfn_valid(pfn) (1) | ||
439 | #endif | 585 | #endif |
440 | 586 | ||
587 | void memory_present(int nid, unsigned long start, unsigned long end); | ||
588 | unsigned long __init node_memmap_size_bytes(int, unsigned long, unsigned long); | ||
589 | |||
441 | #endif /* !__ASSEMBLY__ */ | 590 | #endif /* !__ASSEMBLY__ */ |
442 | #endif /* __KERNEL__ */ | 591 | #endif /* __KERNEL__ */ |
443 | #endif /* _LINUX_MMZONE_H */ | 592 | #endif /* _LINUX_MMZONE_H */ |
diff --git a/include/linux/module.h b/include/linux/module.h index 0e432a0f4aee..f05372b7fe77 100644 --- a/include/linux/module.h +++ b/include/linux/module.h | |||
@@ -51,6 +51,9 @@ struct module_attribute { | |||
51 | ssize_t (*show)(struct module_attribute *, struct module *, char *); | 51 | ssize_t (*show)(struct module_attribute *, struct module *, char *); |
52 | ssize_t (*store)(struct module_attribute *, struct module *, | 52 | ssize_t (*store)(struct module_attribute *, struct module *, |
53 | const char *, size_t count); | 53 | const char *, size_t count); |
54 | void (*setup)(struct module *, const char *); | ||
55 | int (*test)(struct module *); | ||
56 | void (*free)(struct module *); | ||
54 | }; | 57 | }; |
55 | 58 | ||
56 | struct module_kobject | 59 | struct module_kobject |
@@ -239,6 +242,8 @@ struct module | |||
239 | /* Sysfs stuff. */ | 242 | /* Sysfs stuff. */ |
240 | struct module_kobject mkobj; | 243 | struct module_kobject mkobj; |
241 | struct module_param_attrs *param_attrs; | 244 | struct module_param_attrs *param_attrs; |
245 | const char *version; | ||
246 | const char *srcversion; | ||
242 | 247 | ||
243 | /* Exported symbols */ | 248 | /* Exported symbols */ |
244 | const struct kernel_symbol *syms; | 249 | const struct kernel_symbol *syms; |
diff --git a/include/linux/namespace.h b/include/linux/namespace.h index 9eca1558d72f..697991b69f9b 100644 --- a/include/linux/namespace.h +++ b/include/linux/namespace.h | |||
@@ -12,7 +12,6 @@ struct namespace { | |||
12 | struct rw_semaphore sem; | 12 | struct rw_semaphore sem; |
13 | }; | 13 | }; |
14 | 14 | ||
15 | extern void umount_tree(struct vfsmount *); | ||
16 | extern int copy_namespace(int, struct task_struct *); | 15 | extern int copy_namespace(int, struct task_struct *); |
17 | extern void __put_namespace(struct namespace *namespace); | 16 | extern void __put_namespace(struct namespace *namespace); |
18 | 17 | ||
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index d6afd440cf7b..3a0ed7f9e801 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
@@ -164,12 +164,6 @@ struct netif_rx_stats | |||
164 | unsigned total; | 164 | unsigned total; |
165 | unsigned dropped; | 165 | unsigned dropped; |
166 | unsigned time_squeeze; | 166 | unsigned time_squeeze; |
167 | unsigned throttled; | ||
168 | unsigned fastroute_hit; | ||
169 | unsigned fastroute_success; | ||
170 | unsigned fastroute_defer; | ||
171 | unsigned fastroute_deferred_out; | ||
172 | unsigned fastroute_latency_reduction; | ||
173 | unsigned cpu_collision; | 167 | unsigned cpu_collision; |
174 | }; | 168 | }; |
175 | 169 | ||
@@ -562,12 +556,9 @@ static inline int unregister_gifconf(unsigned int family) | |||
562 | 556 | ||
563 | struct softnet_data | 557 | struct softnet_data |
564 | { | 558 | { |
565 | int throttle; | 559 | struct net_device *output_queue; |
566 | int cng_level; | ||
567 | int avg_blog; | ||
568 | struct sk_buff_head input_pkt_queue; | 560 | struct sk_buff_head input_pkt_queue; |
569 | struct list_head poll_list; | 561 | struct list_head poll_list; |
570 | struct net_device *output_queue; | ||
571 | struct sk_buff *completion_queue; | 562 | struct sk_buff *completion_queue; |
572 | 563 | ||
573 | struct net_device backlog_dev; /* Sorry. 8) */ | 564 | struct net_device backlog_dev; /* Sorry. 8) */ |
@@ -925,10 +916,6 @@ extern int skb_checksum_help(struct sk_buff *skb, int inward); | |||
925 | extern void net_enable_timestamp(void); | 916 | extern void net_enable_timestamp(void); |
926 | extern void net_disable_timestamp(void); | 917 | extern void net_disable_timestamp(void); |
927 | 918 | ||
928 | #ifdef CONFIG_SYSCTL | ||
929 | extern char *net_sysctl_strdup(const char *s); | ||
930 | #endif | ||
931 | |||
932 | #endif /* __KERNEL__ */ | 919 | #endif /* __KERNEL__ */ |
933 | 920 | ||
934 | #endif /* _LINUX_DEV_H */ | 921 | #endif /* _LINUX_DEV_H */ |
diff --git a/include/linux/nfs4.h b/include/linux/nfs4.h index 5bb5b2fd7ba2..0c1c306cdaec 100644 --- a/include/linux/nfs4.h +++ b/include/linux/nfs4.h | |||
@@ -28,7 +28,7 @@ | |||
28 | #define NFS4_ACCESS_DELETE 0x0010 | 28 | #define NFS4_ACCESS_DELETE 0x0010 |
29 | #define NFS4_ACCESS_EXECUTE 0x0020 | 29 | #define NFS4_ACCESS_EXECUTE 0x0020 |
30 | 30 | ||
31 | #define NFS4_FH_PERISTENT 0x0000 | 31 | #define NFS4_FH_PERSISTENT 0x0000 |
32 | #define NFS4_FH_NOEXPIRE_WITH_OPEN 0x0001 | 32 | #define NFS4_FH_NOEXPIRE_WITH_OPEN 0x0001 |
33 | #define NFS4_FH_VOLATILE_ANY 0x0002 | 33 | #define NFS4_FH_VOLATILE_ANY 0x0002 |
34 | #define NFS4_FH_VOL_MIGRATION 0x0004 | 34 | #define NFS4_FH_VOL_MIGRATION 0x0004 |
diff --git a/include/linux/nfsd/nfsd.h b/include/linux/nfsd/nfsd.h index 4bf931d5ff56..5791dfd30dd0 100644 --- a/include/linux/nfsd/nfsd.h +++ b/include/linux/nfsd/nfsd.h | |||
@@ -145,15 +145,19 @@ int nfsd_set_posix_acl(struct svc_fh *, int, struct posix_acl *); | |||
145 | * NFSv4 State | 145 | * NFSv4 State |
146 | */ | 146 | */ |
147 | #ifdef CONFIG_NFSD_V4 | 147 | #ifdef CONFIG_NFSD_V4 |
148 | int nfs4_state_init(void); | 148 | void nfs4_state_init(void); |
149 | int nfs4_state_start(void); | ||
149 | void nfs4_state_shutdown(void); | 150 | void nfs4_state_shutdown(void); |
150 | time_t nfs4_lease_time(void); | 151 | time_t nfs4_lease_time(void); |
151 | void nfs4_reset_lease(time_t leasetime); | 152 | void nfs4_reset_lease(time_t leasetime); |
153 | int nfs4_reset_recoverydir(char *recdir); | ||
152 | #else | 154 | #else |
153 | static inline int nfs4_state_init(void){return 0;} | 155 | static inline void nfs4_state_init(void){}; |
156 | static inline int nfs4_state_start(void){return 0;} | ||
154 | static inline void nfs4_state_shutdown(void){} | 157 | static inline void nfs4_state_shutdown(void){} |
155 | static inline time_t nfs4_lease_time(void){return 0;} | 158 | static inline time_t nfs4_lease_time(void){return 0;} |
156 | static inline void nfs4_reset_lease(time_t leasetime){} | 159 | static inline void nfs4_reset_lease(time_t leasetime){} |
160 | static inline int nfs4_reset_recoverydir(char *recdir) {return 0;} | ||
157 | #endif | 161 | #endif |
158 | 162 | ||
159 | /* | 163 | /* |
diff --git a/include/linux/nfsd/state.h b/include/linux/nfsd/state.h index b6b2fe1e7c63..a84a3fa99be1 100644 --- a/include/linux/nfsd/state.h +++ b/include/linux/nfsd/state.h | |||
@@ -61,11 +61,6 @@ typedef struct { | |||
61 | #define si_stateownerid si_opaque.so_stateownerid | 61 | #define si_stateownerid si_opaque.so_stateownerid |
62 | #define si_fileid si_opaque.so_fileid | 62 | #define si_fileid si_opaque.so_fileid |
63 | 63 | ||
64 | extern stateid_t zerostateid; | ||
65 | extern stateid_t onestateid; | ||
66 | |||
67 | #define ZERO_STATEID(stateid) (!memcmp((stateid), &zerostateid, sizeof(stateid_t))) | ||
68 | #define ONE_STATEID(stateid) (!memcmp((stateid), &onestateid, sizeof(stateid_t))) | ||
69 | 64 | ||
70 | struct nfs4_cb_recall { | 65 | struct nfs4_cb_recall { |
71 | u32 cbr_ident; | 66 | u32 cbr_ident; |
@@ -77,8 +72,8 @@ struct nfs4_cb_recall { | |||
77 | }; | 72 | }; |
78 | 73 | ||
79 | struct nfs4_delegation { | 74 | struct nfs4_delegation { |
80 | struct list_head dl_del_perfile; /* nfs4_file->fi_del_perfile */ | 75 | struct list_head dl_perfile; |
81 | struct list_head dl_del_perclnt; /* nfs4_client->cl_del_perclnt*/ | 76 | struct list_head dl_perclnt; |
82 | struct list_head dl_recall_lru; /* delegation recalled */ | 77 | struct list_head dl_recall_lru; /* delegation recalled */ |
83 | atomic_t dl_count; /* ref count */ | 78 | atomic_t dl_count; /* ref count */ |
84 | struct nfs4_client *dl_client; | 79 | struct nfs4_client *dl_client; |
@@ -97,7 +92,6 @@ struct nfs4_delegation { | |||
97 | /* client delegation callback info */ | 92 | /* client delegation callback info */ |
98 | struct nfs4_callback { | 93 | struct nfs4_callback { |
99 | /* SETCLIENTID info */ | 94 | /* SETCLIENTID info */ |
100 | u32 cb_parsed; /* addr parsed */ | ||
101 | u32 cb_addr; | 95 | u32 cb_addr; |
102 | unsigned short cb_port; | 96 | unsigned short cb_port; |
103 | u32 cb_prog; | 97 | u32 cb_prog; |
@@ -109,6 +103,8 @@ struct nfs4_callback { | |||
109 | struct rpc_clnt * cb_client; | 103 | struct rpc_clnt * cb_client; |
110 | }; | 104 | }; |
111 | 105 | ||
106 | #define HEXDIR_LEN 33 /* hex version of 16 byte md5 of cl_name plus '\0' */ | ||
107 | |||
112 | /* | 108 | /* |
113 | * struct nfs4_client - one per client. Clientids live here. | 109 | * struct nfs4_client - one per client. Clientids live here. |
114 | * o Each nfs4_client is hashed by clientid. | 110 | * o Each nfs4_client is hashed by clientid. |
@@ -122,10 +118,11 @@ struct nfs4_callback { | |||
122 | struct nfs4_client { | 118 | struct nfs4_client { |
123 | struct list_head cl_idhash; /* hash by cl_clientid.id */ | 119 | struct list_head cl_idhash; /* hash by cl_clientid.id */ |
124 | struct list_head cl_strhash; /* hash by cl_name */ | 120 | struct list_head cl_strhash; /* hash by cl_name */ |
125 | struct list_head cl_perclient; /* list: stateowners */ | 121 | struct list_head cl_openowners; |
126 | struct list_head cl_del_perclnt; /* list: delegations */ | 122 | struct list_head cl_delegations; |
127 | struct list_head cl_lru; /* tail queue */ | 123 | struct list_head cl_lru; /* tail queue */ |
128 | struct xdr_netobj cl_name; /* id generated by client */ | 124 | struct xdr_netobj cl_name; /* id generated by client */ |
125 | char cl_recdir[HEXDIR_LEN]; /* recovery dir */ | ||
129 | nfs4_verifier cl_verifier; /* generated by client */ | 126 | nfs4_verifier cl_verifier; /* generated by client */ |
130 | time_t cl_time; /* time of last lease renewal */ | 127 | time_t cl_time; /* time of last lease renewal */ |
131 | u32 cl_addr; /* client ipaddress */ | 128 | u32 cl_addr; /* client ipaddress */ |
@@ -134,6 +131,7 @@ struct nfs4_client { | |||
134 | nfs4_verifier cl_confirm; /* generated by server */ | 131 | nfs4_verifier cl_confirm; /* generated by server */ |
135 | struct nfs4_callback cl_callback; /* callback info */ | 132 | struct nfs4_callback cl_callback; /* callback info */ |
136 | atomic_t cl_count; /* ref count */ | 133 | atomic_t cl_count; /* ref count */ |
134 | u32 cl_firststate; /* recovery dir creation */ | ||
137 | }; | 135 | }; |
138 | 136 | ||
139 | /* struct nfs4_client_reset | 137 | /* struct nfs4_client_reset |
@@ -143,7 +141,7 @@ struct nfs4_client { | |||
143 | */ | 141 | */ |
144 | struct nfs4_client_reclaim { | 142 | struct nfs4_client_reclaim { |
145 | struct list_head cr_strhash; /* hash by cr_name */ | 143 | struct list_head cr_strhash; /* hash by cr_name */ |
146 | struct xdr_netobj cr_name; /* id generated by client */ | 144 | char cr_recdir[HEXDIR_LEN]; /* recover dir */ |
147 | }; | 145 | }; |
148 | 146 | ||
149 | static inline void | 147 | static inline void |
@@ -197,9 +195,9 @@ struct nfs4_stateowner { | |||
197 | struct kref so_ref; | 195 | struct kref so_ref; |
198 | struct list_head so_idhash; /* hash by so_id */ | 196 | struct list_head so_idhash; /* hash by so_id */ |
199 | struct list_head so_strhash; /* hash by op_name */ | 197 | struct list_head so_strhash; /* hash by op_name */ |
200 | struct list_head so_perclient; /* nfs4_client->cl_perclient */ | 198 | struct list_head so_perclient; |
201 | struct list_head so_perfilestate; /* list: nfs4_stateid */ | 199 | struct list_head so_stateids; |
202 | struct list_head so_perlockowner; /* nfs4_stateid->st_perlockowner */ | 200 | struct list_head so_perstateid; /* for lockowners only */ |
203 | struct list_head so_close_lru; /* tail queue */ | 201 | struct list_head so_close_lru; /* tail queue */ |
204 | time_t so_time; /* time of placement on so_close_lru */ | 202 | time_t so_time; /* time of placement on so_close_lru */ |
205 | int so_is_open_owner; /* 1=openowner,0=lockowner */ | 203 | int so_is_open_owner; /* 1=openowner,0=lockowner */ |
@@ -217,9 +215,10 @@ struct nfs4_stateowner { | |||
217 | * share_acces, share_deny on the file. | 215 | * share_acces, share_deny on the file. |
218 | */ | 216 | */ |
219 | struct nfs4_file { | 217 | struct nfs4_file { |
218 | struct kref fi_ref; | ||
220 | struct list_head fi_hash; /* hash by "struct inode *" */ | 219 | struct list_head fi_hash; /* hash by "struct inode *" */ |
221 | struct list_head fi_perfile; /* list: nfs4_stateid */ | 220 | struct list_head fi_stateids; |
222 | struct list_head fi_del_perfile; /* list: nfs4_delegation */ | 221 | struct list_head fi_delegations; |
223 | struct inode *fi_inode; | 222 | struct inode *fi_inode; |
224 | u32 fi_id; /* used with stateowner->so_id | 223 | u32 fi_id; /* used with stateowner->so_id |
225 | * for stateid_hashtbl hash */ | 224 | * for stateid_hashtbl hash */ |
@@ -241,8 +240,8 @@ struct nfs4_file { | |||
241 | struct nfs4_stateid { | 240 | struct nfs4_stateid { |
242 | struct list_head st_hash; | 241 | struct list_head st_hash; |
243 | struct list_head st_perfile; | 242 | struct list_head st_perfile; |
244 | struct list_head st_perfilestate; | 243 | struct list_head st_perstateowner; |
245 | struct list_head st_perlockowner; | 244 | struct list_head st_lockowners; |
246 | struct nfs4_stateowner * st_stateowner; | 245 | struct nfs4_stateowner * st_stateowner; |
247 | struct nfs4_file * st_file; | 246 | struct nfs4_file * st_file; |
248 | stateid_t st_stateid; | 247 | stateid_t st_stateid; |
@@ -267,12 +266,9 @@ struct nfs4_stateid { | |||
267 | ((err) != nfserr_stale_stateid) && \ | 266 | ((err) != nfserr_stale_stateid) && \ |
268 | ((err) != nfserr_bad_stateid)) | 267 | ((err) != nfserr_bad_stateid)) |
269 | 268 | ||
270 | extern time_t nfs4_laundromat(void); | ||
271 | extern int nfsd4_renew(clientid_t *clid); | 269 | extern int nfsd4_renew(clientid_t *clid); |
272 | extern int nfs4_preprocess_stateid_op(struct svc_fh *current_fh, | 270 | extern int nfs4_preprocess_stateid_op(struct svc_fh *current_fh, |
273 | stateid_t *stateid, int flags, struct file **filp); | 271 | stateid_t *stateid, int flags, struct file **filp); |
274 | extern int nfs4_share_conflict(struct svc_fh *current_fh, | ||
275 | unsigned int deny_type); | ||
276 | extern void nfs4_lock_state(void); | 272 | extern void nfs4_lock_state(void); |
277 | extern void nfs4_unlock_state(void); | 273 | extern void nfs4_unlock_state(void); |
278 | extern int nfs4_in_grace(void); | 274 | extern int nfs4_in_grace(void); |
@@ -282,6 +278,15 @@ extern void nfs4_free_stateowner(struct kref *kref); | |||
282 | extern void nfsd4_probe_callback(struct nfs4_client *clp); | 278 | extern void nfsd4_probe_callback(struct nfs4_client *clp); |
283 | extern void nfsd4_cb_recall(struct nfs4_delegation *dp); | 279 | extern void nfsd4_cb_recall(struct nfs4_delegation *dp); |
284 | extern void nfs4_put_delegation(struct nfs4_delegation *dp); | 280 | extern void nfs4_put_delegation(struct nfs4_delegation *dp); |
281 | extern int nfs4_make_rec_clidname(char *clidname, struct xdr_netobj *clname); | ||
282 | extern void nfsd4_init_recdir(char *recdir_name); | ||
283 | extern int nfsd4_recdir_load(void); | ||
284 | extern void nfsd4_shutdown_recdir(void); | ||
285 | extern int nfs4_client_to_reclaim(const char *name); | ||
286 | extern int nfs4_has_reclaimed_state(const char *name); | ||
287 | extern void nfsd4_recdir_purge_old(void); | ||
288 | extern int nfsd4_create_clid_dir(struct nfs4_client *clp); | ||
289 | extern void nfsd4_remove_clid_dir(struct nfs4_client *clp); | ||
285 | 290 | ||
286 | static inline void | 291 | static inline void |
287 | nfs4_put_stateowner(struct nfs4_stateowner *so) | 292 | nfs4_put_stateowner(struct nfs4_stateowner *so) |
diff --git a/include/linux/nfsd/xdr4.h b/include/linux/nfsd/xdr4.h index a1f5ad0be1bf..4d24d65c0e88 100644 --- a/include/linux/nfsd/xdr4.h +++ b/include/linux/nfsd/xdr4.h | |||
@@ -210,6 +210,7 @@ struct nfsd4_open { | |||
210 | u32 op_share_access; /* request */ | 210 | u32 op_share_access; /* request */ |
211 | u32 op_share_deny; /* request */ | 211 | u32 op_share_deny; /* request */ |
212 | stateid_t op_stateid; /* response */ | 212 | stateid_t op_stateid; /* response */ |
213 | u32 op_recall; /* recall */ | ||
213 | struct nfsd4_change_info op_cinfo; /* response */ | 214 | struct nfsd4_change_info op_cinfo; /* response */ |
214 | u32 op_rflags; /* response */ | 215 | u32 op_rflags; /* response */ |
215 | int op_truncate; /* used during processing */ | 216 | int op_truncate; /* used during processing */ |
diff --git a/include/linux/nfsd_idmap.h b/include/linux/nfsd_idmap.h index 9bb7f30e923b..e82746fcad14 100644 --- a/include/linux/nfsd_idmap.h +++ b/include/linux/nfsd_idmap.h | |||
@@ -43,8 +43,13 @@ | |||
43 | /* XXX from linux/nfs_idmap.h */ | 43 | /* XXX from linux/nfs_idmap.h */ |
44 | #define IDMAP_NAMESZ 128 | 44 | #define IDMAP_NAMESZ 128 |
45 | 45 | ||
46 | #ifdef CONFIG_NFSD_V4 | ||
46 | void nfsd_idmap_init(void); | 47 | void nfsd_idmap_init(void); |
47 | void nfsd_idmap_shutdown(void); | 48 | void nfsd_idmap_shutdown(void); |
49 | #else | ||
50 | static inline void nfsd_idmap_init(void) {}; | ||
51 | static inline void nfsd_idmap_shutdown(void) {}; | ||
52 | #endif | ||
48 | 53 | ||
49 | int nfsd_map_name_to_uid(struct svc_rqst *, const char *, size_t, __u32 *); | 54 | int nfsd_map_name_to_uid(struct svc_rqst *, const char *, size_t, __u32 *); |
50 | int nfsd_map_name_to_gid(struct svc_rqst *, const char *, size_t, __u32 *); | 55 | int nfsd_map_name_to_gid(struct svc_rqst *, const char *, size_t, __u32 *); |
diff --git a/include/linux/numa.h b/include/linux/numa.h index bd0c8c4e9a95..f0c539bd3cfc 100644 --- a/include/linux/numa.h +++ b/include/linux/numa.h | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | #include <linux/config.h> | 4 | #include <linux/config.h> |
5 | 5 | ||
6 | #ifdef CONFIG_DISCONTIGMEM | 6 | #ifndef CONFIG_FLATMEM |
7 | #include <asm/numnodes.h> | 7 | #include <asm/numnodes.h> |
8 | #endif | 8 | #endif |
9 | 9 | ||
diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h index 63e89e47b8e9..bf608808a60c 100644 --- a/include/linux/pci_ids.h +++ b/include/linux/pci_ids.h | |||
@@ -1568,6 +1568,7 @@ | |||
1568 | #define PCI_DEVICE_ID_SERVERWORKS_OSB4USB 0x0220 | 1568 | #define PCI_DEVICE_ID_SERVERWORKS_OSB4USB 0x0220 |
1569 | #define PCI_DEVICE_ID_SERVERWORKS_CSB5USB PCI_DEVICE_ID_SERVERWORKS_OSB4USB | 1569 | #define PCI_DEVICE_ID_SERVERWORKS_CSB5USB PCI_DEVICE_ID_SERVERWORKS_OSB4USB |
1570 | #define PCI_DEVICE_ID_SERVERWORKS_CSB6USB 0x0221 | 1570 | #define PCI_DEVICE_ID_SERVERWORKS_CSB6USB 0x0221 |
1571 | #define PCI_DEVICE_ID_SERVERWORKS_CSB6LPC 0x0227 | ||
1571 | #define PCI_DEVICE_ID_SERVERWORKS_GCLE 0x0225 | 1572 | #define PCI_DEVICE_ID_SERVERWORKS_GCLE 0x0225 |
1572 | #define PCI_DEVICE_ID_SERVERWORKS_GCLE2 0x0227 | 1573 | #define PCI_DEVICE_ID_SERVERWORKS_GCLE2 0x0227 |
1573 | #define PCI_DEVICE_ID_SERVERWORKS_CSB5ISA 0x0230 | 1574 | #define PCI_DEVICE_ID_SERVERWORKS_CSB5ISA 0x0230 |
diff --git a/include/linux/pkt_cls.h b/include/linux/pkt_cls.h index d2aa214d6803..25d2d67c1faf 100644 --- a/include/linux/pkt_cls.h +++ b/include/linux/pkt_cls.h | |||
@@ -408,6 +408,7 @@ enum | |||
408 | TCF_EM_NBYTE, | 408 | TCF_EM_NBYTE, |
409 | TCF_EM_U32, | 409 | TCF_EM_U32, |
410 | TCF_EM_META, | 410 | TCF_EM_META, |
411 | TCF_EM_TEXT, | ||
411 | __TCF_EM_MAX | 412 | __TCF_EM_MAX |
412 | }; | 413 | }; |
413 | 414 | ||
diff --git a/include/linux/pktcdvd.h b/include/linux/pktcdvd.h index 4e2d2a942ecb..4b32bce9a289 100644 --- a/include/linux/pktcdvd.h +++ b/include/linux/pktcdvd.h | |||
@@ -159,7 +159,7 @@ struct packet_iosched | |||
159 | struct bio *read_queue_tail; | 159 | struct bio *read_queue_tail; |
160 | struct bio *write_queue; | 160 | struct bio *write_queue; |
161 | struct bio *write_queue_tail; | 161 | struct bio *write_queue_tail; |
162 | int high_prio_read; /* An important read request has been queued */ | 162 | sector_t last_write; /* The sector where the last write ended */ |
163 | int successive_reads; | 163 | int successive_reads; |
164 | }; | 164 | }; |
165 | 165 | ||
diff --git a/include/linux/posix_acl_xattr.h b/include/linux/posix_acl_xattr.h index 5efd0a6dad94..6e53c34035cd 100644 --- a/include/linux/posix_acl_xattr.h +++ b/include/linux/posix_acl_xattr.h | |||
@@ -23,13 +23,13 @@ | |||
23 | #define ACL_UNDEFINED_ID (-1) | 23 | #define ACL_UNDEFINED_ID (-1) |
24 | 24 | ||
25 | typedef struct { | 25 | typedef struct { |
26 | __u16 e_tag; | 26 | __le16 e_tag; |
27 | __u16 e_perm; | 27 | __le16 e_perm; |
28 | __u32 e_id; | 28 | __le32 e_id; |
29 | } posix_acl_xattr_entry; | 29 | } posix_acl_xattr_entry; |
30 | 30 | ||
31 | typedef struct { | 31 | typedef struct { |
32 | __u32 a_version; | 32 | __le32 a_version; |
33 | posix_acl_xattr_entry a_entries[0]; | 33 | posix_acl_xattr_entry a_entries[0]; |
34 | } posix_acl_xattr_header; | 34 | } posix_acl_xattr_header; |
35 | 35 | ||
@@ -52,4 +52,7 @@ posix_acl_xattr_count(size_t size) | |||
52 | return size / sizeof(posix_acl_xattr_entry); | 52 | return size / sizeof(posix_acl_xattr_entry); |
53 | } | 53 | } |
54 | 54 | ||
55 | struct posix_acl *posix_acl_from_xattr(const void *value, size_t size); | ||
56 | int posix_acl_to_xattr(const struct posix_acl *acl, void *buffer, size_t size); | ||
57 | |||
55 | #endif /* _POSIX_ACL_XATTR_H */ | 58 | #endif /* _POSIX_ACL_XATTR_H */ |
diff --git a/include/linux/qnx4_fs.h b/include/linux/qnx4_fs.h index 22ba580b0ae8..fc610bb0f733 100644 --- a/include/linux/qnx4_fs.h +++ b/include/linux/qnx4_fs.h | |||
@@ -46,11 +46,11 @@ struct qnx4_inode_entry { | |||
46 | char di_fname[QNX4_SHORT_NAME_MAX]; | 46 | char di_fname[QNX4_SHORT_NAME_MAX]; |
47 | qnx4_off_t di_size; | 47 | qnx4_off_t di_size; |
48 | qnx4_xtnt_t di_first_xtnt; | 48 | qnx4_xtnt_t di_first_xtnt; |
49 | __u32 di_xblk; | 49 | __le32 di_xblk; |
50 | __s32 di_ftime; | 50 | __le32 di_ftime; |
51 | __s32 di_mtime; | 51 | __le32 di_mtime; |
52 | __s32 di_atime; | 52 | __le32 di_atime; |
53 | __s32 di_ctime; | 53 | __le32 di_ctime; |
54 | qnx4_nxtnt_t di_num_xtnts; | 54 | qnx4_nxtnt_t di_num_xtnts; |
55 | qnx4_mode_t di_mode; | 55 | qnx4_mode_t di_mode; |
56 | qnx4_muid_t di_uid; | 56 | qnx4_muid_t di_uid; |
@@ -63,18 +63,18 @@ struct qnx4_inode_entry { | |||
63 | 63 | ||
64 | struct qnx4_link_info { | 64 | struct qnx4_link_info { |
65 | char dl_fname[QNX4_NAME_MAX]; | 65 | char dl_fname[QNX4_NAME_MAX]; |
66 | __u32 dl_inode_blk; | 66 | __le32 dl_inode_blk; |
67 | __u8 dl_inode_ndx; | 67 | __u8 dl_inode_ndx; |
68 | __u8 dl_spare[10]; | 68 | __u8 dl_spare[10]; |
69 | __u8 dl_status; | 69 | __u8 dl_status; |
70 | }; | 70 | }; |
71 | 71 | ||
72 | struct qnx4_xblk { | 72 | struct qnx4_xblk { |
73 | __u32 xblk_next_xblk; | 73 | __le32 xblk_next_xblk; |
74 | __u32 xblk_prev_xblk; | 74 | __le32 xblk_prev_xblk; |
75 | __u8 xblk_num_xtnts; | 75 | __u8 xblk_num_xtnts; |
76 | __u8 xblk_spare[3]; | 76 | __u8 xblk_spare[3]; |
77 | __s32 xblk_num_blocks; | 77 | __le32 xblk_num_blocks; |
78 | qnx4_xtnt_t xblk_xtnts[QNX4_MAX_XTNTS_PER_XBLK]; | 78 | qnx4_xtnt_t xblk_xtnts[QNX4_MAX_XTNTS_PER_XBLK]; |
79 | char xblk_signature[8]; | 79 | char xblk_signature[8]; |
80 | qnx4_xtnt_t xblk_first_xtnt; | 80 | qnx4_xtnt_t xblk_first_xtnt; |
diff --git a/include/linux/qnxtypes.h b/include/linux/qnxtypes.h index fb518e318c7c..a3eb1137857b 100644 --- a/include/linux/qnxtypes.h +++ b/include/linux/qnxtypes.h | |||
@@ -12,18 +12,18 @@ | |||
12 | #ifndef _QNX4TYPES_H | 12 | #ifndef _QNX4TYPES_H |
13 | #define _QNX4TYPES_H | 13 | #define _QNX4TYPES_H |
14 | 14 | ||
15 | typedef __u16 qnx4_nxtnt_t; | 15 | typedef __le16 qnx4_nxtnt_t; |
16 | typedef __u8 qnx4_ftype_t; | 16 | typedef __u8 qnx4_ftype_t; |
17 | 17 | ||
18 | typedef struct { | 18 | typedef struct { |
19 | __u32 xtnt_blk; | 19 | __le32 xtnt_blk; |
20 | __u32 xtnt_size; | 20 | __le32 xtnt_size; |
21 | } qnx4_xtnt_t; | 21 | } qnx4_xtnt_t; |
22 | 22 | ||
23 | typedef __u16 qnx4_mode_t; | 23 | typedef __le16 qnx4_mode_t; |
24 | typedef __u16 qnx4_muid_t; | 24 | typedef __le16 qnx4_muid_t; |
25 | typedef __u16 qnx4_mgid_t; | 25 | typedef __le16 qnx4_mgid_t; |
26 | typedef __u32 qnx4_off_t; | 26 | typedef __le32 qnx4_off_t; |
27 | typedef __u16 qnx4_nlink_t; | 27 | typedef __le16 qnx4_nlink_t; |
28 | 28 | ||
29 | #endif | 29 | #endif |
diff --git a/include/linux/quota.h b/include/linux/quota.h index ac5b90f4f256..700ead45084f 100644 --- a/include/linux/quota.h +++ b/include/linux/quota.h | |||
@@ -138,8 +138,11 @@ struct if_dqinfo { | |||
138 | #include <linux/dqblk_v2.h> | 138 | #include <linux/dqblk_v2.h> |
139 | 139 | ||
140 | /* Maximal numbers of writes for quota operation (insert/delete/update) | 140 | /* Maximal numbers of writes for quota operation (insert/delete/update) |
141 | * (over all formats) - info block, 4 pointer blocks, data block */ | 141 | * (over VFS all formats) */ |
142 | #define DQUOT_MAX_WRITES 6 | 142 | #define DQUOT_INIT_ALLOC max(V1_INIT_ALLOC, V2_INIT_ALLOC) |
143 | #define DQUOT_INIT_REWRITE max(V1_INIT_REWRITE, V2_INIT_REWRITE) | ||
144 | #define DQUOT_DEL_ALLOC max(V1_DEL_ALLOC, V2_DEL_ALLOC) | ||
145 | #define DQUOT_DEL_REWRITE max(V1_DEL_REWRITE, V2_DEL_REWRITE) | ||
143 | 146 | ||
144 | /* | 147 | /* |
145 | * Data for one user/group kept in memory | 148 | * Data for one user/group kept in memory |
diff --git a/include/linux/quotaops.h b/include/linux/quotaops.h index e57baa85e744..d211507ab246 100644 --- a/include/linux/quotaops.h +++ b/include/linux/quotaops.h | |||
@@ -39,7 +39,8 @@ extern int dquot_commit_info(struct super_block *sb, int type); | |||
39 | extern int dquot_mark_dquot_dirty(struct dquot *dquot); | 39 | extern int dquot_mark_dquot_dirty(struct dquot *dquot); |
40 | 40 | ||
41 | extern int vfs_quota_on(struct super_block *sb, int type, int format_id, char *path); | 41 | extern int vfs_quota_on(struct super_block *sb, int type, int format_id, char *path); |
42 | extern int vfs_quota_on_mount(int type, int format_id, struct dentry *dentry); | 42 | extern int vfs_quota_on_mount(struct super_block *sb, char *qf_name, |
43 | int format_id, int type); | ||
43 | extern int vfs_quota_off(struct super_block *sb, int type); | 44 | extern int vfs_quota_off(struct super_block *sb, int type); |
44 | #define vfs_quota_off_mount(sb, type) vfs_quota_off(sb, type) | 45 | #define vfs_quota_off_mount(sb, type) vfs_quota_off(sb, type) |
45 | extern int vfs_quota_sync(struct super_block *sb, int type); | 46 | extern int vfs_quota_sync(struct super_block *sb, int type); |
diff --git a/include/linux/reiserfs_acl.h b/include/linux/reiserfs_acl.h index 2aef9c3f5ce8..0760507a545b 100644 --- a/include/linux/reiserfs_acl.h +++ b/include/linux/reiserfs_acl.h | |||
@@ -1,6 +1,5 @@ | |||
1 | #include <linux/init.h> | 1 | #include <linux/init.h> |
2 | #include <linux/posix_acl.h> | 2 | #include <linux/posix_acl.h> |
3 | #include <linux/xattr_acl.h> | ||
4 | 3 | ||
5 | #define REISERFS_ACL_VERSION 0x0001 | 4 | #define REISERFS_ACL_VERSION 0x0001 |
6 | 5 | ||
diff --git a/include/linux/reiserfs_fs.h b/include/linux/reiserfs_fs.h index 32148625fc2f..4c7c5689ad93 100644 --- a/include/linux/reiserfs_fs.h +++ b/include/linux/reiserfs_fs.h | |||
@@ -1644,11 +1644,18 @@ struct reiserfs_journal_header { | |||
1644 | #define JOURNAL_MAX_TRANS_AGE 30 | 1644 | #define JOURNAL_MAX_TRANS_AGE 30 |
1645 | #define JOURNAL_PER_BALANCE_CNT (3 * (MAX_HEIGHT-2) + 9) | 1645 | #define JOURNAL_PER_BALANCE_CNT (3 * (MAX_HEIGHT-2) + 9) |
1646 | #ifdef CONFIG_QUOTA | 1646 | #ifdef CONFIG_QUOTA |
1647 | #define REISERFS_QUOTA_TRANS_BLOCKS 2 /* We need to update data and inode (atime) */ | 1647 | /* We need to update data and inode (atime) */ |
1648 | #define REISERFS_QUOTA_INIT_BLOCKS (DQUOT_MAX_WRITES*(JOURNAL_PER_BALANCE_CNT+2)+1) /* 1 balancing, 1 bitmap, 1 data per write + stat data update */ | 1648 | #define REISERFS_QUOTA_TRANS_BLOCKS(s) (REISERFS_SB(s)->s_mount_opt & (1<<REISERFS_QUOTA) ? 2 : 0) |
1649 | /* 1 balancing, 1 bitmap, 1 data per write + stat data update */ | ||
1650 | #define REISERFS_QUOTA_INIT_BLOCKS(s) (REISERFS_SB(s)->s_mount_opt & (1<<REISERFS_QUOTA) ? \ | ||
1651 | (DQUOT_INIT_ALLOC*(JOURNAL_PER_BALANCE_CNT+2)+DQUOT_INIT_REWRITE+1) : 0) | ||
1652 | /* same as with INIT */ | ||
1653 | #define REISERFS_QUOTA_DEL_BLOCKS(s) (REISERFS_SB(s)->s_mount_opt & (1<<REISERFS_QUOTA) ? \ | ||
1654 | (DQUOT_DEL_ALLOC*(JOURNAL_PER_BALANCE_CNT+2)+DQUOT_DEL_REWRITE+1) : 0) | ||
1649 | #else | 1655 | #else |
1650 | #define REISERFS_QUOTA_TRANS_BLOCKS 0 | 1656 | #define REISERFS_QUOTA_TRANS_BLOCKS(s) 0 |
1651 | #define REISERFS_QUOTA_INIT_BLOCKS 0 | 1657 | #define REISERFS_QUOTA_INIT_BLOCKS(s) 0 |
1658 | #define REISERFS_QUOTA_DEL_BLOCKS(s) 0 | ||
1652 | #endif | 1659 | #endif |
1653 | 1660 | ||
1654 | /* both of these can be as low as 1, or as high as you want. The min is the | 1661 | /* both of these can be as low as 1, or as high as you want. The min is the |
diff --git a/include/linux/reiserfs_fs_sb.h b/include/linux/reiserfs_fs_sb.h index 37a3a7afbec7..31c709d0fe18 100644 --- a/include/linux/reiserfs_fs_sb.h +++ b/include/linux/reiserfs_fs_sb.h | |||
@@ -467,6 +467,8 @@ enum reiserfs_mount_options { | |||
467 | REISERFS_ERROR_RO, | 467 | REISERFS_ERROR_RO, |
468 | REISERFS_ERROR_CONTINUE, | 468 | REISERFS_ERROR_CONTINUE, |
469 | 469 | ||
470 | REISERFS_QUOTA, /* Some quota option specified */ | ||
471 | |||
470 | REISERFS_TEST1, | 472 | REISERFS_TEST1, |
471 | REISERFS_TEST2, | 473 | REISERFS_TEST2, |
472 | REISERFS_TEST3, | 474 | REISERFS_TEST3, |
diff --git a/include/linux/rmap.h b/include/linux/rmap.h index 11b484e37ac9..e80fb7ee6efd 100644 --- a/include/linux/rmap.h +++ b/include/linux/rmap.h | |||
@@ -93,6 +93,12 @@ int page_referenced(struct page *, int is_locked, int ignore_token); | |||
93 | int try_to_unmap(struct page *); | 93 | int try_to_unmap(struct page *); |
94 | 94 | ||
95 | /* | 95 | /* |
96 | * Called from mm/filemap_xip.c to unmap empty zero page | ||
97 | */ | ||
98 | pte_t *page_check_address(struct page *, struct mm_struct *, unsigned long); | ||
99 | |||
100 | |||
101 | /* | ||
96 | * Used by swapoff to help locate where page is expected in vma. | 102 | * Used by swapoff to help locate where page is expected in vma. |
97 | */ | 103 | */ |
98 | unsigned long page_address_in_vma(struct page *, struct vm_area_struct *); | 104 | unsigned long page_address_in_vma(struct page *, struct vm_area_struct *); |
diff --git a/include/linux/rtnetlink.h b/include/linux/rtnetlink.h index e68dbf0bf579..d021888b58f1 100644 --- a/include/linux/rtnetlink.h +++ b/include/linux/rtnetlink.h | |||
@@ -892,10 +892,13 @@ extern void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const voi | |||
892 | goto rtattr_failure; \ | 892 | goto rtattr_failure; \ |
893 | __rta_fill(skb, attrtype, attrlen, data); }) | 893 | __rta_fill(skb, attrtype, attrlen, data); }) |
894 | 894 | ||
895 | #define RTA_PUT_NOHDR(skb, attrlen, data) \ | 895 | #define RTA_APPEND(skb, attrlen, data) \ |
896 | ({ if (unlikely(skb_tailroom(skb) < (int)(attrlen))) \ | 896 | ({ if (unlikely(skb_tailroom(skb) < (int)(attrlen))) \ |
897 | goto rtattr_failure; \ | 897 | goto rtattr_failure; \ |
898 | memcpy(skb_put(skb, RTA_ALIGN(attrlen)), data, attrlen); }) | 898 | memcpy(skb_put(skb, attrlen), data, attrlen); }) |
899 | |||
900 | #define RTA_PUT_NOHDR(skb, attrlen, data) \ | ||
901 | RTA_APPEND(skb, RTA_ALIGN(attrlen), data) | ||
899 | 902 | ||
900 | #define RTA_PUT_U8(skb, attrtype, value) \ | 903 | #define RTA_PUT_U8(skb, attrtype, value) \ |
901 | ({ u8 _tmp = (value); \ | 904 | ({ u8 _tmp = (value); \ |
diff --git a/include/linux/sched.h b/include/linux/sched.h index b58afd97a180..2c69682b0444 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h | |||
@@ -246,7 +246,7 @@ struct mm_struct { | |||
246 | 246 | ||
247 | unsigned long saved_auxv[42]; /* for /proc/PID/auxv */ | 247 | unsigned long saved_auxv[42]; /* for /proc/PID/auxv */ |
248 | 248 | ||
249 | unsigned dumpable:1; | 249 | unsigned dumpable:2; |
250 | cpumask_t cpu_vm_mask; | 250 | cpumask_t cpu_vm_mask; |
251 | 251 | ||
252 | /* Architecture-specific MM context */ | 252 | /* Architecture-specific MM context */ |
@@ -561,9 +561,10 @@ struct group_info { | |||
561 | groups_free(group_info); \ | 561 | groups_free(group_info); \ |
562 | } while (0) | 562 | } while (0) |
563 | 563 | ||
564 | struct group_info *groups_alloc(int gidsetsize); | 564 | extern struct group_info *groups_alloc(int gidsetsize); |
565 | void groups_free(struct group_info *group_info); | 565 | extern void groups_free(struct group_info *group_info); |
566 | int set_current_groups(struct group_info *group_info); | 566 | extern int set_current_groups(struct group_info *group_info); |
567 | extern int groups_search(struct group_info *group_info, gid_t grp); | ||
567 | /* access the groups "array" with this macro */ | 568 | /* access the groups "array" with this macro */ |
568 | #define GROUP_AT(gi, i) \ | 569 | #define GROUP_AT(gi, i) \ |
569 | ((gi)->blocks[(i)/NGROUPS_PER_BLOCK][(i)%NGROUPS_PER_BLOCK]) | 570 | ((gi)->blocks[(i)/NGROUPS_PER_BLOCK][(i)%NGROUPS_PER_BLOCK]) |
@@ -660,6 +661,7 @@ struct task_struct { | |||
660 | struct user_struct *user; | 661 | struct user_struct *user; |
661 | #ifdef CONFIG_KEYS | 662 | #ifdef CONFIG_KEYS |
662 | struct key *thread_keyring; /* keyring private to this thread */ | 663 | struct key *thread_keyring; /* keyring private to this thread */ |
664 | unsigned char jit_keyring; /* default keyring to attach requested keys to */ | ||
663 | #endif | 665 | #endif |
664 | int oomkilladj; /* OOM kill score adjustment (bit shift). */ | 666 | int oomkilladj; /* OOM kill score adjustment (bit shift). */ |
665 | char comm[TASK_COMM_LEN]; /* executable name excluding path | 667 | char comm[TASK_COMM_LEN]; /* executable name excluding path |
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index d7c839a21842..416a2e4024b2 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h | |||
@@ -27,6 +27,7 @@ | |||
27 | #include <linux/highmem.h> | 27 | #include <linux/highmem.h> |
28 | #include <linux/poll.h> | 28 | #include <linux/poll.h> |
29 | #include <linux/net.h> | 29 | #include <linux/net.h> |
30 | #include <linux/textsearch.h> | ||
30 | #include <net/checksum.h> | 31 | #include <net/checksum.h> |
31 | 32 | ||
32 | #define HAVE_ALLOC_SKB /* For the drivers to know */ | 33 | #define HAVE_ALLOC_SKB /* For the drivers to know */ |
@@ -321,6 +322,28 @@ extern void skb_over_panic(struct sk_buff *skb, int len, | |||
321 | extern void skb_under_panic(struct sk_buff *skb, int len, | 322 | extern void skb_under_panic(struct sk_buff *skb, int len, |
322 | void *here); | 323 | void *here); |
323 | 324 | ||
325 | struct skb_seq_state | ||
326 | { | ||
327 | __u32 lower_offset; | ||
328 | __u32 upper_offset; | ||
329 | __u32 frag_idx; | ||
330 | __u32 stepped_offset; | ||
331 | struct sk_buff *root_skb; | ||
332 | struct sk_buff *cur_skb; | ||
333 | __u8 *frag_data; | ||
334 | }; | ||
335 | |||
336 | extern void skb_prepare_seq_read(struct sk_buff *skb, | ||
337 | unsigned int from, unsigned int to, | ||
338 | struct skb_seq_state *st); | ||
339 | extern unsigned int skb_seq_read(unsigned int consumed, const u8 **data, | ||
340 | struct skb_seq_state *st); | ||
341 | extern void skb_abort_seq_read(struct skb_seq_state *st); | ||
342 | |||
343 | extern unsigned int skb_find_text(struct sk_buff *skb, unsigned int from, | ||
344 | unsigned int to, struct ts_config *config, | ||
345 | struct ts_state *state); | ||
346 | |||
324 | /* Internal */ | 347 | /* Internal */ |
325 | #define skb_shinfo(SKB) ((struct skb_shared_info *)((SKB)->end)) | 348 | #define skb_shinfo(SKB) ((struct skb_shared_info *)((SKB)->end)) |
326 | 349 | ||
diff --git a/include/linux/string.h b/include/linux/string.h index b9fc59469956..93994c613095 100644 --- a/include/linux/string.h +++ b/include/linux/string.h | |||
@@ -88,6 +88,8 @@ extern int memcmp(const void *,const void *,__kernel_size_t); | |||
88 | extern void * memchr(const void *,int,__kernel_size_t); | 88 | extern void * memchr(const void *,int,__kernel_size_t); |
89 | #endif | 89 | #endif |
90 | 90 | ||
91 | extern char *kstrdup(const char *s, int gfp); | ||
92 | |||
91 | #ifdef __cplusplus | 93 | #ifdef __cplusplus |
92 | } | 94 | } |
93 | #endif | 95 | #endif |
diff --git a/include/linux/sysctl.h b/include/linux/sysctl.h index a17745c80a91..ebfe1250f0a4 100644 --- a/include/linux/sysctl.h +++ b/include/linux/sysctl.h | |||
@@ -136,6 +136,7 @@ enum | |||
136 | KERN_UNKNOWN_NMI_PANIC=66, /* int: unknown nmi panic flag */ | 136 | KERN_UNKNOWN_NMI_PANIC=66, /* int: unknown nmi panic flag */ |
137 | KERN_BOOTLOADER_TYPE=67, /* int: boot loader type */ | 137 | KERN_BOOTLOADER_TYPE=67, /* int: boot loader type */ |
138 | KERN_RANDOMIZE=68, /* int: randomize virtual address space */ | 138 | KERN_RANDOMIZE=68, /* int: randomize virtual address space */ |
139 | KERN_SETUID_DUMPABLE=69, /* int: behaviour of dumps for setuid core */ | ||
139 | }; | 140 | }; |
140 | 141 | ||
141 | 142 | ||
@@ -242,6 +243,7 @@ enum | |||
242 | NET_CORE_MOD_CONG=16, | 243 | NET_CORE_MOD_CONG=16, |
243 | NET_CORE_DEV_WEIGHT=17, | 244 | NET_CORE_DEV_WEIGHT=17, |
244 | NET_CORE_SOMAXCONN=18, | 245 | NET_CORE_SOMAXCONN=18, |
246 | NET_CORE_BUDGET=19, | ||
245 | }; | 247 | }; |
246 | 248 | ||
247 | /* /proc/sys/net/ethernet */ | 249 | /* /proc/sys/net/ethernet */ |
@@ -332,21 +334,14 @@ enum | |||
332 | NET_TCP_FRTO=92, | 334 | NET_TCP_FRTO=92, |
333 | NET_TCP_LOW_LATENCY=93, | 335 | NET_TCP_LOW_LATENCY=93, |
334 | NET_IPV4_IPFRAG_SECRET_INTERVAL=94, | 336 | NET_IPV4_IPFRAG_SECRET_INTERVAL=94, |
335 | NET_TCP_WESTWOOD=95, | ||
336 | NET_IPV4_IGMP_MAX_MSF=96, | 337 | NET_IPV4_IGMP_MAX_MSF=96, |
337 | NET_TCP_NO_METRICS_SAVE=97, | 338 | NET_TCP_NO_METRICS_SAVE=97, |
338 | NET_TCP_VEGAS=98, | ||
339 | NET_TCP_VEGAS_ALPHA=99, | ||
340 | NET_TCP_VEGAS_BETA=100, | ||
341 | NET_TCP_VEGAS_GAMMA=101, | ||
342 | NET_TCP_BIC=102, | ||
343 | NET_TCP_BIC_FAST_CONVERGENCE=103, | ||
344 | NET_TCP_BIC_LOW_WINDOW=104, | ||
345 | NET_TCP_DEFAULT_WIN_SCALE=105, | 339 | NET_TCP_DEFAULT_WIN_SCALE=105, |
346 | NET_TCP_MODERATE_RCVBUF=106, | 340 | NET_TCP_MODERATE_RCVBUF=106, |
347 | NET_TCP_TSO_WIN_DIVISOR=107, | 341 | NET_TCP_TSO_WIN_DIVISOR=107, |
348 | NET_TCP_BIC_BETA=108, | 342 | NET_TCP_BIC_BETA=108, |
349 | NET_IPV4_ICMP_ERRORS_USE_INBOUND_IFADDR=109, | 343 | NET_IPV4_ICMP_ERRORS_USE_INBOUND_IFADDR=109, |
344 | NET_TCP_CONG_CONTROL=110, | ||
350 | }; | 345 | }; |
351 | 346 | ||
352 | enum { | 347 | enum { |
diff --git a/include/linux/tc_ematch/tc_em_text.h b/include/linux/tc_ematch/tc_em_text.h new file mode 100644 index 000000000000..7cd43e99c7f5 --- /dev/null +++ b/include/linux/tc_ematch/tc_em_text.h | |||
@@ -0,0 +1,19 @@ | |||
1 | #ifndef __LINUX_TC_EM_TEXT_H | ||
2 | #define __LINUX_TC_EM_TEXT_H | ||
3 | |||
4 | #include <linux/pkt_cls.h> | ||
5 | |||
6 | #define TC_EM_TEXT_ALGOSIZ 16 | ||
7 | |||
8 | struct tcf_em_text | ||
9 | { | ||
10 | char algo[TC_EM_TEXT_ALGOSIZ]; | ||
11 | __u16 from_offset; | ||
12 | __u16 to_offset; | ||
13 | __u16 pattern_len; | ||
14 | __u8 from_layer:4; | ||
15 | __u8 to_layer:4; | ||
16 | __u8 pad; | ||
17 | }; | ||
18 | |||
19 | #endif | ||
diff --git a/include/linux/tcp.h b/include/linux/tcp.h index 97a7c9e03df5..dfd93d03f5d2 100644 --- a/include/linux/tcp.h +++ b/include/linux/tcp.h | |||
@@ -127,6 +127,7 @@ enum { | |||
127 | #define TCP_WINDOW_CLAMP 10 /* Bound advertised window */ | 127 | #define TCP_WINDOW_CLAMP 10 /* Bound advertised window */ |
128 | #define TCP_INFO 11 /* Information about this connection. */ | 128 | #define TCP_INFO 11 /* Information about this connection. */ |
129 | #define TCP_QUICKACK 12 /* Block/reenable quick acks */ | 129 | #define TCP_QUICKACK 12 /* Block/reenable quick acks */ |
130 | #define TCP_CONGESTION 13 /* Congestion control algorithm */ | ||
130 | 131 | ||
131 | #define TCPI_OPT_TIMESTAMPS 1 | 132 | #define TCPI_OPT_TIMESTAMPS 1 |
132 | #define TCPI_OPT_SACK 2 | 133 | #define TCPI_OPT_SACK 2 |
@@ -203,13 +204,6 @@ struct tcp_sack_block { | |||
203 | __u32 end_seq; | 204 | __u32 end_seq; |
204 | }; | 205 | }; |
205 | 206 | ||
206 | enum tcp_congestion_algo { | ||
207 | TCP_RENO=0, | ||
208 | TCP_VEGAS, | ||
209 | TCP_WESTWOOD, | ||
210 | TCP_BIC, | ||
211 | }; | ||
212 | |||
213 | struct tcp_options_received { | 207 | struct tcp_options_received { |
214 | /* PAWS/RTTM data */ | 208 | /* PAWS/RTTM data */ |
215 | long ts_recent_stamp;/* Time we stored ts_recent (for aging) */ | 209 | long ts_recent_stamp;/* Time we stored ts_recent (for aging) */ |
@@ -305,7 +299,7 @@ struct tcp_sock { | |||
305 | __u8 reordering; /* Packet reordering metric. */ | 299 | __u8 reordering; /* Packet reordering metric. */ |
306 | __u8 frto_counter; /* Number of new acks after RTO */ | 300 | __u8 frto_counter; /* Number of new acks after RTO */ |
307 | 301 | ||
308 | __u8 adv_cong; /* Using Vegas, Westwood, or BIC */ | 302 | __u8 unused; |
309 | __u8 defer_accept; /* User waits for some data after accept() */ | 303 | __u8 defer_accept; /* User waits for some data after accept() */ |
310 | 304 | ||
311 | /* RTT measurement */ | 305 | /* RTT measurement */ |
@@ -401,37 +395,10 @@ struct tcp_sock { | |||
401 | __u32 time; | 395 | __u32 time; |
402 | } rcvq_space; | 396 | } rcvq_space; |
403 | 397 | ||
404 | /* TCP Westwood structure */ | 398 | /* Pluggable TCP congestion control hook */ |
405 | struct { | 399 | struct tcp_congestion_ops *ca_ops; |
406 | __u32 bw_ns_est; /* first bandwidth estimation..not too smoothed 8) */ | 400 | u32 ca_priv[16]; |
407 | __u32 bw_est; /* bandwidth estimate */ | 401 | #define TCP_CA_PRIV_SIZE (16*sizeof(u32)) |
408 | __u32 rtt_win_sx; /* here starts a new evaluation... */ | ||
409 | __u32 bk; | ||
410 | __u32 snd_una; /* used for evaluating the number of acked bytes */ | ||
411 | __u32 cumul_ack; | ||
412 | __u32 accounted; | ||
413 | __u32 rtt; | ||
414 | __u32 rtt_min; /* minimum observed RTT */ | ||
415 | } westwood; | ||
416 | |||
417 | /* Vegas variables */ | ||
418 | struct { | ||
419 | __u32 beg_snd_nxt; /* right edge during last RTT */ | ||
420 | __u32 beg_snd_una; /* left edge during last RTT */ | ||
421 | __u32 beg_snd_cwnd; /* saves the size of the cwnd */ | ||
422 | __u8 doing_vegas_now;/* if true, do vegas for this RTT */ | ||
423 | __u16 cntRTT; /* # of RTTs measured within last RTT */ | ||
424 | __u32 minRTT; /* min of RTTs measured within last RTT (in usec) */ | ||
425 | __u32 baseRTT; /* the min of all Vegas RTT measurements seen (in usec) */ | ||
426 | } vegas; | ||
427 | |||
428 | /* BI TCP Parameters */ | ||
429 | struct { | ||
430 | __u32 cnt; /* increase cwnd by 1 after this number of ACKs */ | ||
431 | __u32 last_max_cwnd; /* last maximium snd_cwnd */ | ||
432 | __u32 last_cwnd; /* the last snd_cwnd */ | ||
433 | __u32 last_stamp; /* time when updated last_cwnd */ | ||
434 | } bictcp; | ||
435 | }; | 402 | }; |
436 | 403 | ||
437 | static inline struct tcp_sock *tcp_sk(const struct sock *sk) | 404 | static inline struct tcp_sock *tcp_sk(const struct sock *sk) |
@@ -439,6 +406,11 @@ static inline struct tcp_sock *tcp_sk(const struct sock *sk) | |||
439 | return (struct tcp_sock *)sk; | 406 | return (struct tcp_sock *)sk; |
440 | } | 407 | } |
441 | 408 | ||
409 | static inline void *tcp_ca(const struct tcp_sock *tp) | ||
410 | { | ||
411 | return (void *) tp->ca_priv; | ||
412 | } | ||
413 | |||
442 | #endif | 414 | #endif |
443 | 415 | ||
444 | #endif /* _LINUX_TCP_H */ | 416 | #endif /* _LINUX_TCP_H */ |
diff --git a/include/linux/tcp_diag.h b/include/linux/tcp_diag.h index ceee962e1d15..7a5996743946 100644 --- a/include/linux/tcp_diag.h +++ b/include/linux/tcp_diag.h | |||
@@ -99,9 +99,10 @@ enum | |||
99 | TCPDIAG_MEMINFO, | 99 | TCPDIAG_MEMINFO, |
100 | TCPDIAG_INFO, | 100 | TCPDIAG_INFO, |
101 | TCPDIAG_VEGASINFO, | 101 | TCPDIAG_VEGASINFO, |
102 | TCPDIAG_CONG, | ||
102 | }; | 103 | }; |
103 | 104 | ||
104 | #define TCPDIAG_MAX TCPDIAG_VEGASINFO | 105 | #define TCPDIAG_MAX TCPDIAG_CONG |
105 | 106 | ||
106 | 107 | ||
107 | /* TCPDIAG_MEM */ | 108 | /* TCPDIAG_MEM */ |
@@ -123,5 +124,4 @@ struct tcpvegas_info { | |||
123 | __u32 tcpv_minrtt; | 124 | __u32 tcpv_minrtt; |
124 | }; | 125 | }; |
125 | 126 | ||
126 | |||
127 | #endif /* _TCP_DIAG_H_ */ | 127 | #endif /* _TCP_DIAG_H_ */ |
diff --git a/include/linux/textsearch.h b/include/linux/textsearch.h new file mode 100644 index 000000000000..941f45ac117a --- /dev/null +++ b/include/linux/textsearch.h | |||
@@ -0,0 +1,180 @@ | |||
1 | #ifndef __LINUX_TEXTSEARCH_H | ||
2 | #define __LINUX_TEXTSEARCH_H | ||
3 | |||
4 | #ifdef __KERNEL__ | ||
5 | |||
6 | #include <linux/types.h> | ||
7 | #include <linux/list.h> | ||
8 | #include <linux/kernel.h> | ||
9 | #include <linux/module.h> | ||
10 | #include <linux/err.h> | ||
11 | |||
12 | struct ts_config; | ||
13 | |||
14 | /** | ||
15 | * TS_AUTOLOAD - Automatically load textsearch modules when needed | ||
16 | */ | ||
17 | #define TS_AUTOLOAD 1 | ||
18 | |||
19 | /** | ||
20 | * struct ts_state - search state | ||
21 | * @offset: offset for next match | ||
22 | * @cb: control buffer, for persistant variables of get_next_block() | ||
23 | */ | ||
24 | struct ts_state | ||
25 | { | ||
26 | unsigned int offset; | ||
27 | char cb[40]; | ||
28 | }; | ||
29 | |||
30 | /** | ||
31 | * struct ts_ops - search module operations | ||
32 | * @name: name of search algorithm | ||
33 | * @init: initialization function to prepare a search | ||
34 | * @find: find the next occurrence of the pattern | ||
35 | * @destroy: destroy algorithm specific parts of a search configuration | ||
36 | * @get_pattern: return head of pattern | ||
37 | * @get_pattern_len: return length of pattern | ||
38 | * @owner: module reference to algorithm | ||
39 | */ | ||
40 | struct ts_ops | ||
41 | { | ||
42 | const char *name; | ||
43 | struct ts_config * (*init)(const void *, unsigned int, int); | ||
44 | unsigned int (*find)(struct ts_config *, | ||
45 | struct ts_state *); | ||
46 | void (*destroy)(struct ts_config *); | ||
47 | void * (*get_pattern)(struct ts_config *); | ||
48 | unsigned int (*get_pattern_len)(struct ts_config *); | ||
49 | struct module *owner; | ||
50 | struct list_head list; | ||
51 | }; | ||
52 | |||
53 | /** | ||
54 | * struct ts_config - search configuration | ||
55 | * @ops: operations of chosen algorithm | ||
56 | * @get_next_block: callback to fetch the next block to search in | ||
57 | * @finish: callback to finalize a search | ||
58 | */ | ||
59 | struct ts_config | ||
60 | { | ||
61 | struct ts_ops *ops; | ||
62 | |||
63 | /** | ||
64 | * get_next_block - fetch next block of data | ||
65 | * @consumed: number of bytes consumed by the caller | ||
66 | * @dst: destination buffer | ||
67 | * @conf: search configuration | ||
68 | * @state: search state | ||
69 | * | ||
70 | * Called repeatedly until 0 is returned. Must assign the | ||
71 | * head of the next block of data to &*dst and return the length | ||
72 | * of the block or 0 if at the end. consumed == 0 indicates | ||
73 | * a new search. May store/read persistant values in state->cb. | ||
74 | */ | ||
75 | unsigned int (*get_next_block)(unsigned int consumed, | ||
76 | const u8 **dst, | ||
77 | struct ts_config *conf, | ||
78 | struct ts_state *state); | ||
79 | |||
80 | /** | ||
81 | * finish - finalize/clean a series of get_next_block() calls | ||
82 | * @conf: search configuration | ||
83 | * @state: search state | ||
84 | * | ||
85 | * Called after the last use of get_next_block(), may be used | ||
86 | * to cleanup any leftovers. | ||
87 | */ | ||
88 | void (*finish)(struct ts_config *conf, | ||
89 | struct ts_state *state); | ||
90 | }; | ||
91 | |||
92 | /** | ||
93 | * textsearch_next - continue searching for a pattern | ||
94 | * @conf: search configuration | ||
95 | * @state: search state | ||
96 | * | ||
97 | * Continues a search looking for more occurrences of the pattern. | ||
98 | * textsearch_find() must be called to find the first occurrence | ||
99 | * in order to reset the state. | ||
100 | * | ||
101 | * Returns the position of the next occurrence of the pattern or | ||
102 | * UINT_MAX if not match was found. | ||
103 | */ | ||
104 | static inline unsigned int textsearch_next(struct ts_config *conf, | ||
105 | struct ts_state *state) | ||
106 | { | ||
107 | unsigned int ret = conf->ops->find(conf, state); | ||
108 | |||
109 | if (conf->finish) | ||
110 | conf->finish(conf, state); | ||
111 | |||
112 | return ret; | ||
113 | } | ||
114 | |||
115 | /** | ||
116 | * textsearch_find - start searching for a pattern | ||
117 | * @conf: search configuration | ||
118 | * @state: search state | ||
119 | * | ||
120 | * Returns the position of first occurrence of the pattern or | ||
121 | * UINT_MAX if no match was found. | ||
122 | */ | ||
123 | static inline unsigned int textsearch_find(struct ts_config *conf, | ||
124 | struct ts_state *state) | ||
125 | { | ||
126 | state->offset = 0; | ||
127 | return textsearch_next(conf, state); | ||
128 | } | ||
129 | |||
130 | /** | ||
131 | * textsearch_get_pattern - return head of the pattern | ||
132 | * @conf: search configuration | ||
133 | */ | ||
134 | static inline void *textsearch_get_pattern(struct ts_config *conf) | ||
135 | { | ||
136 | return conf->ops->get_pattern(conf); | ||
137 | } | ||
138 | |||
139 | /** | ||
140 | * textsearch_get_pattern_len - return length of the pattern | ||
141 | * @conf: search configuration | ||
142 | */ | ||
143 | static inline unsigned int textsearch_get_pattern_len(struct ts_config *conf) | ||
144 | { | ||
145 | return conf->ops->get_pattern_len(conf); | ||
146 | } | ||
147 | |||
148 | extern int textsearch_register(struct ts_ops *); | ||
149 | extern int textsearch_unregister(struct ts_ops *); | ||
150 | extern struct ts_config *textsearch_prepare(const char *, const void *, | ||
151 | unsigned int, int, int); | ||
152 | extern void textsearch_destroy(struct ts_config *conf); | ||
153 | extern unsigned int textsearch_find_continuous(struct ts_config *, | ||
154 | struct ts_state *, | ||
155 | const void *, unsigned int); | ||
156 | |||
157 | |||
158 | #define TS_PRIV_ALIGNTO 8 | ||
159 | #define TS_PRIV_ALIGN(len) (((len) + TS_PRIV_ALIGNTO-1) & ~(TS_PRIV_ALIGNTO-1)) | ||
160 | |||
161 | static inline struct ts_config *alloc_ts_config(size_t payload, int gfp_mask) | ||
162 | { | ||
163 | struct ts_config *conf; | ||
164 | |||
165 | conf = kmalloc(TS_PRIV_ALIGN(sizeof(*conf)) + payload, gfp_mask); | ||
166 | if (conf == NULL) | ||
167 | return ERR_PTR(-ENOMEM); | ||
168 | |||
169 | memset(conf, 0, TS_PRIV_ALIGN(sizeof(*conf)) + payload); | ||
170 | return conf; | ||
171 | } | ||
172 | |||
173 | static inline void *ts_config_priv(struct ts_config *conf) | ||
174 | { | ||
175 | return ((u8 *) conf + TS_PRIV_ALIGN(sizeof(struct ts_config))); | ||
176 | } | ||
177 | |||
178 | #endif /* __KERNEL__ */ | ||
179 | |||
180 | #endif | ||
diff --git a/include/linux/textsearch_fsm.h b/include/linux/textsearch_fsm.h new file mode 100644 index 000000000000..fdfa078c66e5 --- /dev/null +++ b/include/linux/textsearch_fsm.h | |||
@@ -0,0 +1,48 @@ | |||
1 | #ifndef __LINUX_TEXTSEARCH_FSM_H | ||
2 | #define __LINUX_TEXTSEARCH_FSM_H | ||
3 | |||
4 | #include <linux/types.h> | ||
5 | |||
6 | enum { | ||
7 | TS_FSM_SPECIFIC, /* specific character */ | ||
8 | TS_FSM_WILDCARD, /* any character */ | ||
9 | TS_FSM_DIGIT, /* isdigit() */ | ||
10 | TS_FSM_XDIGIT, /* isxdigit() */ | ||
11 | TS_FSM_PRINT, /* isprint() */ | ||
12 | TS_FSM_ALPHA, /* isalpha() */ | ||
13 | TS_FSM_ALNUM, /* isalnum() */ | ||
14 | TS_FSM_ASCII, /* isascii() */ | ||
15 | TS_FSM_CNTRL, /* iscntrl() */ | ||
16 | TS_FSM_GRAPH, /* isgraph() */ | ||
17 | TS_FSM_LOWER, /* islower() */ | ||
18 | TS_FSM_UPPER, /* isupper() */ | ||
19 | TS_FSM_PUNCT, /* ispunct() */ | ||
20 | TS_FSM_SPACE, /* isspace() */ | ||
21 | __TS_FSM_TYPE_MAX, | ||
22 | }; | ||
23 | #define TS_FSM_TYPE_MAX (__TS_FSM_TYPE_MAX - 1) | ||
24 | |||
25 | enum { | ||
26 | TS_FSM_SINGLE, /* 1 occurrence */ | ||
27 | TS_FSM_PERHAPS, /* 1 or 0 occurrence */ | ||
28 | TS_FSM_ANY, /* 0..n occurrences */ | ||
29 | TS_FSM_MULTI, /* 1..n occurrences */ | ||
30 | TS_FSM_HEAD_IGNORE, /* 0..n ignored occurrences at head */ | ||
31 | __TS_FSM_RECUR_MAX, | ||
32 | }; | ||
33 | #define TS_FSM_RECUR_MAX (__TS_FSM_RECUR_MAX - 1) | ||
34 | |||
35 | /** | ||
36 | * struct ts_fsm_token - state machine token (state) | ||
37 | * @type: type of token | ||
38 | * @recur: number of recurrences | ||
39 | * @value: character value for TS_FSM_SPECIFIC | ||
40 | */ | ||
41 | struct ts_fsm_token | ||
42 | { | ||
43 | __u16 type; | ||
44 | __u8 recur; | ||
45 | __u8 value; | ||
46 | }; | ||
47 | |||
48 | #endif | ||
diff --git a/include/linux/timer.h b/include/linux/timer.h index 90db1cc62ddd..221f81ac2002 100644 --- a/include/linux/timer.h +++ b/include/linux/timer.h | |||
@@ -6,45 +6,33 @@ | |||
6 | #include <linux/spinlock.h> | 6 | #include <linux/spinlock.h> |
7 | #include <linux/stddef.h> | 7 | #include <linux/stddef.h> |
8 | 8 | ||
9 | struct tvec_t_base_s; | 9 | struct timer_base_s; |
10 | 10 | ||
11 | struct timer_list { | 11 | struct timer_list { |
12 | struct list_head entry; | 12 | struct list_head entry; |
13 | unsigned long expires; | 13 | unsigned long expires; |
14 | 14 | ||
15 | spinlock_t lock; | ||
16 | unsigned long magic; | 15 | unsigned long magic; |
17 | 16 | ||
18 | void (*function)(unsigned long); | 17 | void (*function)(unsigned long); |
19 | unsigned long data; | 18 | unsigned long data; |
20 | 19 | ||
21 | struct tvec_t_base_s *base; | 20 | struct timer_base_s *base; |
22 | }; | 21 | }; |
23 | 22 | ||
24 | #define TIMER_MAGIC 0x4b87ad6e | 23 | #define TIMER_MAGIC 0x4b87ad6e |
25 | 24 | ||
25 | extern struct timer_base_s __init_timer_base; | ||
26 | |||
26 | #define TIMER_INITIALIZER(_function, _expires, _data) { \ | 27 | #define TIMER_INITIALIZER(_function, _expires, _data) { \ |
27 | .function = (_function), \ | 28 | .function = (_function), \ |
28 | .expires = (_expires), \ | 29 | .expires = (_expires), \ |
29 | .data = (_data), \ | 30 | .data = (_data), \ |
30 | .base = NULL, \ | 31 | .base = &__init_timer_base, \ |
31 | .magic = TIMER_MAGIC, \ | 32 | .magic = TIMER_MAGIC, \ |
32 | .lock = SPIN_LOCK_UNLOCKED, \ | ||
33 | } | 33 | } |
34 | 34 | ||
35 | /*** | 35 | void fastcall init_timer(struct timer_list * timer); |
36 | * init_timer - initialize a timer. | ||
37 | * @timer: the timer to be initialized | ||
38 | * | ||
39 | * init_timer() must be done to a timer prior calling *any* of the | ||
40 | * other timer functions. | ||
41 | */ | ||
42 | static inline void init_timer(struct timer_list * timer) | ||
43 | { | ||
44 | timer->base = NULL; | ||
45 | timer->magic = TIMER_MAGIC; | ||
46 | spin_lock_init(&timer->lock); | ||
47 | } | ||
48 | 36 | ||
49 | /*** | 37 | /*** |
50 | * timer_pending - is a timer pending? | 38 | * timer_pending - is a timer pending? |
@@ -58,7 +46,7 @@ static inline void init_timer(struct timer_list * timer) | |||
58 | */ | 46 | */ |
59 | static inline int timer_pending(const struct timer_list * timer) | 47 | static inline int timer_pending(const struct timer_list * timer) |
60 | { | 48 | { |
61 | return timer->base != NULL; | 49 | return timer->entry.next != NULL; |
62 | } | 50 | } |
63 | 51 | ||
64 | extern void add_timer_on(struct timer_list *timer, int cpu); | 52 | extern void add_timer_on(struct timer_list *timer, int cpu); |
@@ -88,13 +76,15 @@ static inline void add_timer(struct timer_list * timer) | |||
88 | } | 76 | } |
89 | 77 | ||
90 | #ifdef CONFIG_SMP | 78 | #ifdef CONFIG_SMP |
79 | extern int try_to_del_timer_sync(struct timer_list *timer); | ||
91 | extern int del_timer_sync(struct timer_list *timer); | 80 | extern int del_timer_sync(struct timer_list *timer); |
92 | extern int del_singleshot_timer_sync(struct timer_list *timer); | ||
93 | #else | 81 | #else |
94 | # define del_timer_sync(t) del_timer(t) | 82 | # define try_to_del_timer_sync(t) del_timer(t) |
95 | # define del_singleshot_timer_sync(t) del_timer(t) | 83 | # define del_timer_sync(t) del_timer(t) |
96 | #endif | 84 | #endif |
97 | 85 | ||
86 | #define del_singleshot_timer_sync(t) del_timer_sync(t) | ||
87 | |||
98 | extern void init_timers(void); | 88 | extern void init_timers(void); |
99 | extern void run_local_timers(void); | 89 | extern void run_local_timers(void); |
100 | extern void it_real_fn(unsigned long); | 90 | extern void it_real_fn(unsigned long); |
diff --git a/include/linux/tty.h b/include/linux/tty.h index 1b76106272d3..59ff42c629ec 100644 --- a/include/linux/tty.h +++ b/include/linux/tty.h | |||
@@ -345,6 +345,7 @@ extern int tty_check_change(struct tty_struct * tty); | |||
345 | extern void stop_tty(struct tty_struct * tty); | 345 | extern void stop_tty(struct tty_struct * tty); |
346 | extern void start_tty(struct tty_struct * tty); | 346 | extern void start_tty(struct tty_struct * tty); |
347 | extern int tty_register_ldisc(int disc, struct tty_ldisc *new_ldisc); | 347 | extern int tty_register_ldisc(int disc, struct tty_ldisc *new_ldisc); |
348 | extern int tty_unregister_ldisc(int disc); | ||
348 | extern int tty_register_driver(struct tty_driver *driver); | 349 | extern int tty_register_driver(struct tty_driver *driver); |
349 | extern int tty_unregister_driver(struct tty_driver *driver); | 350 | extern int tty_unregister_driver(struct tty_driver *driver); |
350 | extern void tty_register_device(struct tty_driver *driver, unsigned index, struct device *dev); | 351 | extern void tty_register_device(struct tty_driver *driver, unsigned index, struct device *dev); |
diff --git a/include/linux/usb.h b/include/linux/usb.h index 3d508bf08402..eb282b581546 100644 --- a/include/linux/usb.h +++ b/include/linux/usb.h | |||
@@ -290,7 +290,7 @@ struct usb_bus { | |||
290 | struct class_device *class_dev; /* class device for this bus */ | 290 | struct class_device *class_dev; /* class device for this bus */ |
291 | struct kref kref; /* handles reference counting this bus */ | 291 | struct kref kref; /* handles reference counting this bus */ |
292 | void (*release)(struct usb_bus *bus); /* function to destroy this bus's memory */ | 292 | void (*release)(struct usb_bus *bus); /* function to destroy this bus's memory */ |
293 | #if defined(CONFIG_USB_MON) || defined(CONFIG_USB_MON_MODULE) | 293 | #if defined(CONFIG_USB_MON) |
294 | struct mon_bus *mon_bus; /* non-null when associated */ | 294 | struct mon_bus *mon_bus; /* non-null when associated */ |
295 | int monitored; /* non-zero when monitored */ | 295 | int monitored; /* non-zero when monitored */ |
296 | #endif | 296 | #endif |
diff --git a/include/linux/wait.h b/include/linux/wait.h index c9486c3efb4a..d38c9fecdc36 100644 --- a/include/linux/wait.h +++ b/include/linux/wait.h | |||
@@ -33,7 +33,7 @@ int default_wake_function(wait_queue_t *wait, unsigned mode, int sync, void *key | |||
33 | struct __wait_queue { | 33 | struct __wait_queue { |
34 | unsigned int flags; | 34 | unsigned int flags; |
35 | #define WQ_FLAG_EXCLUSIVE 0x01 | 35 | #define WQ_FLAG_EXCLUSIVE 0x01 |
36 | struct task_struct * task; | 36 | void *private; |
37 | wait_queue_func_t func; | 37 | wait_queue_func_t func; |
38 | struct list_head task_list; | 38 | struct list_head task_list; |
39 | }; | 39 | }; |
@@ -60,7 +60,7 @@ typedef struct __wait_queue_head wait_queue_head_t; | |||
60 | */ | 60 | */ |
61 | 61 | ||
62 | #define __WAITQUEUE_INITIALIZER(name, tsk) { \ | 62 | #define __WAITQUEUE_INITIALIZER(name, tsk) { \ |
63 | .task = tsk, \ | 63 | .private = tsk, \ |
64 | .func = default_wake_function, \ | 64 | .func = default_wake_function, \ |
65 | .task_list = { NULL, NULL } } | 65 | .task_list = { NULL, NULL } } |
66 | 66 | ||
@@ -86,7 +86,7 @@ static inline void init_waitqueue_head(wait_queue_head_t *q) | |||
86 | static inline void init_waitqueue_entry(wait_queue_t *q, struct task_struct *p) | 86 | static inline void init_waitqueue_entry(wait_queue_t *q, struct task_struct *p) |
87 | { | 87 | { |
88 | q->flags = 0; | 88 | q->flags = 0; |
89 | q->task = p; | 89 | q->private = p; |
90 | q->func = default_wake_function; | 90 | q->func = default_wake_function; |
91 | } | 91 | } |
92 | 92 | ||
@@ -94,7 +94,7 @@ static inline void init_waitqueue_func_entry(wait_queue_t *q, | |||
94 | wait_queue_func_t func) | 94 | wait_queue_func_t func) |
95 | { | 95 | { |
96 | q->flags = 0; | 96 | q->flags = 0; |
97 | q->task = NULL; | 97 | q->private = NULL; |
98 | q->func = func; | 98 | q->func = func; |
99 | } | 99 | } |
100 | 100 | ||
@@ -110,7 +110,7 @@ static inline int waitqueue_active(wait_queue_head_t *q) | |||
110 | * aio specifies a wait queue entry with an async notification | 110 | * aio specifies a wait queue entry with an async notification |
111 | * callback routine, not associated with any task. | 111 | * callback routine, not associated with any task. |
112 | */ | 112 | */ |
113 | #define is_sync_wait(wait) (!(wait) || ((wait)->task)) | 113 | #define is_sync_wait(wait) (!(wait) || ((wait)->private)) |
114 | 114 | ||
115 | extern void FASTCALL(add_wait_queue(wait_queue_head_t *q, wait_queue_t * wait)); | 115 | extern void FASTCALL(add_wait_queue(wait_queue_head_t *q, wait_queue_t * wait)); |
116 | extern void FASTCALL(add_wait_queue_exclusive(wait_queue_head_t *q, wait_queue_t * wait)); | 116 | extern void FASTCALL(add_wait_queue_exclusive(wait_queue_head_t *q, wait_queue_t * wait)); |
@@ -384,7 +384,7 @@ int wake_bit_function(wait_queue_t *wait, unsigned mode, int sync, void *key); | |||
384 | 384 | ||
385 | #define DEFINE_WAIT(name) \ | 385 | #define DEFINE_WAIT(name) \ |
386 | wait_queue_t name = { \ | 386 | wait_queue_t name = { \ |
387 | .task = current, \ | 387 | .private = current, \ |
388 | .func = autoremove_wake_function, \ | 388 | .func = autoremove_wake_function, \ |
389 | .task_list = LIST_HEAD_INIT((name).task_list), \ | 389 | .task_list = LIST_HEAD_INIT((name).task_list), \ |
390 | } | 390 | } |
@@ -393,7 +393,7 @@ int wake_bit_function(wait_queue_t *wait, unsigned mode, int sync, void *key); | |||
393 | struct wait_bit_queue name = { \ | 393 | struct wait_bit_queue name = { \ |
394 | .key = __WAIT_BIT_KEY_INITIALIZER(word, bit), \ | 394 | .key = __WAIT_BIT_KEY_INITIALIZER(word, bit), \ |
395 | .wait = { \ | 395 | .wait = { \ |
396 | .task = current, \ | 396 | .private = current, \ |
397 | .func = wake_bit_function, \ | 397 | .func = wake_bit_function, \ |
398 | .task_list = \ | 398 | .task_list = \ |
399 | LIST_HEAD_INIT((name).wait.task_list), \ | 399 | LIST_HEAD_INIT((name).wait.task_list), \ |
@@ -402,7 +402,7 @@ int wake_bit_function(wait_queue_t *wait, unsigned mode, int sync, void *key); | |||
402 | 402 | ||
403 | #define init_wait(wait) \ | 403 | #define init_wait(wait) \ |
404 | do { \ | 404 | do { \ |
405 | (wait)->task = current; \ | 405 | (wait)->private = current; \ |
406 | (wait)->func = autoremove_wake_function; \ | 406 | (wait)->func = autoremove_wake_function; \ |
407 | INIT_LIST_HEAD(&(wait)->task_list); \ | 407 | INIT_LIST_HEAD(&(wait)->task_list); \ |
408 | } while (0) | 408 | } while (0) |