diff options
Diffstat (limited to 'drivers/misc/ibmasm')
-rw-r--r-- | drivers/misc/ibmasm/ibmasmfs.c | 16 | ||||
-rw-r--r-- | drivers/misc/ibmasm/remote.h | 2 |
2 files changed, 11 insertions, 7 deletions
diff --git a/drivers/misc/ibmasm/ibmasmfs.c b/drivers/misc/ibmasm/ibmasmfs.c index 8844a3f45381..89947723a27d 100644 --- a/drivers/misc/ibmasm/ibmasmfs.c +++ b/drivers/misc/ibmasm/ibmasmfs.c | |||
@@ -29,7 +29,7 @@ | |||
29 | 29 | ||
30 | /* | 30 | /* |
31 | * The IBMASM file virtual filesystem. It creates the following hierarchy | 31 | * The IBMASM file virtual filesystem. It creates the following hierarchy |
32 | * dymamically when mounted from user space: | 32 | * dynamically when mounted from user space: |
33 | * | 33 | * |
34 | * /ibmasm | 34 | * /ibmasm |
35 | * |-- 0 | 35 | * |-- 0 |
@@ -91,11 +91,10 @@ static void ibmasmfs_create_files (struct super_block *sb, struct dentry *root); | |||
91 | static int ibmasmfs_fill_super (struct super_block *sb, void *data, int silent); | 91 | static int ibmasmfs_fill_super (struct super_block *sb, void *data, int silent); |
92 | 92 | ||
93 | 93 | ||
94 | static int ibmasmfs_get_super(struct file_system_type *fst, | 94 | static struct dentry *ibmasmfs_mount(struct file_system_type *fst, |
95 | int flags, const char *name, void *data, | 95 | int flags, const char *name, void *data) |
96 | struct vfsmount *mnt) | ||
97 | { | 96 | { |
98 | return get_sb_single(fst, flags, data, ibmasmfs_fill_super, mnt); | 97 | return mount_single(fst, flags, data, ibmasmfs_fill_super); |
99 | } | 98 | } |
100 | 99 | ||
101 | static const struct super_operations ibmasmfs_s_ops = { | 100 | static const struct super_operations ibmasmfs_s_ops = { |
@@ -108,7 +107,7 @@ static const struct file_operations *ibmasmfs_dir_ops = &simple_dir_operations; | |||
108 | static struct file_system_type ibmasmfs_type = { | 107 | static struct file_system_type ibmasmfs_type = { |
109 | .owner = THIS_MODULE, | 108 | .owner = THIS_MODULE, |
110 | .name = "ibmasmfs", | 109 | .name = "ibmasmfs", |
111 | .get_sb = ibmasmfs_get_super, | 110 | .mount = ibmasmfs_mount, |
112 | .kill_sb = kill_litter_super, | 111 | .kill_sb = kill_litter_super, |
113 | }; | 112 | }; |
114 | 113 | ||
@@ -146,6 +145,7 @@ static struct inode *ibmasmfs_make_inode(struct super_block *sb, int mode) | |||
146 | struct inode *ret = new_inode(sb); | 145 | struct inode *ret = new_inode(sb); |
147 | 146 | ||
148 | if (ret) { | 147 | if (ret) { |
148 | ret->i_ino = get_next_ino(); | ||
149 | ret->i_mode = mode; | 149 | ret->i_mode = mode; |
150 | ret->i_atime = ret->i_mtime = ret->i_ctime = CURRENT_TIME; | 150 | ret->i_atime = ret->i_mtime = ret->i_ctime = CURRENT_TIME; |
151 | } | 151 | } |
@@ -584,6 +584,7 @@ static const struct file_operations command_fops = { | |||
584 | .release = command_file_close, | 584 | .release = command_file_close, |
585 | .read = command_file_read, | 585 | .read = command_file_read, |
586 | .write = command_file_write, | 586 | .write = command_file_write, |
587 | .llseek = generic_file_llseek, | ||
587 | }; | 588 | }; |
588 | 589 | ||
589 | static const struct file_operations event_fops = { | 590 | static const struct file_operations event_fops = { |
@@ -591,6 +592,7 @@ static const struct file_operations event_fops = { | |||
591 | .release = event_file_close, | 592 | .release = event_file_close, |
592 | .read = event_file_read, | 593 | .read = event_file_read, |
593 | .write = event_file_write, | 594 | .write = event_file_write, |
595 | .llseek = generic_file_llseek, | ||
594 | }; | 596 | }; |
595 | 597 | ||
596 | static const struct file_operations r_heartbeat_fops = { | 598 | static const struct file_operations r_heartbeat_fops = { |
@@ -598,6 +600,7 @@ static const struct file_operations r_heartbeat_fops = { | |||
598 | .release = r_heartbeat_file_close, | 600 | .release = r_heartbeat_file_close, |
599 | .read = r_heartbeat_file_read, | 601 | .read = r_heartbeat_file_read, |
600 | .write = r_heartbeat_file_write, | 602 | .write = r_heartbeat_file_write, |
603 | .llseek = generic_file_llseek, | ||
601 | }; | 604 | }; |
602 | 605 | ||
603 | static const struct file_operations remote_settings_fops = { | 606 | static const struct file_operations remote_settings_fops = { |
@@ -605,6 +608,7 @@ static const struct file_operations remote_settings_fops = { | |||
605 | .release = remote_settings_file_close, | 608 | .release = remote_settings_file_close, |
606 | .read = remote_settings_file_read, | 609 | .read = remote_settings_file_read, |
607 | .write = remote_settings_file_write, | 610 | .write = remote_settings_file_write, |
611 | .llseek = generic_file_llseek, | ||
608 | }; | 612 | }; |
609 | 613 | ||
610 | 614 | ||
diff --git a/drivers/misc/ibmasm/remote.h b/drivers/misc/ibmasm/remote.h index 72acf5af7a2a..00dbf1d4373a 100644 --- a/drivers/misc/ibmasm/remote.h +++ b/drivers/misc/ibmasm/remote.h | |||
@@ -20,7 +20,7 @@ | |||
20 | * | 20 | * |
21 | * Author: Max Asböck <amax@us.ibm.com> | 21 | * Author: Max Asböck <amax@us.ibm.com> |
22 | * | 22 | * |
23 | * Orignally written by Pete Reynolds | 23 | * Originally written by Pete Reynolds |
24 | */ | 24 | */ |
25 | 25 | ||
26 | #ifndef _IBMASM_REMOTE_H_ | 26 | #ifndef _IBMASM_REMOTE_H_ |