diff options
Diffstat (limited to 'fs')
52 files changed, 1436 insertions, 2512 deletions
diff --git a/fs/compat.c b/fs/compat.c index d0145ca27572..0949b43794a4 100644 --- a/fs/compat.c +++ b/fs/compat.c | |||
| @@ -1402,6 +1402,7 @@ int compat_do_execve(char * filename, | |||
| 1402 | retval = mutex_lock_interruptible(¤t->cred_exec_mutex); | 1402 | retval = mutex_lock_interruptible(¤t->cred_exec_mutex); |
| 1403 | if (retval < 0) | 1403 | if (retval < 0) |
| 1404 | goto out_free; | 1404 | goto out_free; |
| 1405 | current->in_execve = 1; | ||
| 1405 | 1406 | ||
| 1406 | retval = -ENOMEM; | 1407 | retval = -ENOMEM; |
| 1407 | bprm->cred = prepare_exec_creds(); | 1408 | bprm->cred = prepare_exec_creds(); |
| @@ -1454,6 +1455,7 @@ int compat_do_execve(char * filename, | |||
| 1454 | goto out; | 1455 | goto out; |
| 1455 | 1456 | ||
| 1456 | /* execve succeeded */ | 1457 | /* execve succeeded */ |
| 1458 | current->in_execve = 0; | ||
| 1457 | mutex_unlock(¤t->cred_exec_mutex); | 1459 | mutex_unlock(¤t->cred_exec_mutex); |
| 1458 | acct_update_integrals(current); | 1460 | acct_update_integrals(current); |
| 1459 | free_bprm(bprm); | 1461 | free_bprm(bprm); |
| @@ -1470,6 +1472,7 @@ out_file: | |||
| 1470 | } | 1472 | } |
| 1471 | 1473 | ||
| 1472 | out_unlock: | 1474 | out_unlock: |
| 1475 | current->in_execve = 0; | ||
| 1473 | mutex_unlock(¤t->cred_exec_mutex); | 1476 | mutex_unlock(¤t->cred_exec_mutex); |
| 1474 | 1477 | ||
| 1475 | out_free: | 1478 | out_free: |
| @@ -45,6 +45,7 @@ | |||
| 45 | #include <linux/proc_fs.h> | 45 | #include <linux/proc_fs.h> |
| 46 | #include <linux/mount.h> | 46 | #include <linux/mount.h> |
| 47 | #include <linux/security.h> | 47 | #include <linux/security.h> |
| 48 | #include <linux/ima.h> | ||
| 48 | #include <linux/syscalls.h> | 49 | #include <linux/syscalls.h> |
| 49 | #include <linux/tsacct_kern.h> | 50 | #include <linux/tsacct_kern.h> |
| 50 | #include <linux/cn_proc.h> | 51 | #include <linux/cn_proc.h> |
| @@ -127,6 +128,9 @@ SYSCALL_DEFINE1(uselib, const char __user *, library) | |||
| 127 | MAY_READ | MAY_EXEC | MAY_OPEN); | 128 | MAY_READ | MAY_EXEC | MAY_OPEN); |
| 128 | if (error) | 129 | if (error) |
| 129 | goto exit; | 130 | goto exit; |
| 131 | error = ima_path_check(&nd.path, MAY_READ | MAY_EXEC | MAY_OPEN); | ||
| 132 | if (error) | ||
| 133 | goto exit; | ||
| 130 | 134 | ||
| 131 | file = nameidata_to_filp(&nd, O_RDONLY|O_LARGEFILE); | 135 | file = nameidata_to_filp(&nd, O_RDONLY|O_LARGEFILE); |
| 132 | error = PTR_ERR(file); | 136 | error = PTR_ERR(file); |
| @@ -674,6 +678,9 @@ struct file *open_exec(const char *name) | |||
| 674 | err = inode_permission(nd.path.dentry->d_inode, MAY_EXEC | MAY_OPEN); | 678 | err = inode_permission(nd.path.dentry->d_inode, MAY_EXEC | MAY_OPEN); |
| 675 | if (err) | 679 | if (err) |
| 676 | goto out_path_put; | 680 | goto out_path_put; |
| 681 | err = ima_path_check(&nd.path, MAY_EXEC | MAY_OPEN); | ||
| 682 | if (err) | ||
| 683 | goto out_path_put; | ||
| 677 | 684 | ||
| 678 | file = nameidata_to_filp(&nd, O_RDONLY|O_LARGEFILE); | 685 | file = nameidata_to_filp(&nd, O_RDONLY|O_LARGEFILE); |
| 679 | if (IS_ERR(file)) | 686 | if (IS_ERR(file)) |
| @@ -1184,6 +1191,9 @@ int search_binary_handler(struct linux_binprm *bprm,struct pt_regs *regs) | |||
| 1184 | retval = security_bprm_check(bprm); | 1191 | retval = security_bprm_check(bprm); |
| 1185 | if (retval) | 1192 | if (retval) |
| 1186 | return retval; | 1193 | return retval; |
| 1194 | retval = ima_bprm_check(bprm); | ||
| 1195 | if (retval) | ||
| 1196 | return retval; | ||
| 1187 | 1197 | ||
| 1188 | /* kernel module loader fixup */ | 1198 | /* kernel module loader fixup */ |
| 1189 | /* so we don't try to load run modprobe in kernel space. */ | 1199 | /* so we don't try to load run modprobe in kernel space. */ |
| @@ -1284,6 +1294,7 @@ int do_execve(char * filename, | |||
| 1284 | retval = mutex_lock_interruptible(¤t->cred_exec_mutex); | 1294 | retval = mutex_lock_interruptible(¤t->cred_exec_mutex); |
| 1285 | if (retval < 0) | 1295 | if (retval < 0) |
| 1286 | goto out_free; | 1296 | goto out_free; |
| 1297 | current->in_execve = 1; | ||
| 1287 | 1298 | ||
| 1288 | retval = -ENOMEM; | 1299 | retval = -ENOMEM; |
| 1289 | bprm->cred = prepare_exec_creds(); | 1300 | bprm->cred = prepare_exec_creds(); |
| @@ -1337,6 +1348,7 @@ int do_execve(char * filename, | |||
| 1337 | goto out; | 1348 | goto out; |
| 1338 | 1349 | ||
| 1339 | /* execve succeeded */ | 1350 | /* execve succeeded */ |
| 1351 | current->in_execve = 0; | ||
| 1340 | mutex_unlock(¤t->cred_exec_mutex); | 1352 | mutex_unlock(¤t->cred_exec_mutex); |
| 1341 | acct_update_integrals(current); | 1353 | acct_update_integrals(current); |
| 1342 | free_bprm(bprm); | 1354 | free_bprm(bprm); |
| @@ -1355,6 +1367,7 @@ out_file: | |||
| 1355 | } | 1367 | } |
| 1356 | 1368 | ||
| 1357 | out_unlock: | 1369 | out_unlock: |
| 1370 | current->in_execve = 0; | ||
| 1358 | mutex_unlock(¤t->cred_exec_mutex); | 1371 | mutex_unlock(¤t->cred_exec_mutex); |
| 1359 | 1372 | ||
| 1360 | out_free: | 1373 | out_free: |
diff --git a/fs/file_table.c b/fs/file_table.c index bbeeac6efa1a..da806aceae3f 100644 --- a/fs/file_table.c +++ b/fs/file_table.c | |||
| @@ -13,6 +13,7 @@ | |||
| 13 | #include <linux/module.h> | 13 | #include <linux/module.h> |
| 14 | #include <linux/fs.h> | 14 | #include <linux/fs.h> |
| 15 | #include <linux/security.h> | 15 | #include <linux/security.h> |
| 16 | #include <linux/ima.h> | ||
| 16 | #include <linux/eventpoll.h> | 17 | #include <linux/eventpoll.h> |
| 17 | #include <linux/rcupdate.h> | 18 | #include <linux/rcupdate.h> |
| 18 | #include <linux/mount.h> | 19 | #include <linux/mount.h> |
| @@ -279,6 +280,7 @@ void __fput(struct file *file) | |||
| 279 | if (file->f_op && file->f_op->release) | 280 | if (file->f_op && file->f_op->release) |
| 280 | file->f_op->release(inode, file); | 281 | file->f_op->release(inode, file); |
| 281 | security_file_free(file); | 282 | security_file_free(file); |
| 283 | ima_file_free(file); | ||
| 282 | if (unlikely(S_ISCHR(inode->i_mode) && inode->i_cdev != NULL)) | 284 | if (unlikely(S_ISCHR(inode->i_mode) && inode->i_cdev != NULL)) |
| 283 | cdev_put(inode->i_cdev); | 285 | cdev_put(inode->i_cdev); |
| 284 | fops_put(file->f_op); | 286 | fops_put(file->f_op); |
diff --git a/fs/gfs2/Kconfig b/fs/gfs2/Kconfig index e563a6449811..3a981b7f64ca 100644 --- a/fs/gfs2/Kconfig +++ b/fs/gfs2/Kconfig | |||
| @@ -1,6 +1,10 @@ | |||
| 1 | config GFS2_FS | 1 | config GFS2_FS |
| 2 | tristate "GFS2 file system support" | 2 | tristate "GFS2 file system support" |
| 3 | depends on EXPERIMENTAL && (64BIT || LBD) | 3 | depends on EXPERIMENTAL && (64BIT || LBD) |
| 4 | select DLM if GFS2_FS_LOCKING_DLM | ||
| 5 | select CONFIGFS_FS if GFS2_FS_LOCKING_DLM | ||
| 6 | select SYSFS if GFS2_FS_LOCKING_DLM | ||
| 7 | select IP_SCTP if DLM_SCTP | ||
| 4 | select FS_POSIX_ACL | 8 | select FS_POSIX_ACL |
| 5 | select CRC32 | 9 | select CRC32 |
| 6 | help | 10 | help |
| @@ -18,17 +22,16 @@ config GFS2_FS | |||
| 18 | the locking module below. Documentation and utilities for GFS2 can | 22 | the locking module below. Documentation and utilities for GFS2 can |
| 19 | be found here: http://sources.redhat.com/cluster | 23 | be found here: http://sources.redhat.com/cluster |
| 20 | 24 | ||
| 21 | The "nolock" lock module is now built in to GFS2 by default. | 25 | The "nolock" lock module is now built in to GFS2 by default. If |
| 26 | you want to use the DLM, be sure to enable HOTPLUG and IPv4/6 | ||
| 27 | networking. | ||
| 22 | 28 | ||
| 23 | config GFS2_FS_LOCKING_DLM | 29 | config GFS2_FS_LOCKING_DLM |
| 24 | tristate "GFS2 DLM locking module" | 30 | bool "GFS2 DLM locking" |
| 25 | depends on GFS2_FS && SYSFS && NET && INET && (IPV6 || IPV6=n) | 31 | depends on (GFS2_FS!=n) && NET && INET && (IPV6 || IPV6=n) && HOTPLUG |
| 26 | select IP_SCTP if DLM_SCTP | ||
| 27 | select CONFIGFS_FS | ||
| 28 | select DLM | ||
| 29 | help | 32 | help |
| 30 | Multiple node locking module for GFS2 | 33 | Multiple node locking module for GFS2 |
| 31 | 34 | ||
| 32 | Most users of GFS2 will require this module. It provides the locking | 35 | Most users of GFS2 will require this. It provides the locking |
| 33 | interface between GFS2 and the DLM, which is required to use GFS2 | 36 | interface between GFS2 and the DLM, which is required to use GFS2 |
| 34 | in a cluster environment. | 37 | in a cluster environment. |
diff --git a/fs/gfs2/Makefile b/fs/gfs2/Makefile index c1b4ec6a9650..a851ea4bdf70 100644 --- a/fs/gfs2/Makefile +++ b/fs/gfs2/Makefile | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | obj-$(CONFIG_GFS2_FS) += gfs2.o | 1 | obj-$(CONFIG_GFS2_FS) += gfs2.o |
| 2 | gfs2-y := acl.o bmap.o dir.o eaops.o eattr.o glock.o \ | 2 | gfs2-y := acl.o bmap.o dir.o eaops.o eattr.o glock.o \ |
| 3 | glops.o inode.o log.o lops.o locking.o main.o meta_io.o \ | 3 | glops.o inode.o log.o lops.o main.o meta_io.o \ |
| 4 | mount.o ops_address.o ops_dentry.o ops_export.o ops_file.o \ | 4 | mount.o ops_address.o ops_dentry.o ops_export.o ops_file.o \ |
| 5 | ops_fstype.o ops_inode.o ops_super.o quota.o \ | 5 | ops_fstype.o ops_inode.o ops_super.o quota.o \ |
| 6 | recovery.o rgrp.o super.o sys.o trans.o util.o | 6 | recovery.o rgrp.o super.o sys.o trans.o util.o |
| 7 | 7 | ||
| 8 | obj-$(CONFIG_GFS2_FS_LOCKING_DLM) += locking/dlm/ | 8 | gfs2-$(CONFIG_GFS2_FS_LOCKING_DLM) += lock_dlm.o |
| 9 | 9 | ||
diff --git a/fs/gfs2/acl.c b/fs/gfs2/acl.c index e335dceb6a4f..43764f4fa763 100644 --- a/fs/gfs2/acl.c +++ b/fs/gfs2/acl.c | |||
| @@ -15,7 +15,6 @@ | |||
| 15 | #include <linux/posix_acl.h> | 15 | #include <linux/posix_acl.h> |
| 16 | #include <linux/posix_acl_xattr.h> | 16 | #include <linux/posix_acl_xattr.h> |
| 17 | #include <linux/gfs2_ondisk.h> | 17 | #include <linux/gfs2_ondisk.h> |
| 18 | #include <linux/lm_interface.h> | ||
| 19 | 18 | ||
| 20 | #include "gfs2.h" | 19 | #include "gfs2.h" |
| 21 | #include "incore.h" | 20 | #include "incore.h" |
diff --git a/fs/gfs2/bmap.c b/fs/gfs2/bmap.c index 11ffc56f1f81..3a5d3f883e10 100644 --- a/fs/gfs2/bmap.c +++ b/fs/gfs2/bmap.c | |||
| @@ -13,7 +13,6 @@ | |||
| 13 | #include <linux/buffer_head.h> | 13 | #include <linux/buffer_head.h> |
| 14 | #include <linux/gfs2_ondisk.h> | 14 | #include <linux/gfs2_ondisk.h> |
| 15 | #include <linux/crc32.h> | 15 | #include <linux/crc32.h> |
| 16 | #include <linux/lm_interface.h> | ||
| 17 | 16 | ||
| 18 | #include "gfs2.h" | 17 | #include "gfs2.h" |
| 19 | #include "incore.h" | 18 | #include "incore.h" |
diff --git a/fs/gfs2/dir.c b/fs/gfs2/dir.c index b7c8e5c70791..aef4d0c06748 100644 --- a/fs/gfs2/dir.c +++ b/fs/gfs2/dir.c | |||
| @@ -60,7 +60,6 @@ | |||
| 60 | #include <linux/gfs2_ondisk.h> | 60 | #include <linux/gfs2_ondisk.h> |
| 61 | #include <linux/crc32.h> | 61 | #include <linux/crc32.h> |
| 62 | #include <linux/vmalloc.h> | 62 | #include <linux/vmalloc.h> |
| 63 | #include <linux/lm_interface.h> | ||
| 64 | 63 | ||
| 65 | #include "gfs2.h" | 64 | #include "gfs2.h" |
| 66 | #include "incore.h" | 65 | #include "incore.h" |
diff --git a/fs/gfs2/eaops.c b/fs/gfs2/eaops.c index f114ba2b3557..dee9b03e5b37 100644 --- a/fs/gfs2/eaops.c +++ b/fs/gfs2/eaops.c | |||
| @@ -14,7 +14,6 @@ | |||
| 14 | #include <linux/capability.h> | 14 | #include <linux/capability.h> |
| 15 | #include <linux/xattr.h> | 15 | #include <linux/xattr.h> |
| 16 | #include <linux/gfs2_ondisk.h> | 16 | #include <linux/gfs2_ondisk.h> |
| 17 | #include <linux/lm_interface.h> | ||
| 18 | #include <asm/uaccess.h> | 17 | #include <asm/uaccess.h> |
| 19 | 18 | ||
| 20 | #include "gfs2.h" | 19 | #include "gfs2.h" |
diff --git a/fs/gfs2/eattr.c b/fs/gfs2/eattr.c index 0d1c76d906ae..899763aed217 100644 --- a/fs/gfs2/eattr.c +++ b/fs/gfs2/eattr.c | |||
| @@ -13,7 +13,6 @@ | |||
| 13 | #include <linux/buffer_head.h> | 13 | #include <linux/buffer_head.h> |
| 14 | #include <linux/xattr.h> | 14 | #include <linux/xattr.h> |
| 15 | #include <linux/gfs2_ondisk.h> | 15 | #include <linux/gfs2_ondisk.h> |
| 16 | #include <linux/lm_interface.h> | ||
| 17 | #include <asm/uaccess.h> | 16 | #include <asm/uaccess.h> |
| 18 | 17 | ||
| 19 | #include "gfs2.h" | 18 | #include "gfs2.h" |
diff --git a/fs/gfs2/glock.c b/fs/gfs2/glock.c index 6b983aef785d..3984e47d1d33 100644 --- a/fs/gfs2/glock.c +++ b/fs/gfs2/glock.c | |||
| @@ -10,7 +10,6 @@ | |||
| 10 | #include <linux/sched.h> | 10 | #include <linux/sched.h> |
| 11 | #include <linux/slab.h> | 11 | #include <linux/slab.h> |
| 12 | #include <linux/spinlock.h> | 12 | #include <linux/spinlock.h> |
| 13 | #include <linux/completion.h> | ||
| 14 | #include <linux/buffer_head.h> | 13 | #include <linux/buffer_head.h> |
| 15 | #include <linux/delay.h> | 14 | #include <linux/delay.h> |
| 16 | #include <linux/sort.h> | 15 | #include <linux/sort.h> |
| @@ -18,7 +17,6 @@ | |||
| 18 | #include <linux/kallsyms.h> | 17 | #include <linux/kallsyms.h> |
| 19 | #include <linux/gfs2_ondisk.h> | 18 | #include <linux/gfs2_ondisk.h> |
| 20 | #include <linux/list.h> | 19 | #include <linux/list.h> |
| 21 | #include <linux/lm_interface.h> | ||
| 22 | #include <linux/wait.h> | 20 | #include <linux/wait.h> |
| 23 | #include <linux/module.h> | 21 | #include <linux/module.h> |
| 24 | #include <linux/rwsem.h> | 22 | #include <linux/rwsem.h> |
| @@ -155,13 +153,10 @@ static void glock_free(struct gfs2_glock *gl) | |||
| 155 | struct gfs2_sbd *sdp = gl->gl_sbd; | 153 | struct gfs2_sbd *sdp = gl->gl_sbd; |
| 156 | struct inode *aspace = gl->gl_aspace; | 154 | struct inode *aspace = gl->gl_aspace; |
| 157 | 155 | ||
| 158 | if (sdp->sd_lockstruct.ls_ops->lm_put_lock) | ||
| 159 | sdp->sd_lockstruct.ls_ops->lm_put_lock(gl->gl_lock); | ||
| 160 | |||
| 161 | if (aspace) | 156 | if (aspace) |
| 162 | gfs2_aspace_put(aspace); | 157 | gfs2_aspace_put(aspace); |
| 163 | 158 | ||
| 164 | kmem_cache_free(gfs2_glock_cachep, gl); | 159 | sdp->sd_lockstruct.ls_ops->lm_put_lock(gfs2_glock_cachep, gl); |
| 165 | } | 160 | } |
| 166 | 161 | ||
| 167 | /** | 162 | /** |
| @@ -172,6 +167,7 @@ static void glock_free(struct gfs2_glock *gl) | |||
| 172 | 167 | ||
| 173 | static void gfs2_glock_hold(struct gfs2_glock *gl) | 168 | static void gfs2_glock_hold(struct gfs2_glock *gl) |
| 174 | { | 169 | { |
| 170 | GLOCK_BUG_ON(gl, atomic_read(&gl->gl_ref) == 0); | ||
| 175 | atomic_inc(&gl->gl_ref); | 171 | atomic_inc(&gl->gl_ref); |
| 176 | } | 172 | } |
| 177 | 173 | ||
| @@ -211,17 +207,15 @@ int gfs2_glock_put(struct gfs2_glock *gl) | |||
| 211 | atomic_dec(&lru_count); | 207 | atomic_dec(&lru_count); |
| 212 | } | 208 | } |
| 213 | spin_unlock(&lru_lock); | 209 | spin_unlock(&lru_lock); |
| 214 | GLOCK_BUG_ON(gl, gl->gl_state != LM_ST_UNLOCKED); | ||
| 215 | GLOCK_BUG_ON(gl, !list_empty(&gl->gl_lru)); | ||
| 216 | GLOCK_BUG_ON(gl, !list_empty(&gl->gl_holders)); | 210 | GLOCK_BUG_ON(gl, !list_empty(&gl->gl_holders)); |
| 217 | glock_free(gl); | 211 | glock_free(gl); |
| 218 | rv = 1; | 212 | rv = 1; |
| 219 | goto out; | 213 | goto out; |
| 220 | } | 214 | } |
| 221 | write_unlock(gl_lock_addr(gl->gl_hash)); | ||
| 222 | /* 1 for being hashed, 1 for having state != LM_ST_UNLOCKED */ | 215 | /* 1 for being hashed, 1 for having state != LM_ST_UNLOCKED */ |
| 223 | if (atomic_read(&gl->gl_ref) == 2) | 216 | if (atomic_read(&gl->gl_ref) == 2) |
| 224 | gfs2_glock_schedule_for_reclaim(gl); | 217 | gfs2_glock_schedule_for_reclaim(gl); |
| 218 | write_unlock(gl_lock_addr(gl->gl_hash)); | ||
| 225 | out: | 219 | out: |
| 226 | return rv; | 220 | return rv; |
| 227 | } | 221 | } |
| @@ -256,27 +250,6 @@ static struct gfs2_glock *search_bucket(unsigned int hash, | |||
| 256 | } | 250 | } |
| 257 | 251 | ||
| 258 | /** | 252 | /** |
| 259 | * gfs2_glock_find() - Find glock by lock number | ||
| 260 | * @sdp: The GFS2 superblock | ||
| 261 | * @name: The lock name | ||
| 262 | * | ||
| 263 | * Returns: NULL, or the struct gfs2_glock with the requested number | ||
| 264 | */ | ||
| 265 | |||
| 266 | static struct gfs2_glock *gfs2_glock_find(const struct gfs2_sbd *sdp, | ||
| 267 | const struct lm_lockname *name) | ||
| 268 | { | ||
| 269 | unsigned int hash = gl_hash(sdp, name); | ||
| 270 | struct gfs2_glock *gl; | ||
| 271 | |||
| 272 | read_lock(gl_lock_addr(hash)); | ||
| 273 | gl = search_bucket(hash, sdp, name); | ||
| 274 | read_unlock(gl_lock_addr(hash)); | ||
| 275 | |||
| 276 | return gl; | ||
| 277 | } | ||
| 278 | |||
| 279 | /** | ||
| 280 | * may_grant - check if its ok to grant a new lock | 253 | * may_grant - check if its ok to grant a new lock |
| 281 | * @gl: The glock | 254 | * @gl: The glock |
| 282 | * @gh: The lock request which we wish to grant | 255 | * @gh: The lock request which we wish to grant |
| @@ -523,7 +496,7 @@ out_locked: | |||
| 523 | } | 496 | } |
| 524 | 497 | ||
| 525 | static unsigned int gfs2_lm_lock(struct gfs2_sbd *sdp, void *lock, | 498 | static unsigned int gfs2_lm_lock(struct gfs2_sbd *sdp, void *lock, |
| 526 | unsigned int cur_state, unsigned int req_state, | 499 | unsigned int req_state, |
| 527 | unsigned int flags) | 500 | unsigned int flags) |
| 528 | { | 501 | { |
| 529 | int ret = LM_OUT_ERROR; | 502 | int ret = LM_OUT_ERROR; |
| @@ -532,7 +505,7 @@ static unsigned int gfs2_lm_lock(struct gfs2_sbd *sdp, void *lock, | |||
| 532 | return req_state == LM_ST_UNLOCKED ? 0 : req_state; | 505 | return req_state == LM_ST_UNLOCKED ? 0 : req_state; |
| 533 | 506 | ||
| 534 | if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags))) | 507 | if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags))) |
| 535 | ret = sdp->sd_lockstruct.ls_ops->lm_lock(lock, cur_state, | 508 | ret = sdp->sd_lockstruct.ls_ops->lm_lock(lock, |
| 536 | req_state, flags); | 509 | req_state, flags); |
| 537 | return ret; | 510 | return ret; |
| 538 | } | 511 | } |
| @@ -575,7 +548,7 @@ __acquires(&gl->gl_spin) | |||
| 575 | gl->gl_state == LM_ST_DEFERRED) && | 548 | gl->gl_state == LM_ST_DEFERRED) && |
| 576 | !(lck_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) | 549 | !(lck_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) |
| 577 | lck_flags |= LM_FLAG_TRY_1CB; | 550 | lck_flags |= LM_FLAG_TRY_1CB; |
| 578 | ret = gfs2_lm_lock(sdp, gl->gl_lock, gl->gl_state, target, lck_flags); | 551 | ret = gfs2_lm_lock(sdp, gl, target, lck_flags); |
| 579 | 552 | ||
| 580 | if (!(ret & LM_OUT_ASYNC)) { | 553 | if (!(ret & LM_OUT_ASYNC)) { |
| 581 | finish_xmote(gl, ret); | 554 | finish_xmote(gl, ret); |
| @@ -624,10 +597,11 @@ __acquires(&gl->gl_spin) | |||
| 624 | 597 | ||
| 625 | GLOCK_BUG_ON(gl, test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags)); | 598 | GLOCK_BUG_ON(gl, test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags)); |
| 626 | 599 | ||
| 600 | down_read(&gfs2_umount_flush_sem); | ||
| 627 | if (test_bit(GLF_DEMOTE, &gl->gl_flags) && | 601 | if (test_bit(GLF_DEMOTE, &gl->gl_flags) && |
| 628 | gl->gl_demote_state != gl->gl_state) { | 602 | gl->gl_demote_state != gl->gl_state) { |
| 629 | if (find_first_holder(gl)) | 603 | if (find_first_holder(gl)) |
| 630 | goto out; | 604 | goto out_unlock; |
| 631 | if (nonblock) | 605 | if (nonblock) |
| 632 | goto out_sched; | 606 | goto out_sched; |
| 633 | set_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags); | 607 | set_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags); |
| @@ -638,23 +612,26 @@ __acquires(&gl->gl_spin) | |||
| 638 | gfs2_demote_wake(gl); | 612 | gfs2_demote_wake(gl); |
| 639 | ret = do_promote(gl); | 613 | ret = do_promote(gl); |
| 640 | if (ret == 0) | 614 | if (ret == 0) |
| 641 | goto out; | 615 | goto out_unlock; |
| 642 | if (ret == 2) | 616 | if (ret == 2) |
| 643 | return; | 617 | goto out_sem; |
| 644 | gh = find_first_waiter(gl); | 618 | gh = find_first_waiter(gl); |
| 645 | gl->gl_target = gh->gh_state; | 619 | gl->gl_target = gh->gh_state; |
| 646 | if (!(gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) | 620 | if (!(gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) |
| 647 | do_error(gl, 0); /* Fail queued try locks */ | 621 | do_error(gl, 0); /* Fail queued try locks */ |
| 648 | } | 622 | } |
| 649 | do_xmote(gl, gh, gl->gl_target); | 623 | do_xmote(gl, gh, gl->gl_target); |
| 624 | out_sem: | ||
| 625 | up_read(&gfs2_umount_flush_sem); | ||
| 650 | return; | 626 | return; |
| 651 | 627 | ||
| 652 | out_sched: | 628 | out_sched: |
| 653 | gfs2_glock_hold(gl); | 629 | gfs2_glock_hold(gl); |
| 654 | if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0) | 630 | if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0) |
| 655 | gfs2_glock_put(gl); | 631 | gfs2_glock_put(gl); |
| 656 | out: | 632 | out_unlock: |
| 657 | clear_bit(GLF_LOCK, &gl->gl_flags); | 633 | clear_bit(GLF_LOCK, &gl->gl_flags); |
| 634 | goto out_sem; | ||
| 658 | } | 635 | } |
| 659 | 636 | ||
| 660 | static void glock_work_func(struct work_struct *work) | 637 | static void glock_work_func(struct work_struct *work) |
| @@ -681,18 +658,6 @@ static void glock_work_func(struct work_struct *work) | |||
| 681 | gfs2_glock_put(gl); | 658 | gfs2_glock_put(gl); |
| 682 | } | 659 | } |
| 683 | 660 | ||
| 684 | static int gfs2_lm_get_lock(struct gfs2_sbd *sdp, struct lm_lockname *name, | ||
| 685 | void **lockp) | ||
| 686 | { | ||
| 687 | int error = -EIO; | ||
| 688 | if (!sdp->sd_lockstruct.ls_ops->lm_get_lock) | ||
| 689 | return 0; | ||
| 690 | if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags))) | ||
| 691 | error = sdp->sd_lockstruct.ls_ops->lm_get_lock( | ||
| 692 | sdp->sd_lockstruct.ls_lockspace, name, lockp); | ||
| 693 | return error; | ||
| 694 | } | ||
| 695 | |||
| 696 | /** | 661 | /** |
| 697 | * gfs2_glock_get() - Get a glock, or create one if one doesn't exist | 662 | * gfs2_glock_get() - Get a glock, or create one if one doesn't exist |
| 698 | * @sdp: The GFS2 superblock | 663 | * @sdp: The GFS2 superblock |
| @@ -719,10 +684,11 @@ int gfs2_glock_get(struct gfs2_sbd *sdp, u64 number, | |||
| 719 | gl = search_bucket(hash, sdp, &name); | 684 | gl = search_bucket(hash, sdp, &name); |
| 720 | read_unlock(gl_lock_addr(hash)); | 685 | read_unlock(gl_lock_addr(hash)); |
| 721 | 686 | ||
| 722 | if (gl || !create) { | 687 | *glp = gl; |
| 723 | *glp = gl; | 688 | if (gl) |
| 724 | return 0; | 689 | return 0; |
| 725 | } | 690 | if (!create) |
| 691 | return -ENOENT; | ||
| 726 | 692 | ||
| 727 | gl = kmem_cache_alloc(gfs2_glock_cachep, GFP_KERNEL); | 693 | gl = kmem_cache_alloc(gfs2_glock_cachep, GFP_KERNEL); |
| 728 | if (!gl) | 694 | if (!gl) |
| @@ -736,7 +702,9 @@ int gfs2_glock_get(struct gfs2_sbd *sdp, u64 number, | |||
| 736 | gl->gl_demote_state = LM_ST_EXCLUSIVE; | 702 | gl->gl_demote_state = LM_ST_EXCLUSIVE; |
| 737 | gl->gl_hash = hash; | 703 | gl->gl_hash = hash; |
| 738 | gl->gl_ops = glops; | 704 | gl->gl_ops = glops; |
| 739 | gl->gl_stamp = jiffies; | 705 | snprintf(gl->gl_strname, GDLM_STRNAME_BYTES, "%8x%16llx", name.ln_type, (unsigned long long)number); |
| 706 | memset(&gl->gl_lksb, 0, sizeof(struct dlm_lksb)); | ||
| 707 | gl->gl_lksb.sb_lvbptr = gl->gl_lvb; | ||
| 740 | gl->gl_tchange = jiffies; | 708 | gl->gl_tchange = jiffies; |
| 741 | gl->gl_object = NULL; | 709 | gl->gl_object = NULL; |
| 742 | gl->gl_sbd = sdp; | 710 | gl->gl_sbd = sdp; |
| @@ -753,10 +721,6 @@ int gfs2_glock_get(struct gfs2_sbd *sdp, u64 number, | |||
| 753 | } | 721 | } |
| 754 | } | 722 | } |
| 755 | 723 | ||
| 756 | error = gfs2_lm_get_lock(sdp, &name, &gl->gl_lock); | ||
| 757 | if (error) | ||
| 758 | goto fail_aspace; | ||
| 759 | |||
| 760 | write_lock(gl_lock_addr(hash)); | 724 | write_lock(gl_lock_addr(hash)); |
| 761 | tmp = search_bucket(hash, sdp, &name); | 725 | tmp = search_bucket(hash, sdp, &name); |
| 762 | if (tmp) { | 726 | if (tmp) { |
| @@ -772,9 +736,6 @@ int gfs2_glock_get(struct gfs2_sbd *sdp, u64 number, | |||
| 772 | 736 | ||
| 773 | return 0; | 737 | return 0; |
| 774 | 738 | ||
| 775 | fail_aspace: | ||
| 776 | if (gl->gl_aspace) | ||
| 777 | gfs2_aspace_put(gl->gl_aspace); | ||
| 778 | fail: | 739 | fail: |
| 779 | kmem_cache_free(gfs2_glock_cachep, gl); | 740 | kmem_cache_free(gfs2_glock_cachep, gl); |
| 780 | return error; | 741 | return error; |
| @@ -966,7 +927,7 @@ do_cancel: | |||
| 966 | if (!(gh->gh_flags & LM_FLAG_PRIORITY)) { | 927 | if (!(gh->gh_flags & LM_FLAG_PRIORITY)) { |
| 967 | spin_unlock(&gl->gl_spin); | 928 | spin_unlock(&gl->gl_spin); |
| 968 | if (sdp->sd_lockstruct.ls_ops->lm_cancel) | 929 | if (sdp->sd_lockstruct.ls_ops->lm_cancel) |
| 969 | sdp->sd_lockstruct.ls_ops->lm_cancel(gl->gl_lock); | 930 | sdp->sd_lockstruct.ls_ops->lm_cancel(gl); |
| 970 | spin_lock(&gl->gl_spin); | 931 | spin_lock(&gl->gl_spin); |
| 971 | } | 932 | } |
| 972 | return; | 933 | return; |
| @@ -1051,7 +1012,6 @@ void gfs2_glock_dq(struct gfs2_holder *gh) | |||
| 1051 | spin_lock(&gl->gl_spin); | 1012 | spin_lock(&gl->gl_spin); |
| 1052 | clear_bit(GLF_LOCK, &gl->gl_flags); | 1013 | clear_bit(GLF_LOCK, &gl->gl_flags); |
| 1053 | } | 1014 | } |
| 1054 | gl->gl_stamp = jiffies; | ||
| 1055 | if (list_empty(&gl->gl_holders) && | 1015 | if (list_empty(&gl->gl_holders) && |
| 1056 | !test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) && | 1016 | !test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) && |
| 1057 | !test_bit(GLF_DEMOTE, &gl->gl_flags)) | 1017 | !test_bit(GLF_DEMOTE, &gl->gl_flags)) |
| @@ -1240,70 +1200,13 @@ void gfs2_glock_dq_uninit_m(unsigned int num_gh, struct gfs2_holder *ghs) | |||
| 1240 | gfs2_glock_dq_uninit(&ghs[x]); | 1200 | gfs2_glock_dq_uninit(&ghs[x]); |
| 1241 | } | 1201 | } |
| 1242 | 1202 | ||
| 1243 | static int gfs2_lm_hold_lvb(struct gfs2_sbd *sdp, void *lock, char **lvbp) | 1203 | void gfs2_glock_cb(struct gfs2_glock *gl, unsigned int state) |
| 1244 | { | ||
| 1245 | int error = -EIO; | ||
| 1246 | if (!sdp->sd_lockstruct.ls_ops->lm_hold_lvb) | ||
| 1247 | return 0; | ||
| 1248 | if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags))) | ||
| 1249 | error = sdp->sd_lockstruct.ls_ops->lm_hold_lvb(lock, lvbp); | ||
| 1250 | return error; | ||
| 1251 | } | ||
| 1252 | |||
| 1253 | /** | ||
| 1254 | * gfs2_lvb_hold - attach a LVB from a glock | ||
| 1255 | * @gl: The glock in question | ||
| 1256 | * | ||
| 1257 | */ | ||
| 1258 | |||
| 1259 | int gfs2_lvb_hold(struct gfs2_glock *gl) | ||
| 1260 | { | ||
| 1261 | int error; | ||
| 1262 | |||
| 1263 | if (!atomic_read(&gl->gl_lvb_count)) { | ||
| 1264 | error = gfs2_lm_hold_lvb(gl->gl_sbd, gl->gl_lock, &gl->gl_lvb); | ||
| 1265 | if (error) | ||
| 1266 | return error; | ||
| 1267 | gfs2_glock_hold(gl); | ||
| 1268 | } | ||
| 1269 | atomic_inc(&gl->gl_lvb_count); | ||
| 1270 | |||
| 1271 | return 0; | ||
| 1272 | } | ||
| 1273 | |||
| 1274 | /** | ||
| 1275 | * gfs2_lvb_unhold - detach a LVB from a glock | ||
| 1276 | * @gl: The glock in question | ||
| 1277 | * | ||
| 1278 | */ | ||
| 1279 | |||
| 1280 | void gfs2_lvb_unhold(struct gfs2_glock *gl) | ||
| 1281 | { | ||
| 1282 | struct gfs2_sbd *sdp = gl->gl_sbd; | ||
| 1283 | |||
| 1284 | gfs2_glock_hold(gl); | ||
| 1285 | gfs2_assert(gl->gl_sbd, atomic_read(&gl->gl_lvb_count) > 0); | ||
| 1286 | if (atomic_dec_and_test(&gl->gl_lvb_count)) { | ||
| 1287 | if (sdp->sd_lockstruct.ls_ops->lm_unhold_lvb) | ||
| 1288 | sdp->sd_lockstruct.ls_ops->lm_unhold_lvb(gl->gl_lock, gl->gl_lvb); | ||
| 1289 | gl->gl_lvb = NULL; | ||
| 1290 | gfs2_glock_put(gl); | ||
| 1291 | } | ||
| 1292 | gfs2_glock_put(gl); | ||
| 1293 | } | ||
| 1294 | |||
| 1295 | static void blocking_cb(struct gfs2_sbd *sdp, struct lm_lockname *name, | ||
| 1296 | unsigned int state) | ||
| 1297 | { | 1204 | { |
| 1298 | struct gfs2_glock *gl; | ||
| 1299 | unsigned long delay = 0; | 1205 | unsigned long delay = 0; |
| 1300 | unsigned long holdtime; | 1206 | unsigned long holdtime; |
| 1301 | unsigned long now = jiffies; | 1207 | unsigned long now = jiffies; |
| 1302 | 1208 | ||
| 1303 | gl = gfs2_glock_find(sdp, name); | 1209 | gfs2_glock_hold(gl); |
| 1304 | if (!gl) | ||
| 1305 | return; | ||
| 1306 | |||
| 1307 | holdtime = gl->gl_tchange + gl->gl_ops->go_min_hold_time; | 1210 | holdtime = gl->gl_tchange + gl->gl_ops->go_min_hold_time; |
| 1308 | if (time_before(now, holdtime)) | 1211 | if (time_before(now, holdtime)) |
| 1309 | delay = holdtime - now; | 1212 | delay = holdtime - now; |
| @@ -1317,74 +1220,33 @@ static void blocking_cb(struct gfs2_sbd *sdp, struct lm_lockname *name, | |||
| 1317 | gfs2_glock_put(gl); | 1220 | gfs2_glock_put(gl); |
| 1318 | } | 1221 | } |
| 1319 | 1222 | ||
| 1320 | static void gfs2_jdesc_make_dirty(struct gfs2_sbd *sdp, unsigned int jid) | ||
| 1321 | { | ||
| 1322 | struct gfs2_jdesc *jd; | ||
| 1323 | |||
| 1324 | spin_lock(&sdp->sd_jindex_spin); | ||
| 1325 | list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) { | ||
| 1326 | if (jd->jd_jid != jid) | ||
| 1327 | continue; | ||
| 1328 | jd->jd_dirty = 1; | ||
| 1329 | break; | ||
| 1330 | } | ||
| 1331 | spin_unlock(&sdp->sd_jindex_spin); | ||
| 1332 | } | ||
| 1333 | |||
| 1334 | /** | 1223 | /** |
| 1335 | * gfs2_glock_cb - Callback used by locking module | 1224 | * gfs2_glock_complete - Callback used by locking |
| 1336 | * @sdp: Pointer to the superblock | 1225 | * @gl: Pointer to the glock |
| 1337 | * @type: Type of callback | 1226 | * @ret: The return value from the dlm |
| 1338 | * @data: Type dependent data pointer | ||
| 1339 | * | 1227 | * |
| 1340 | * Called by the locking module when it wants to tell us something. | ||
| 1341 | * Either we need to drop a lock, one of our ASYNC requests completed, or | ||
| 1342 | * a journal from another client needs to be recovered. | ||
| 1343 | */ | 1228 | */ |
| 1344 | 1229 | ||
| 1345 | void gfs2_glock_cb(void *cb_data, unsigned int type, void *data) | 1230 | void gfs2_glock_complete(struct gfs2_glock *gl, int ret) |
| 1346 | { | 1231 | { |
| 1347 | struct gfs2_sbd *sdp = cb_data; | 1232 | struct lm_lockstruct *ls = &gl->gl_sbd->sd_lockstruct; |
| 1348 | 1233 | gl->gl_reply = ret; | |
| 1349 | switch (type) { | 1234 | if (unlikely(test_bit(DFL_BLOCK_LOCKS, &ls->ls_flags))) { |
| 1350 | case LM_CB_NEED_E: | 1235 | struct gfs2_holder *gh; |
| 1351 | blocking_cb(sdp, data, LM_ST_UNLOCKED); | 1236 | spin_lock(&gl->gl_spin); |
| 1352 | return; | 1237 | gh = find_first_waiter(gl); |
| 1353 | 1238 | if ((!(gh && (gh->gh_flags & LM_FLAG_NOEXP)) && | |
| 1354 | case LM_CB_NEED_D: | 1239 | (gl->gl_target != LM_ST_UNLOCKED)) || |
| 1355 | blocking_cb(sdp, data, LM_ST_DEFERRED); | 1240 | ((ret & ~LM_OUT_ST_MASK) != 0)) |
| 1356 | return; | 1241 | set_bit(GLF_FROZEN, &gl->gl_flags); |
| 1357 | 1242 | spin_unlock(&gl->gl_spin); | |
| 1358 | case LM_CB_NEED_S: | 1243 | if (test_bit(GLF_FROZEN, &gl->gl_flags)) |
| 1359 | blocking_cb(sdp, data, LM_ST_SHARED); | ||
| 1360 | return; | ||
| 1361 | |||
| 1362 | case LM_CB_ASYNC: { | ||
| 1363 | struct lm_async_cb *async = data; | ||
| 1364 | struct gfs2_glock *gl; | ||
| 1365 | |||
| 1366 | down_read(&gfs2_umount_flush_sem); | ||
| 1367 | gl = gfs2_glock_find(sdp, &async->lc_name); | ||
| 1368 | if (gfs2_assert_warn(sdp, gl)) | ||
| 1369 | return; | 1244 | return; |
| 1370 | gl->gl_reply = async->lc_ret; | ||
| 1371 | set_bit(GLF_REPLY_PENDING, &gl->gl_flags); | ||
| 1372 | if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0) | ||
| 1373 | gfs2_glock_put(gl); | ||
| 1374 | up_read(&gfs2_umount_flush_sem); | ||
| 1375 | return; | ||
| 1376 | } | ||
| 1377 | |||
| 1378 | case LM_CB_NEED_RECOVERY: | ||
| 1379 | gfs2_jdesc_make_dirty(sdp, *(unsigned int *)data); | ||
| 1380 | if (sdp->sd_recoverd_process) | ||
| 1381 | wake_up_process(sdp->sd_recoverd_process); | ||
| 1382 | return; | ||
| 1383 | |||
| 1384 | default: | ||
| 1385 | gfs2_assert_warn(sdp, 0); | ||
| 1386 | return; | ||
| 1387 | } | 1245 | } |
| 1246 | set_bit(GLF_REPLY_PENDING, &gl->gl_flags); | ||
| 1247 | gfs2_glock_hold(gl); | ||
| 1248 | if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0) | ||
| 1249 | gfs2_glock_put(gl); | ||
| 1388 | } | 1250 | } |
| 1389 | 1251 | ||
| 1390 | /** | 1252 | /** |
| @@ -1515,6 +1377,25 @@ out: | |||
| 1515 | return has_entries; | 1377 | return has_entries; |
| 1516 | } | 1378 | } |
| 1517 | 1379 | ||
| 1380 | |||
| 1381 | /** | ||
| 1382 | * thaw_glock - thaw out a glock which has an unprocessed reply waiting | ||
| 1383 | * @gl: The glock to thaw | ||
| 1384 | * | ||
| 1385 | * N.B. When we freeze a glock, we leave a ref to the glock outstanding, | ||
| 1386 | * so this has to result in the ref count being dropped by one. | ||
| 1387 | */ | ||
| 1388 | |||
| 1389 | static void thaw_glock(struct gfs2_glock *gl) | ||
| 1390 | { | ||
| 1391 | if (!test_and_clear_bit(GLF_FROZEN, &gl->gl_flags)) | ||
| 1392 | return; | ||
| 1393 | set_bit(GLF_REPLY_PENDING, &gl->gl_flags); | ||
| 1394 | gfs2_glock_hold(gl); | ||
| 1395 | if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0) | ||
| 1396 | gfs2_glock_put(gl); | ||
| 1397 | } | ||
| 1398 | |||
| 1518 | /** | 1399 | /** |
| 1519 | * clear_glock - look at a glock and see if we can free it from glock cache | 1400 | * clear_glock - look at a glock and see if we can free it from glock cache |
| 1520 | * @gl: the glock to look at | 1401 | * @gl: the glock to look at |
| @@ -1540,6 +1421,20 @@ static void clear_glock(struct gfs2_glock *gl) | |||
| 1540 | } | 1421 | } |
| 1541 | 1422 | ||
| 1542 | /** | 1423 | /** |
| 1424 | * gfs2_glock_thaw - Thaw any frozen glocks | ||
| 1425 | * @sdp: The super block | ||
| 1426 | * | ||
| 1427 | */ | ||
| 1428 | |||
| 1429 | void gfs2_glock_thaw(struct gfs2_sbd *sdp) | ||
| 1430 | { | ||
| 1431 | unsigned x; | ||
| 1432 | |||
| 1433 | for (x = 0; x < GFS2_GL_HASH_SIZE; x++) | ||
| 1434 | examine_bucket(thaw_glock, sdp, x); | ||
| 1435 | } | ||
| 1436 | |||
| 1437 | /** | ||
| 1543 | * gfs2_gl_hash_clear - Empty out the glock hash table | 1438 | * gfs2_gl_hash_clear - Empty out the glock hash table |
| 1544 | * @sdp: the filesystem | 1439 | * @sdp: the filesystem |
| 1545 | * @wait: wait until it's all gone | 1440 | * @wait: wait until it's all gone |
| @@ -1619,7 +1514,7 @@ static const char *hflags2str(char *buf, unsigned flags, unsigned long iflags) | |||
| 1619 | if (flags & LM_FLAG_NOEXP) | 1514 | if (flags & LM_FLAG_NOEXP) |
| 1620 | *p++ = 'e'; | 1515 | *p++ = 'e'; |
| 1621 | if (flags & LM_FLAG_ANY) | 1516 | if (flags & LM_FLAG_ANY) |
| 1622 | *p++ = 'a'; | 1517 | *p++ = 'A'; |
| 1623 | if (flags & LM_FLAG_PRIORITY) | 1518 | if (flags & LM_FLAG_PRIORITY) |
| 1624 | *p++ = 'p'; | 1519 | *p++ = 'p'; |
| 1625 | if (flags & GL_ASYNC) | 1520 | if (flags & GL_ASYNC) |
| @@ -1683,6 +1578,10 @@ static const char *gflags2str(char *buf, const unsigned long *gflags) | |||
| 1683 | *p++ = 'i'; | 1578 | *p++ = 'i'; |
| 1684 | if (test_bit(GLF_REPLY_PENDING, gflags)) | 1579 | if (test_bit(GLF_REPLY_PENDING, gflags)) |
| 1685 | *p++ = 'r'; | 1580 | *p++ = 'r'; |
| 1581 | if (test_bit(GLF_INITIAL, gflags)) | ||
| 1582 | *p++ = 'I'; | ||
| 1583 | if (test_bit(GLF_FROZEN, gflags)) | ||
| 1584 | *p++ = 'F'; | ||
| 1686 | *p = 0; | 1585 | *p = 0; |
| 1687 | return buf; | 1586 | return buf; |
| 1688 | } | 1587 | } |
| @@ -1717,14 +1616,13 @@ static int __dump_glock(struct seq_file *seq, const struct gfs2_glock *gl) | |||
| 1717 | dtime *= 1000000/HZ; /* demote time in uSec */ | 1616 | dtime *= 1000000/HZ; /* demote time in uSec */ |
| 1718 | if (!test_bit(GLF_DEMOTE, &gl->gl_flags)) | 1617 | if (!test_bit(GLF_DEMOTE, &gl->gl_flags)) |
| 1719 | dtime = 0; | 1618 | dtime = 0; |
| 1720 | gfs2_print_dbg(seq, "G: s:%s n:%u/%llu f:%s t:%s d:%s/%llu l:%d a:%d r:%d\n", | 1619 | gfs2_print_dbg(seq, "G: s:%s n:%u/%llu f:%s t:%s d:%s/%llu a:%d r:%d\n", |
| 1721 | state2str(gl->gl_state), | 1620 | state2str(gl->gl_state), |
| 1722 | gl->gl_name.ln_type, | 1621 | gl->gl_name.ln_type, |
| 1723 | (unsigned long long)gl->gl_name.ln_number, | 1622 | (unsigned long long)gl->gl_name.ln_number, |
| 1724 | gflags2str(gflags_buf, &gl->gl_flags), | 1623 | gflags2str(gflags_buf, &gl->gl_flags), |
| 1725 | state2str(gl->gl_target), | 1624 | state2str(gl->gl_target), |
| 1726 | state2str(gl->gl_demote_state), dtime, | 1625 | state2str(gl->gl_demote_state), dtime, |
| 1727 | atomic_read(&gl->gl_lvb_count), | ||
| 1728 | atomic_read(&gl->gl_ail_count), | 1626 | atomic_read(&gl->gl_ail_count), |
| 1729 | atomic_read(&gl->gl_ref)); | 1627 | atomic_read(&gl->gl_ref)); |
| 1730 | 1628 | ||
diff --git a/fs/gfs2/glock.h b/fs/gfs2/glock.h index 543ec7ecfbda..a602a28f6f08 100644 --- a/fs/gfs2/glock.h +++ b/fs/gfs2/glock.h | |||
| @@ -11,15 +11,130 @@ | |||
| 11 | #define __GLOCK_DOT_H__ | 11 | #define __GLOCK_DOT_H__ |
| 12 | 12 | ||
| 13 | #include <linux/sched.h> | 13 | #include <linux/sched.h> |
| 14 | #include <linux/parser.h> | ||
| 14 | #include "incore.h" | 15 | #include "incore.h" |
| 15 | 16 | ||
| 16 | /* Flags for lock requests; used in gfs2_holder gh_flag field. | 17 | /* Options for hostdata parser */ |
| 17 | From lm_interface.h: | 18 | |
| 19 | enum { | ||
| 20 | Opt_jid, | ||
| 21 | Opt_id, | ||
| 22 | Opt_first, | ||
| 23 | Opt_nodir, | ||
| 24 | Opt_err, | ||
| 25 | }; | ||
| 26 | |||
| 27 | /* | ||
| 28 | * lm_lockname types | ||
| 29 | */ | ||
| 30 | |||
| 31 | #define LM_TYPE_RESERVED 0x00 | ||
| 32 | #define LM_TYPE_NONDISK 0x01 | ||
| 33 | #define LM_TYPE_INODE 0x02 | ||
| 34 | #define LM_TYPE_RGRP 0x03 | ||
| 35 | #define LM_TYPE_META 0x04 | ||
| 36 | #define LM_TYPE_IOPEN 0x05 | ||
| 37 | #define LM_TYPE_FLOCK 0x06 | ||
| 38 | #define LM_TYPE_PLOCK 0x07 | ||
| 39 | #define LM_TYPE_QUOTA 0x08 | ||
| 40 | #define LM_TYPE_JOURNAL 0x09 | ||
| 41 | |||
| 42 | /* | ||
| 43 | * lm_lock() states | ||
| 44 | * | ||
| 45 | * SHARED is compatible with SHARED, not with DEFERRED or EX. | ||
| 46 | * DEFERRED is compatible with DEFERRED, not with SHARED or EX. | ||
| 47 | */ | ||
| 48 | |||
| 49 | #define LM_ST_UNLOCKED 0 | ||
| 50 | #define LM_ST_EXCLUSIVE 1 | ||
| 51 | #define LM_ST_DEFERRED 2 | ||
| 52 | #define LM_ST_SHARED 3 | ||
| 53 | |||
| 54 | /* | ||
| 55 | * lm_lock() flags | ||
| 56 | * | ||
| 57 | * LM_FLAG_TRY | ||
| 58 | * Don't wait to acquire the lock if it can't be granted immediately. | ||
| 59 | * | ||
| 60 | * LM_FLAG_TRY_1CB | ||
| 61 | * Send one blocking callback if TRY is set and the lock is not granted. | ||
| 62 | * | ||
| 63 | * LM_FLAG_NOEXP | ||
| 64 | * GFS sets this flag on lock requests it makes while doing journal recovery. | ||
| 65 | * These special requests should not be blocked due to the recovery like | ||
| 66 | * ordinary locks would be. | ||
| 67 | * | ||
| 68 | * LM_FLAG_ANY | ||
| 69 | * A SHARED request may also be granted in DEFERRED, or a DEFERRED request may | ||
| 70 | * also be granted in SHARED. The preferred state is whichever is compatible | ||
| 71 | * with other granted locks, or the specified state if no other locks exist. | ||
| 72 | * | ||
| 73 | * LM_FLAG_PRIORITY | ||
| 74 | * Override fairness considerations. Suppose a lock is held in a shared state | ||
| 75 | * and there is a pending request for the deferred state. A shared lock | ||
| 76 | * request with the priority flag would be allowed to bypass the deferred | ||
| 77 | * request and directly join the other shared lock. A shared lock request | ||
| 78 | * without the priority flag might be forced to wait until the deferred | ||
| 79 | * requested had acquired and released the lock. | ||
| 80 | */ | ||
| 81 | |||
| 18 | #define LM_FLAG_TRY 0x00000001 | 82 | #define LM_FLAG_TRY 0x00000001 |
| 19 | #define LM_FLAG_TRY_1CB 0x00000002 | 83 | #define LM_FLAG_TRY_1CB 0x00000002 |
| 20 | #define LM_FLAG_NOEXP 0x00000004 | 84 | #define LM_FLAG_NOEXP 0x00000004 |
| 21 | #define LM_FLAG_ANY 0x00000008 | 85 | #define LM_FLAG_ANY 0x00000008 |
| 22 | #define LM_FLAG_PRIORITY 0x00000010 */ | 86 | #define LM_FLAG_PRIORITY 0x00000010 |
| 87 | #define GL_ASYNC 0x00000040 | ||
| 88 | #define GL_EXACT 0x00000080 | ||
| 89 | #define GL_SKIP 0x00000100 | ||
| 90 | #define GL_ATIME 0x00000200 | ||
| 91 | #define GL_NOCACHE 0x00000400 | ||
| 92 | |||
| 93 | /* | ||
| 94 | * lm_lock() and lm_async_cb return flags | ||
| 95 | * | ||
| 96 | * LM_OUT_ST_MASK | ||
| 97 | * Masks the lower two bits of lock state in the returned value. | ||
| 98 | * | ||
| 99 | * LM_OUT_CANCELED | ||
| 100 | * The lock request was canceled. | ||
| 101 | * | ||
| 102 | * LM_OUT_ASYNC | ||
| 103 | * The result of the request will be returned in an LM_CB_ASYNC callback. | ||
| 104 | * | ||
| 105 | */ | ||
| 106 | |||
| 107 | #define LM_OUT_ST_MASK 0x00000003 | ||
| 108 | #define LM_OUT_CANCELED 0x00000008 | ||
| 109 | #define LM_OUT_ASYNC 0x00000080 | ||
| 110 | #define LM_OUT_ERROR 0x00000100 | ||
| 111 | |||
| 112 | /* | ||
| 113 | * lm_recovery_done() messages | ||
| 114 | */ | ||
| 115 | |||
| 116 | #define LM_RD_GAVEUP 308 | ||
| 117 | #define LM_RD_SUCCESS 309 | ||
| 118 | |||
| 119 | #define GLR_TRYFAILED 13 | ||
| 120 | |||
| 121 | struct lm_lockops { | ||
| 122 | const char *lm_proto_name; | ||
| 123 | int (*lm_mount) (struct gfs2_sbd *sdp, const char *fsname); | ||
| 124 | void (*lm_unmount) (struct gfs2_sbd *sdp); | ||
| 125 | void (*lm_withdraw) (struct gfs2_sbd *sdp); | ||
| 126 | void (*lm_put_lock) (struct kmem_cache *cachep, void *gl); | ||
| 127 | unsigned int (*lm_lock) (struct gfs2_glock *gl, | ||
| 128 | unsigned int req_state, unsigned int flags); | ||
| 129 | void (*lm_cancel) (struct gfs2_glock *gl); | ||
| 130 | const match_table_t *lm_tokens; | ||
| 131 | }; | ||
| 132 | |||
| 133 | #define LM_FLAG_TRY 0x00000001 | ||
| 134 | #define LM_FLAG_TRY_1CB 0x00000002 | ||
| 135 | #define LM_FLAG_NOEXP 0x00000004 | ||
| 136 | #define LM_FLAG_ANY 0x00000008 | ||
| 137 | #define LM_FLAG_PRIORITY 0x00000010 | ||
| 23 | 138 | ||
| 24 | #define GL_ASYNC 0x00000040 | 139 | #define GL_ASYNC 0x00000040 |
| 25 | #define GL_EXACT 0x00000080 | 140 | #define GL_EXACT 0x00000080 |
| @@ -128,10 +243,12 @@ static inline int gfs2_glock_nq_init(struct gfs2_glock *gl, | |||
| 128 | int gfs2_lvb_hold(struct gfs2_glock *gl); | 243 | int gfs2_lvb_hold(struct gfs2_glock *gl); |
| 129 | void gfs2_lvb_unhold(struct gfs2_glock *gl); | 244 | void gfs2_lvb_unhold(struct gfs2_glock *gl); |
| 130 | 245 | ||
| 131 | void gfs2_glock_cb(void *cb_data, unsigned int type, void *data); | 246 | void gfs2_glock_cb(struct gfs2_glock *gl, unsigned int state); |
| 247 | void gfs2_glock_complete(struct gfs2_glock *gl, int ret); | ||
| 132 | void gfs2_reclaim_glock(struct gfs2_sbd *sdp); | 248 | void gfs2_reclaim_glock(struct gfs2_sbd *sdp); |
| 133 | void gfs2_gl_hash_clear(struct gfs2_sbd *sdp); | 249 | void gfs2_gl_hash_clear(struct gfs2_sbd *sdp); |
| 134 | void gfs2_glock_finish_truncate(struct gfs2_inode *ip); | 250 | void gfs2_glock_finish_truncate(struct gfs2_inode *ip); |
| 251 | void gfs2_glock_thaw(struct gfs2_sbd *sdp); | ||
| 135 | 252 | ||
| 136 | int __init gfs2_glock_init(void); | 253 | int __init gfs2_glock_init(void); |
| 137 | void gfs2_glock_exit(void); | 254 | void gfs2_glock_exit(void); |
| @@ -141,4 +258,6 @@ void gfs2_delete_debugfs_file(struct gfs2_sbd *sdp); | |||
| 141 | int gfs2_register_debugfs(void); | 258 | int gfs2_register_debugfs(void); |
| 142 | void gfs2_unregister_debugfs(void); | 259 | void gfs2_unregister_debugfs(void); |
| 143 | 260 | ||
| 261 | extern const struct lm_lockops gfs2_dlm_ops; | ||
| 262 | |||
| 144 | #endif /* __GLOCK_DOT_H__ */ | 263 | #endif /* __GLOCK_DOT_H__ */ |
diff --git a/fs/gfs2/glops.c b/fs/gfs2/glops.c index 8522d3aa64fc..bf23a62aa925 100644 --- a/fs/gfs2/glops.c +++ b/fs/gfs2/glops.c | |||
| @@ -12,7 +12,6 @@ | |||
| 12 | #include <linux/completion.h> | 12 | #include <linux/completion.h> |
| 13 | #include <linux/buffer_head.h> | 13 | #include <linux/buffer_head.h> |
| 14 | #include <linux/gfs2_ondisk.h> | 14 | #include <linux/gfs2_ondisk.h> |
| 15 | #include <linux/lm_interface.h> | ||
| 16 | #include <linux/bio.h> | 15 | #include <linux/bio.h> |
| 17 | 16 | ||
| 18 | #include "gfs2.h" | 17 | #include "gfs2.h" |
| @@ -38,20 +37,25 @@ | |||
| 38 | static void gfs2_ail_empty_gl(struct gfs2_glock *gl) | 37 | static void gfs2_ail_empty_gl(struct gfs2_glock *gl) |
| 39 | { | 38 | { |
| 40 | struct gfs2_sbd *sdp = gl->gl_sbd; | 39 | struct gfs2_sbd *sdp = gl->gl_sbd; |
| 41 | unsigned int blocks; | ||
| 42 | struct list_head *head = &gl->gl_ail_list; | 40 | struct list_head *head = &gl->gl_ail_list; |
| 43 | struct gfs2_bufdata *bd; | 41 | struct gfs2_bufdata *bd; |
| 44 | struct buffer_head *bh; | 42 | struct buffer_head *bh; |
| 45 | int error; | 43 | struct gfs2_trans tr; |
| 46 | 44 | ||
| 47 | blocks = atomic_read(&gl->gl_ail_count); | 45 | memset(&tr, 0, sizeof(tr)); |
| 48 | if (!blocks) | 46 | tr.tr_revokes = atomic_read(&gl->gl_ail_count); |
| 49 | return; | ||
| 50 | 47 | ||
| 51 | error = gfs2_trans_begin(sdp, 0, blocks); | 48 | if (!tr.tr_revokes) |
| 52 | if (gfs2_assert_withdraw(sdp, !error)) | ||
| 53 | return; | 49 | return; |
| 54 | 50 | ||
| 51 | /* A shortened, inline version of gfs2_trans_begin() */ | ||
| 52 | tr.tr_reserved = 1 + gfs2_struct2blk(sdp, tr.tr_revokes, sizeof(u64)); | ||
| 53 | tr.tr_ip = (unsigned long)__builtin_return_address(0); | ||
| 54 | INIT_LIST_HEAD(&tr.tr_list_buf); | ||
| 55 | gfs2_log_reserve(sdp, tr.tr_reserved); | ||
| 56 | BUG_ON(current->journal_info); | ||
| 57 | current->journal_info = &tr; | ||
| 58 | |||
| 55 | gfs2_log_lock(sdp); | 59 | gfs2_log_lock(sdp); |
| 56 | while (!list_empty(head)) { | 60 | while (!list_empty(head)) { |
| 57 | bd = list_entry(head->next, struct gfs2_bufdata, | 61 | bd = list_entry(head->next, struct gfs2_bufdata, |
| @@ -72,29 +76,7 @@ static void gfs2_ail_empty_gl(struct gfs2_glock *gl) | |||
| 72 | } | 76 | } |
| 73 | 77 | ||
| 74 | /** | 78 | /** |
| 75 | * gfs2_pte_inval - Sync and invalidate all PTEs associated with a glock | 79 | * rgrp_go_sync - sync out the metadata for this glock |
| 76 | * @gl: the glock | ||
| 77 | * | ||
| 78 | */ | ||
| 79 | |||
| 80 | static void gfs2_pte_inval(struct gfs2_glock *gl) | ||
| 81 | { | ||
| 82 | struct gfs2_inode *ip; | ||
| 83 | struct inode *inode; | ||
| 84 | |||
| 85 | ip = gl->gl_object; | ||
| 86 | inode = &ip->i_inode; | ||
| 87 | if (!ip || !S_ISREG(inode->i_mode)) | ||
| 88 | return; | ||
| 89 | |||
| 90 | unmap_shared_mapping_range(inode->i_mapping, 0, 0); | ||
| 91 | if (test_bit(GIF_SW_PAGED, &ip->i_flags)) | ||
| 92 | set_bit(GLF_DIRTY, &gl->gl_flags); | ||
| 93 | |||
| 94 | } | ||
| 95 | |||
| 96 | /** | ||
| 97 | * meta_go_sync - sync out the metadata for this glock | ||
| 98 | * @gl: the glock | 80 | * @gl: the glock |
| 99 | * | 81 | * |
| 100 | * Called when demoting or unlocking an EX glock. We must flush | 82 | * Called when demoting or unlocking an EX glock. We must flush |
| @@ -102,36 +84,42 @@ static void gfs2_pte_inval(struct gfs2_glock *gl) | |||
| 102 | * not return to caller to demote/unlock the glock until I/O is complete. | 84 | * not return to caller to demote/unlock the glock until I/O is complete. |
| 103 | */ | 85 | */ |
| 104 | 86 | ||
| 105 | static void meta_go_sync(struct gfs2_glock *gl) | 87 | static void rgrp_go_sync(struct gfs2_glock *gl) |
| 106 | { | 88 | { |
| 107 | if (gl->gl_state != LM_ST_EXCLUSIVE) | 89 | struct address_space *metamapping = gl->gl_aspace->i_mapping; |
| 90 | int error; | ||
| 91 | |||
| 92 | if (!test_and_clear_bit(GLF_DIRTY, &gl->gl_flags)) | ||
| 108 | return; | 93 | return; |
| 94 | BUG_ON(gl->gl_state != LM_ST_EXCLUSIVE); | ||
| 109 | 95 | ||
| 110 | if (test_and_clear_bit(GLF_DIRTY, &gl->gl_flags)) { | 96 | gfs2_log_flush(gl->gl_sbd, gl); |
| 111 | gfs2_log_flush(gl->gl_sbd, gl); | 97 | filemap_fdatawrite(metamapping); |
| 112 | gfs2_meta_sync(gl); | 98 | error = filemap_fdatawait(metamapping); |
| 113 | gfs2_ail_empty_gl(gl); | 99 | mapping_set_error(metamapping, error); |
| 114 | } | 100 | gfs2_ail_empty_gl(gl); |
| 115 | } | 101 | } |
| 116 | 102 | ||
| 117 | /** | 103 | /** |
| 118 | * meta_go_inval - invalidate the metadata for this glock | 104 | * rgrp_go_inval - invalidate the metadata for this glock |
| 119 | * @gl: the glock | 105 | * @gl: the glock |
| 120 | * @flags: | 106 | * @flags: |
| 121 | * | 107 | * |
| 108 | * We never used LM_ST_DEFERRED with resource groups, so that we | ||
| 109 | * should always see the metadata flag set here. | ||
| 110 | * | ||
| 122 | */ | 111 | */ |
| 123 | 112 | ||
| 124 | static void meta_go_inval(struct gfs2_glock *gl, int flags) | 113 | static void rgrp_go_inval(struct gfs2_glock *gl, int flags) |
| 125 | { | 114 | { |
| 126 | if (!(flags & DIO_METADATA)) | 115 | struct address_space *mapping = gl->gl_aspace->i_mapping; |
| 127 | return; | ||
| 128 | 116 | ||
| 129 | gfs2_meta_inval(gl); | 117 | BUG_ON(!(flags & DIO_METADATA)); |
| 130 | if (gl->gl_object == GFS2_I(gl->gl_sbd->sd_rindex)) | 118 | gfs2_assert_withdraw(gl->gl_sbd, !atomic_read(&gl->gl_ail_count)); |
| 131 | gl->gl_sbd->sd_rindex_uptodate = 0; | 119 | truncate_inode_pages(mapping, 0); |
| 132 | else if (gl->gl_ops == &gfs2_rgrp_glops && gl->gl_object) { | ||
| 133 | struct gfs2_rgrpd *rgd = (struct gfs2_rgrpd *)gl->gl_object; | ||
| 134 | 120 | ||
| 121 | if (gl->gl_object) { | ||
| 122 | struct gfs2_rgrpd *rgd = (struct gfs2_rgrpd *)gl->gl_object; | ||
| 135 | rgd->rd_flags &= ~GFS2_RDF_UPTODATE; | 123 | rgd->rd_flags &= ~GFS2_RDF_UPTODATE; |
| 136 | } | 124 | } |
| 137 | } | 125 | } |
| @@ -148,48 +136,54 @@ static void inode_go_sync(struct gfs2_glock *gl) | |||
| 148 | struct address_space *metamapping = gl->gl_aspace->i_mapping; | 136 | struct address_space *metamapping = gl->gl_aspace->i_mapping; |
| 149 | int error; | 137 | int error; |
| 150 | 138 | ||
| 151 | if (gl->gl_state != LM_ST_UNLOCKED) | ||
| 152 | gfs2_pte_inval(gl); | ||
| 153 | if (gl->gl_state != LM_ST_EXCLUSIVE) | ||
| 154 | return; | ||
| 155 | |||
| 156 | if (ip && !S_ISREG(ip->i_inode.i_mode)) | 139 | if (ip && !S_ISREG(ip->i_inode.i_mode)) |
| 157 | ip = NULL; | 140 | ip = NULL; |
| 141 | if (ip && test_and_clear_bit(GIF_SW_PAGED, &ip->i_flags)) | ||
| 142 | unmap_shared_mapping_range(ip->i_inode.i_mapping, 0, 0); | ||
| 143 | if (!test_and_clear_bit(GLF_DIRTY, &gl->gl_flags)) | ||
| 144 | return; | ||
| 158 | 145 | ||
| 159 | if (test_bit(GLF_DIRTY, &gl->gl_flags)) { | 146 | BUG_ON(gl->gl_state != LM_ST_EXCLUSIVE); |
| 160 | gfs2_log_flush(gl->gl_sbd, gl); | 147 | |
| 161 | filemap_fdatawrite(metamapping); | 148 | gfs2_log_flush(gl->gl_sbd, gl); |
| 162 | if (ip) { | 149 | filemap_fdatawrite(metamapping); |
| 163 | struct address_space *mapping = ip->i_inode.i_mapping; | 150 | if (ip) { |
| 164 | filemap_fdatawrite(mapping); | 151 | struct address_space *mapping = ip->i_inode.i_mapping; |
| 165 | error = filemap_fdatawait(mapping); | 152 | filemap_fdatawrite(mapping); |
| 166 | mapping_set_error(mapping, error); | 153 | error = filemap_fdatawait(mapping); |
| 167 | } | 154 | mapping_set_error(mapping, error); |
| 168 | error = filemap_fdatawait(metamapping); | ||
| 169 | mapping_set_error(metamapping, error); | ||
| 170 | clear_bit(GLF_DIRTY, &gl->gl_flags); | ||
| 171 | gfs2_ail_empty_gl(gl); | ||
| 172 | } | 155 | } |
| 156 | error = filemap_fdatawait(metamapping); | ||
| 157 | mapping_set_error(metamapping, error); | ||
| 158 | gfs2_ail_empty_gl(gl); | ||
| 173 | } | 159 | } |
| 174 | 160 | ||
| 175 | /** | 161 | /** |
| 176 | * inode_go_inval - prepare a inode glock to be released | 162 | * inode_go_inval - prepare a inode glock to be released |
| 177 | * @gl: the glock | 163 | * @gl: the glock |
| 178 | * @flags: | 164 | * @flags: |
| 165 | * | ||
| 166 | * Normally we invlidate everything, but if we are moving into | ||
| 167 | * LM_ST_DEFERRED from LM_ST_SHARED or LM_ST_EXCLUSIVE then we | ||
| 168 | * can keep hold of the metadata, since it won't have changed. | ||
| 179 | * | 169 | * |
| 180 | */ | 170 | */ |
| 181 | 171 | ||
| 182 | static void inode_go_inval(struct gfs2_glock *gl, int flags) | 172 | static void inode_go_inval(struct gfs2_glock *gl, int flags) |
| 183 | { | 173 | { |
| 184 | struct gfs2_inode *ip = gl->gl_object; | 174 | struct gfs2_inode *ip = gl->gl_object; |
| 185 | int meta = (flags & DIO_METADATA); | ||
| 186 | 175 | ||
| 187 | if (meta) { | 176 | gfs2_assert_withdraw(gl->gl_sbd, !atomic_read(&gl->gl_ail_count)); |
| 188 | gfs2_meta_inval(gl); | 177 | |
| 178 | if (flags & DIO_METADATA) { | ||
| 179 | struct address_space *mapping = gl->gl_aspace->i_mapping; | ||
| 180 | truncate_inode_pages(mapping, 0); | ||
| 189 | if (ip) | 181 | if (ip) |
| 190 | set_bit(GIF_INVALID, &ip->i_flags); | 182 | set_bit(GIF_INVALID, &ip->i_flags); |
| 191 | } | 183 | } |
| 192 | 184 | ||
| 185 | if (ip == GFS2_I(gl->gl_sbd->sd_rindex)) | ||
| 186 | gl->gl_sbd->sd_rindex_uptodate = 0; | ||
| 193 | if (ip && S_ISREG(ip->i_inode.i_mode)) | 187 | if (ip && S_ISREG(ip->i_inode.i_mode)) |
| 194 | truncate_inode_pages(ip->i_inode.i_mapping, 0); | 188 | truncate_inode_pages(ip->i_inode.i_mapping, 0); |
| 195 | } | 189 | } |
| @@ -390,20 +384,7 @@ static int trans_go_demote_ok(const struct gfs2_glock *gl) | |||
| 390 | return 0; | 384 | return 0; |
| 391 | } | 385 | } |
| 392 | 386 | ||
| 393 | /** | ||
| 394 | * quota_go_demote_ok - Check to see if it's ok to unlock a quota glock | ||
| 395 | * @gl: the glock | ||
| 396 | * | ||
| 397 | * Returns: 1 if it's ok | ||
| 398 | */ | ||
| 399 | |||
| 400 | static int quota_go_demote_ok(const struct gfs2_glock *gl) | ||
| 401 | { | ||
| 402 | return !atomic_read(&gl->gl_lvb_count); | ||
| 403 | } | ||
| 404 | |||
| 405 | const struct gfs2_glock_operations gfs2_meta_glops = { | 387 | const struct gfs2_glock_operations gfs2_meta_glops = { |
| 406 | .go_xmote_th = meta_go_sync, | ||
| 407 | .go_type = LM_TYPE_META, | 388 | .go_type = LM_TYPE_META, |
| 408 | }; | 389 | }; |
| 409 | 390 | ||
| @@ -418,8 +399,8 @@ const struct gfs2_glock_operations gfs2_inode_glops = { | |||
| 418 | }; | 399 | }; |
| 419 | 400 | ||
| 420 | const struct gfs2_glock_operations gfs2_rgrp_glops = { | 401 | const struct gfs2_glock_operations gfs2_rgrp_glops = { |
| 421 | .go_xmote_th = meta_go_sync, | 402 | .go_xmote_th = rgrp_go_sync, |
| 422 | .go_inval = meta_go_inval, | 403 | .go_inval = rgrp_go_inval, |
| 423 | .go_demote_ok = rgrp_go_demote_ok, | 404 | .go_demote_ok = rgrp_go_demote_ok, |
| 424 | .go_lock = rgrp_go_lock, | 405 | .go_lock = rgrp_go_lock, |
| 425 | .go_unlock = rgrp_go_unlock, | 406 | .go_unlock = rgrp_go_unlock, |
| @@ -448,7 +429,6 @@ const struct gfs2_glock_operations gfs2_nondisk_glops = { | |||
| 448 | }; | 429 | }; |
| 449 | 430 | ||
| 450 | const struct gfs2_glock_operations gfs2_quota_glops = { | 431 | const struct gfs2_glock_operations gfs2_quota_glops = { |
| 451 | .go_demote_ok = quota_go_demote_ok, | ||
| 452 | .go_type = LM_TYPE_QUOTA, | 432 | .go_type = LM_TYPE_QUOTA, |
| 453 | }; | 433 | }; |
| 454 | 434 | ||
| @@ -456,3 +436,15 @@ const struct gfs2_glock_operations gfs2_journal_glops = { | |||
| 456 | .go_type = LM_TYPE_JOURNAL, | 436 | .go_type = LM_TYPE_JOURNAL, |
| 457 | }; | 437 | }; |
| 458 | 438 | ||
| 439 | const struct gfs2_glock_operations *gfs2_glops_list[] = { | ||
| 440 | [LM_TYPE_META] = &gfs2_meta_glops, | ||
| 441 | [LM_TYPE_INODE] = &gfs2_inode_glops, | ||
| 442 | [LM_TYPE_RGRP] = &gfs2_rgrp_glops, | ||
| 443 | [LM_TYPE_NONDISK] = &gfs2_trans_glops, | ||
| 444 | [LM_TYPE_IOPEN] = &gfs2_iopen_glops, | ||
| 445 | [LM_TYPE_FLOCK] = &gfs2_flock_glops, | ||
| 446 | [LM_TYPE_NONDISK] = &gfs2_nondisk_glops, | ||
| 447 | [LM_TYPE_QUOTA] = &gfs2_quota_glops, | ||
| 448 | [LM_TYPE_JOURNAL] = &gfs2_journal_glops, | ||
| 449 | }; | ||
| 450 | |||
diff --git a/fs/gfs2/glops.h b/fs/gfs2/glops.h index a1d9b5b024e6..b3aa2e3210fd 100644 --- a/fs/gfs2/glops.h +++ b/fs/gfs2/glops.h | |||
| @@ -21,5 +21,6 @@ extern const struct gfs2_glock_operations gfs2_flock_glops; | |||
| 21 | extern const struct gfs2_glock_operations gfs2_nondisk_glops; | 21 | extern const struct gfs2_glock_operations gfs2_nondisk_glops; |
| 22 | extern const struct gfs2_glock_operations gfs2_quota_glops; | 22 | extern const struct gfs2_glock_operations gfs2_quota_glops; |
| 23 | extern const struct gfs2_glock_operations gfs2_journal_glops; | 23 | extern const struct gfs2_glock_operations gfs2_journal_glops; |
| 24 | extern const struct gfs2_glock_operations *gfs2_glops_list[]; | ||
| 24 | 25 | ||
| 25 | #endif /* __GLOPS_DOT_H__ */ | 26 | #endif /* __GLOPS_DOT_H__ */ |
diff --git a/fs/gfs2/incore.h b/fs/gfs2/incore.h index 608849d00021..399d1b978049 100644 --- a/fs/gfs2/incore.h +++ b/fs/gfs2/incore.h | |||
| @@ -12,6 +12,8 @@ | |||
| 12 | 12 | ||
| 13 | #include <linux/fs.h> | 13 | #include <linux/fs.h> |
| 14 | #include <linux/workqueue.h> | 14 | #include <linux/workqueue.h> |
| 15 | #include <linux/dlm.h> | ||
| 16 | #include <linux/buffer_head.h> | ||
| 15 | 17 | ||
| 16 | #define DIO_WAIT 0x00000010 | 18 | #define DIO_WAIT 0x00000010 |
| 17 | #define DIO_METADATA 0x00000020 | 19 | #define DIO_METADATA 0x00000020 |
| @@ -26,6 +28,7 @@ struct gfs2_trans; | |||
| 26 | struct gfs2_ail; | 28 | struct gfs2_ail; |
| 27 | struct gfs2_jdesc; | 29 | struct gfs2_jdesc; |
| 28 | struct gfs2_sbd; | 30 | struct gfs2_sbd; |
| 31 | struct lm_lockops; | ||
| 29 | 32 | ||
| 30 | typedef void (*gfs2_glop_bh_t) (struct gfs2_glock *gl, unsigned int ret); | 33 | typedef void (*gfs2_glop_bh_t) (struct gfs2_glock *gl, unsigned int ret); |
| 31 | 34 | ||
| @@ -121,6 +124,28 @@ struct gfs2_bufdata { | |||
| 121 | struct list_head bd_ail_gl_list; | 124 | struct list_head bd_ail_gl_list; |
| 122 | }; | 125 | }; |
| 123 | 126 | ||
| 127 | /* | ||
| 128 | * Internally, we prefix things with gdlm_ and GDLM_ (for gfs-dlm) since a | ||
| 129 | * prefix of lock_dlm_ gets awkward. | ||
| 130 | */ | ||
| 131 | |||
| 132 | #define GDLM_STRNAME_BYTES 25 | ||
| 133 | #define GDLM_LVB_SIZE 32 | ||
| 134 | |||
| 135 | enum { | ||
| 136 | DFL_BLOCK_LOCKS = 0, | ||
| 137 | }; | ||
| 138 | |||
| 139 | struct lm_lockname { | ||
| 140 | u64 ln_number; | ||
| 141 | unsigned int ln_type; | ||
| 142 | }; | ||
| 143 | |||
| 144 | #define lm_name_equal(name1, name2) \ | ||
| 145 | (((name1)->ln_number == (name2)->ln_number) && \ | ||
| 146 | ((name1)->ln_type == (name2)->ln_type)) | ||
| 147 | |||
| 148 | |||
| 124 | struct gfs2_glock_operations { | 149 | struct gfs2_glock_operations { |
| 125 | void (*go_xmote_th) (struct gfs2_glock *gl); | 150 | void (*go_xmote_th) (struct gfs2_glock *gl); |
| 126 | int (*go_xmote_bh) (struct gfs2_glock *gl, struct gfs2_holder *gh); | 151 | int (*go_xmote_bh) (struct gfs2_glock *gl, struct gfs2_holder *gh); |
| @@ -162,6 +187,8 @@ enum { | |||
| 162 | GLF_LFLUSH = 7, | 187 | GLF_LFLUSH = 7, |
| 163 | GLF_INVALIDATE_IN_PROGRESS = 8, | 188 | GLF_INVALIDATE_IN_PROGRESS = 8, |
| 164 | GLF_REPLY_PENDING = 9, | 189 | GLF_REPLY_PENDING = 9, |
| 190 | GLF_INITIAL = 10, | ||
| 191 | GLF_FROZEN = 11, | ||
| 165 | }; | 192 | }; |
| 166 | 193 | ||
| 167 | struct gfs2_glock { | 194 | struct gfs2_glock { |
| @@ -176,16 +203,15 @@ struct gfs2_glock { | |||
| 176 | unsigned int gl_target; | 203 | unsigned int gl_target; |
| 177 | unsigned int gl_reply; | 204 | unsigned int gl_reply; |
| 178 | unsigned int gl_hash; | 205 | unsigned int gl_hash; |
| 206 | unsigned int gl_req; | ||
| 179 | unsigned int gl_demote_state; /* state requested by remote node */ | 207 | unsigned int gl_demote_state; /* state requested by remote node */ |
| 180 | unsigned long gl_demote_time; /* time of first demote request */ | 208 | unsigned long gl_demote_time; /* time of first demote request */ |
| 181 | struct list_head gl_holders; | 209 | struct list_head gl_holders; |
| 182 | 210 | ||
| 183 | const struct gfs2_glock_operations *gl_ops; | 211 | const struct gfs2_glock_operations *gl_ops; |
| 184 | void *gl_lock; | 212 | char gl_strname[GDLM_STRNAME_BYTES]; |
| 185 | char *gl_lvb; | 213 | struct dlm_lksb gl_lksb; |
| 186 | atomic_t gl_lvb_count; | 214 | char gl_lvb[32]; |
| 187 | |||
| 188 | unsigned long gl_stamp; | ||
| 189 | unsigned long gl_tchange; | 215 | unsigned long gl_tchange; |
| 190 | void *gl_object; | 216 | void *gl_object; |
| 191 | 217 | ||
| @@ -283,7 +309,9 @@ enum { | |||
| 283 | 309 | ||
| 284 | struct gfs2_quota_data { | 310 | struct gfs2_quota_data { |
| 285 | struct list_head qd_list; | 311 | struct list_head qd_list; |
| 286 | unsigned int qd_count; | 312 | struct list_head qd_reclaim; |
| 313 | |||
| 314 | atomic_t qd_count; | ||
| 287 | 315 | ||
| 288 | u32 qd_id; | 316 | u32 qd_id; |
| 289 | unsigned long qd_flags; /* QDF_... */ | 317 | unsigned long qd_flags; /* QDF_... */ |
| @@ -303,7 +331,6 @@ struct gfs2_quota_data { | |||
| 303 | 331 | ||
| 304 | u64 qd_sync_gen; | 332 | u64 qd_sync_gen; |
| 305 | unsigned long qd_last_warn; | 333 | unsigned long qd_last_warn; |
| 306 | unsigned long qd_last_touched; | ||
| 307 | }; | 334 | }; |
| 308 | 335 | ||
| 309 | struct gfs2_trans { | 336 | struct gfs2_trans { |
| @@ -390,7 +417,7 @@ struct gfs2_args { | |||
| 390 | unsigned int ar_suiddir:1; /* suiddir support */ | 417 | unsigned int ar_suiddir:1; /* suiddir support */ |
| 391 | unsigned int ar_data:2; /* ordered/writeback */ | 418 | unsigned int ar_data:2; /* ordered/writeback */ |
| 392 | unsigned int ar_meta:1; /* mount metafs */ | 419 | unsigned int ar_meta:1; /* mount metafs */ |
| 393 | unsigned int ar_num_glockd; /* Number of glockd threads */ | 420 | unsigned int ar_discard:1; /* discard requests */ |
| 394 | }; | 421 | }; |
| 395 | 422 | ||
| 396 | struct gfs2_tune { | 423 | struct gfs2_tune { |
| @@ -406,7 +433,6 @@ struct gfs2_tune { | |||
| 406 | unsigned int gt_quota_warn_period; /* Secs between quota warn msgs */ | 433 | unsigned int gt_quota_warn_period; /* Secs between quota warn msgs */ |
| 407 | unsigned int gt_quota_scale_num; /* Numerator */ | 434 | unsigned int gt_quota_scale_num; /* Numerator */ |
| 408 | unsigned int gt_quota_scale_den; /* Denominator */ | 435 | unsigned int gt_quota_scale_den; /* Denominator */ |
| 409 | unsigned int gt_quota_cache_secs; | ||
| 410 | unsigned int gt_quota_quantum; /* Secs between syncs to quota file */ | 436 | unsigned int gt_quota_quantum; /* Secs between syncs to quota file */ |
| 411 | unsigned int gt_new_files_jdata; | 437 | unsigned int gt_new_files_jdata; |
| 412 | unsigned int gt_max_readahead; /* Max bytes to read-ahead from disk */ | 438 | unsigned int gt_max_readahead; /* Max bytes to read-ahead from disk */ |
| @@ -445,6 +471,31 @@ struct gfs2_sb_host { | |||
| 445 | 471 | ||
| 446 | char sb_lockproto[GFS2_LOCKNAME_LEN]; | 472 | char sb_lockproto[GFS2_LOCKNAME_LEN]; |
| 447 | char sb_locktable[GFS2_LOCKNAME_LEN]; | 473 | char sb_locktable[GFS2_LOCKNAME_LEN]; |
| 474 | u8 sb_uuid[16]; | ||
| 475 | }; | ||
| 476 | |||
| 477 | /* | ||
| 478 | * lm_mount() return values | ||
| 479 | * | ||
| 480 | * ls_jid - the journal ID this node should use | ||
| 481 | * ls_first - this node is the first to mount the file system | ||
| 482 | * ls_lockspace - lock module's context for this file system | ||
| 483 | * ls_ops - lock module's functions | ||
| 484 | */ | ||
| 485 | |||
| 486 | struct lm_lockstruct { | ||
| 487 | u32 ls_id; | ||
| 488 | unsigned int ls_jid; | ||
| 489 | unsigned int ls_first; | ||
| 490 | unsigned int ls_first_done; | ||
| 491 | unsigned int ls_nodir; | ||
| 492 | const struct lm_lockops *ls_ops; | ||
| 493 | unsigned long ls_flags; | ||
| 494 | dlm_lockspace_t *ls_dlm; | ||
| 495 | |||
| 496 | int ls_recover_jid; | ||
| 497 | int ls_recover_jid_done; | ||
| 498 | int ls_recover_jid_status; | ||
| 448 | }; | 499 | }; |
| 449 | 500 | ||
| 450 | struct gfs2_sbd { | 501 | struct gfs2_sbd { |
| @@ -520,7 +571,6 @@ struct gfs2_sbd { | |||
| 520 | spinlock_t sd_jindex_spin; | 571 | spinlock_t sd_jindex_spin; |
| 521 | struct mutex sd_jindex_mutex; | 572 | struct mutex sd_jindex_mutex; |
| 522 | unsigned int sd_journals; | 573 | unsigned int sd_journals; |
| 523 | unsigned long sd_jindex_refresh_time; | ||
| 524 | 574 | ||
| 525 | struct gfs2_jdesc *sd_jdesc; | 575 | struct gfs2_jdesc *sd_jdesc; |
| 526 | struct gfs2_holder sd_journal_gh; | 576 | struct gfs2_holder sd_journal_gh; |
| @@ -540,7 +590,6 @@ struct gfs2_sbd { | |||
| 540 | 590 | ||
| 541 | struct list_head sd_quota_list; | 591 | struct list_head sd_quota_list; |
| 542 | atomic_t sd_quota_count; | 592 | atomic_t sd_quota_count; |
| 543 | spinlock_t sd_quota_spin; | ||
| 544 | struct mutex sd_quota_mutex; | 593 | struct mutex sd_quota_mutex; |
| 545 | wait_queue_head_t sd_quota_wait; | 594 | wait_queue_head_t sd_quota_wait; |
| 546 | struct list_head sd_trunc_list; | 595 | struct list_head sd_trunc_list; |
diff --git a/fs/gfs2/inode.c b/fs/gfs2/inode.c index 3b87c188da41..7b277d449155 100644 --- a/fs/gfs2/inode.c +++ b/fs/gfs2/inode.c | |||
| @@ -16,7 +16,6 @@ | |||
| 16 | #include <linux/sort.h> | 16 | #include <linux/sort.h> |
| 17 | #include <linux/gfs2_ondisk.h> | 17 | #include <linux/gfs2_ondisk.h> |
| 18 | #include <linux/crc32.h> | 18 | #include <linux/crc32.h> |
| 19 | #include <linux/lm_interface.h> | ||
| 20 | #include <linux/security.h> | 19 | #include <linux/security.h> |
| 21 | #include <linux/time.h> | 20 | #include <linux/time.h> |
| 22 | 21 | ||
| @@ -137,16 +136,16 @@ void gfs2_set_iop(struct inode *inode) | |||
| 137 | 136 | ||
| 138 | if (S_ISREG(mode)) { | 137 | if (S_ISREG(mode)) { |
| 139 | inode->i_op = &gfs2_file_iops; | 138 | inode->i_op = &gfs2_file_iops; |
| 140 | if (sdp->sd_args.ar_localflocks) | 139 | if (gfs2_localflocks(sdp)) |
| 141 | inode->i_fop = &gfs2_file_fops_nolock; | 140 | inode->i_fop = gfs2_file_fops_nolock; |
| 142 | else | 141 | else |
| 143 | inode->i_fop = &gfs2_file_fops; | 142 | inode->i_fop = gfs2_file_fops; |
| 144 | } else if (S_ISDIR(mode)) { | 143 | } else if (S_ISDIR(mode)) { |
| 145 | inode->i_op = &gfs2_dir_iops; | 144 | inode->i_op = &gfs2_dir_iops; |
| 146 | if (sdp->sd_args.ar_localflocks) | 145 | if (gfs2_localflocks(sdp)) |
| 147 | inode->i_fop = &gfs2_dir_fops_nolock; | 146 | inode->i_fop = gfs2_dir_fops_nolock; |
| 148 | else | 147 | else |
| 149 | inode->i_fop = &gfs2_dir_fops; | 148 | inode->i_fop = gfs2_dir_fops; |
| 150 | } else if (S_ISLNK(mode)) { | 149 | } else if (S_ISLNK(mode)) { |
| 151 | inode->i_op = &gfs2_symlink_iops; | 150 | inode->i_op = &gfs2_symlink_iops; |
| 152 | } else { | 151 | } else { |
diff --git a/fs/gfs2/inode.h b/fs/gfs2/inode.h index d5329364cdff..dca4fee3078b 100644 --- a/fs/gfs2/inode.h +++ b/fs/gfs2/inode.h | |||
| @@ -101,12 +101,26 @@ void gfs2_dinode_print(const struct gfs2_inode *ip); | |||
| 101 | extern const struct inode_operations gfs2_file_iops; | 101 | extern const struct inode_operations gfs2_file_iops; |
| 102 | extern const struct inode_operations gfs2_dir_iops; | 102 | extern const struct inode_operations gfs2_dir_iops; |
| 103 | extern const struct inode_operations gfs2_symlink_iops; | 103 | extern const struct inode_operations gfs2_symlink_iops; |
| 104 | extern const struct file_operations gfs2_file_fops; | 104 | extern const struct file_operations *gfs2_file_fops_nolock; |
| 105 | extern const struct file_operations gfs2_dir_fops; | 105 | extern const struct file_operations *gfs2_dir_fops_nolock; |
| 106 | extern const struct file_operations gfs2_file_fops_nolock; | ||
| 107 | extern const struct file_operations gfs2_dir_fops_nolock; | ||
| 108 | 106 | ||
| 109 | extern void gfs2_set_inode_flags(struct inode *inode); | 107 | extern void gfs2_set_inode_flags(struct inode *inode); |
| 108 | |||
| 109 | #ifdef CONFIG_GFS2_FS_LOCKING_DLM | ||
| 110 | extern const struct file_operations *gfs2_file_fops; | ||
| 111 | extern const struct file_operations *gfs2_dir_fops; | ||
| 112 | static inline int gfs2_localflocks(const struct gfs2_sbd *sdp) | ||
| 113 | { | ||
| 114 | return sdp->sd_args.ar_localflocks; | ||
| 115 | } | ||
| 116 | #else /* Single node only */ | ||
| 117 | #define gfs2_file_fops NULL | ||
| 118 | #define gfs2_dir_fops NULL | ||
| 119 | static inline int gfs2_localflocks(const struct gfs2_sbd *sdp) | ||
| 120 | { | ||
| 121 | return 1; | ||
| 122 | } | ||
| 123 | #endif /* CONFIG_GFS2_FS_LOCKING_DLM */ | ||
| 110 | 124 | ||
| 111 | #endif /* __INODE_DOT_H__ */ | 125 | #endif /* __INODE_DOT_H__ */ |
| 112 | 126 | ||
diff --git a/fs/gfs2/lock_dlm.c b/fs/gfs2/lock_dlm.c new file mode 100644 index 000000000000..46df988323bc --- /dev/null +++ b/fs/gfs2/lock_dlm.c | |||
| @@ -0,0 +1,241 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. | ||
| 3 | * Copyright (C) 2004-2009 Red Hat, Inc. All rights reserved. | ||
| 4 | * | ||
| 5 | * This copyrighted material is made available to anyone wishing to use, | ||
| 6 | * modify, copy, or redistribute it subject to the terms and conditions | ||
| 7 | * of the GNU General Public License version 2. | ||
| 8 | */ | ||
| 9 | |||
| 10 | #include <linux/fs.h> | ||
| 11 | #include <linux/dlm.h> | ||
| 12 | #include <linux/types.h> | ||
| 13 | #include <linux/gfs2_ondisk.h> | ||
| 14 | |||
| 15 | #include "incore.h" | ||
| 16 | #include "glock.h" | ||
| 17 | #include "util.h" | ||
| 18 | |||
| 19 | |||
| 20 | static void gdlm_ast(void *arg) | ||
| 21 | { | ||
| 22 | struct gfs2_glock *gl = arg; | ||
| 23 | unsigned ret = gl->gl_state; | ||
| 24 | |||
| 25 | BUG_ON(gl->gl_lksb.sb_flags & DLM_SBF_DEMOTED); | ||
| 26 | |||
| 27 | if (gl->gl_lksb.sb_flags & DLM_SBF_VALNOTVALID) | ||
| 28 | memset(gl->gl_lvb, 0, GDLM_LVB_SIZE); | ||
| 29 | |||
| 30 | switch (gl->gl_lksb.sb_status) { | ||
| 31 | case -DLM_EUNLOCK: /* Unlocked, so glock can be freed */ | ||
| 32 | kmem_cache_free(gfs2_glock_cachep, gl); | ||
| 33 | return; | ||
| 34 | case -DLM_ECANCEL: /* Cancel while getting lock */ | ||
| 35 | ret |= LM_OUT_CANCELED; | ||
| 36 | goto out; | ||
| 37 | case -EAGAIN: /* Try lock fails */ | ||
| 38 | goto out; | ||
| 39 | case -EINVAL: /* Invalid */ | ||
| 40 | case -ENOMEM: /* Out of memory */ | ||
| 41 | ret |= LM_OUT_ERROR; | ||
| 42 | goto out; | ||
| 43 | case 0: /* Success */ | ||
| 44 | break; | ||
| 45 | default: /* Something unexpected */ | ||
| 46 | BUG(); | ||
| 47 | } | ||
| 48 | |||
| 49 | ret = gl->gl_req; | ||
| 50 | if (gl->gl_lksb.sb_flags & DLM_SBF_ALTMODE) { | ||
| 51 | if (gl->gl_req == LM_ST_SHARED) | ||
| 52 | ret = LM_ST_DEFERRED; | ||
| 53 | else if (gl->gl_req == LM_ST_DEFERRED) | ||
| 54 | ret = LM_ST_SHARED; | ||
| 55 | else | ||
| 56 | BUG(); | ||
| 57 | } | ||
| 58 | |||
| 59 | set_bit(GLF_INITIAL, &gl->gl_flags); | ||
| 60 | gfs2_glock_complete(gl, ret); | ||
| 61 | return; | ||
| 62 | out: | ||
| 63 | if (!test_bit(GLF_INITIAL, &gl->gl_flags)) | ||
| 64 | gl->gl_lksb.sb_lkid = 0; | ||
| 65 | gfs2_glock_complete(gl, ret); | ||
| 66 | } | ||
| 67 | |||
| 68 | static void gdlm_bast(void *arg, int mode) | ||
| 69 | { | ||
| 70 | struct gfs2_glock *gl = arg; | ||
| 71 | |||
| 72 | switch (mode) { | ||
| 73 | case DLM_LOCK_EX: | ||
| 74 | gfs2_glock_cb(gl, LM_ST_UNLOCKED); | ||
| 75 | break; | ||
| 76 | case DLM_LOCK_CW: | ||
| 77 | gfs2_glock_cb(gl, LM_ST_DEFERRED); | ||
| 78 | break; | ||
| 79 | case DLM_LOCK_PR: | ||
| 80 | gfs2_glock_cb(gl, LM_ST_SHARED); | ||
| 81 | break; | ||
| 82 | default: | ||
| 83 | printk(KERN_ERR "unknown bast mode %d", mode); | ||
| 84 | BUG(); | ||
| 85 | } | ||
| 86 | } | ||
| 87 | |||
| 88 | /* convert gfs lock-state to dlm lock-mode */ | ||
| 89 | |||
| 90 | static int make_mode(const unsigned int lmstate) | ||
| 91 | { | ||
| 92 | switch (lmstate) { | ||
| 93 | case LM_ST_UNLOCKED: | ||
| 94 | return DLM_LOCK_NL; | ||
| 95 | case LM_ST_EXCLUSIVE: | ||
| 96 | return DLM_LOCK_EX; | ||
| 97 | case LM_ST_DEFERRED: | ||
| 98 | return DLM_LOCK_CW; | ||
| 99 | case LM_ST_SHARED: | ||
| 100 | return DLM_LOCK_PR; | ||
| 101 | } | ||
| 102 | printk(KERN_ERR "unknown LM state %d", lmstate); | ||
| 103 | BUG(); | ||
| 104 | return -1; | ||
| 105 | } | ||
| 106 | |||
| 107 | static u32 make_flags(const u32 lkid, const unsigned int gfs_flags, | ||
| 108 | const int req) | ||
| 109 | { | ||
| 110 | u32 lkf = 0; | ||
| 111 | |||
| 112 | if (gfs_flags & LM_FLAG_TRY) | ||
| 113 | lkf |= DLM_LKF_NOQUEUE; | ||
| 114 | |||
| 115 | if (gfs_flags & LM_FLAG_TRY_1CB) { | ||
| 116 | lkf |= DLM_LKF_NOQUEUE; | ||
| 117 | lkf |= DLM_LKF_NOQUEUEBAST; | ||
| 118 | } | ||
| 119 | |||
| 120 | if (gfs_flags & LM_FLAG_PRIORITY) { | ||
| 121 | lkf |= DLM_LKF_NOORDER; | ||
| 122 | lkf |= DLM_LKF_HEADQUE; | ||
| 123 | } | ||
| 124 | |||
| 125 | if (gfs_flags & LM_FLAG_ANY) { | ||
| 126 | if (req == DLM_LOCK_PR) | ||
| 127 | lkf |= DLM_LKF_ALTCW; | ||
| 128 | else if (req == DLM_LOCK_CW) | ||
| 129 | lkf |= DLM_LKF_ALTPR; | ||
| 130 | else | ||
| 131 | BUG(); | ||
| 132 | } | ||
| 133 | |||
| 134 | if (lkid != 0) | ||
| 135 | lkf |= DLM_LKF_CONVERT; | ||
| 136 | |||
| 137 | lkf |= DLM_LKF_VALBLK; | ||
| 138 | |||
| 139 | return lkf; | ||
| 140 | } | ||
| 141 | |||
| 142 | static unsigned int gdlm_lock(struct gfs2_glock *gl, | ||
| 143 | unsigned int req_state, unsigned int flags) | ||
| 144 | { | ||
| 145 | struct lm_lockstruct *ls = &gl->gl_sbd->sd_lockstruct; | ||
| 146 | int error; | ||
| 147 | int req; | ||
| 148 | u32 lkf; | ||
| 149 | |||
| 150 | gl->gl_req = req_state; | ||
| 151 | req = make_mode(req_state); | ||
| 152 | lkf = make_flags(gl->gl_lksb.sb_lkid, flags, req); | ||
| 153 | |||
| 154 | /* | ||
| 155 | * Submit the actual lock request. | ||
| 156 | */ | ||
| 157 | |||
| 158 | error = dlm_lock(ls->ls_dlm, req, &gl->gl_lksb, lkf, gl->gl_strname, | ||
| 159 | GDLM_STRNAME_BYTES - 1, 0, gdlm_ast, gl, gdlm_bast); | ||
| 160 | if (error == -EAGAIN) | ||
| 161 | return 0; | ||
| 162 | if (error) | ||
| 163 | return LM_OUT_ERROR; | ||
| 164 | return LM_OUT_ASYNC; | ||
| 165 | } | ||
| 166 | |||
| 167 | static void gdlm_put_lock(struct kmem_cache *cachep, void *ptr) | ||
| 168 | { | ||
| 169 | struct gfs2_glock *gl = ptr; | ||
| 170 | struct lm_lockstruct *ls = &gl->gl_sbd->sd_lockstruct; | ||
| 171 | int error; | ||
| 172 | |||
| 173 | if (gl->gl_lksb.sb_lkid == 0) { | ||
| 174 | kmem_cache_free(cachep, gl); | ||
| 175 | return; | ||
| 176 | } | ||
| 177 | |||
| 178 | error = dlm_unlock(ls->ls_dlm, gl->gl_lksb.sb_lkid, DLM_LKF_VALBLK, | ||
| 179 | NULL, gl); | ||
| 180 | if (error) { | ||
| 181 | printk(KERN_ERR "gdlm_unlock %x,%llx err=%d\n", | ||
| 182 | gl->gl_name.ln_type, | ||
| 183 | (unsigned long long)gl->gl_name.ln_number, error); | ||
| 184 | return; | ||
| 185 | } | ||
| 186 | } | ||
| 187 | |||
| 188 | static void gdlm_cancel(struct gfs2_glock *gl) | ||
| 189 | { | ||
| 190 | struct lm_lockstruct *ls = &gl->gl_sbd->sd_lockstruct; | ||
| 191 | dlm_unlock(ls->ls_dlm, gl->gl_lksb.sb_lkid, DLM_LKF_CANCEL, NULL, gl); | ||
| 192 | } | ||
| 193 | |||
| 194 | static int gdlm_mount(struct gfs2_sbd *sdp, const char *fsname) | ||
| 195 | { | ||
| 196 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; | ||
| 197 | int error; | ||
| 198 | |||
| 199 | if (fsname == NULL) { | ||
| 200 | fs_info(sdp, "no fsname found\n"); | ||
| 201 | return -EINVAL; | ||
| 202 | } | ||
| 203 | |||
| 204 | error = dlm_new_lockspace(fsname, strlen(fsname), &ls->ls_dlm, | ||
| 205 | DLM_LSFL_FS | DLM_LSFL_NEWEXCL | | ||
| 206 | (ls->ls_nodir ? DLM_LSFL_NODIR : 0), | ||
| 207 | GDLM_LVB_SIZE); | ||
| 208 | if (error) | ||
| 209 | printk(KERN_ERR "dlm_new_lockspace error %d", error); | ||
| 210 | |||
| 211 | return error; | ||
| 212 | } | ||
| 213 | |||
| 214 | static void gdlm_unmount(struct gfs2_sbd *sdp) | ||
| 215 | { | ||
| 216 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; | ||
| 217 | |||
| 218 | if (ls->ls_dlm) { | ||
| 219 | dlm_release_lockspace(ls->ls_dlm, 2); | ||
| 220 | ls->ls_dlm = NULL; | ||
| 221 | } | ||
| 222 | } | ||
| 223 | |||
| 224 | static const match_table_t dlm_tokens = { | ||
| 225 | { Opt_jid, "jid=%d"}, | ||
| 226 | { Opt_id, "id=%d"}, | ||
| 227 | { Opt_first, "first=%d"}, | ||
| 228 | { Opt_nodir, "nodir=%d"}, | ||
| 229 | { Opt_err, NULL }, | ||
| 230 | }; | ||
| 231 | |||
| 232 | const struct lm_lockops gfs2_dlm_ops = { | ||
| 233 | .lm_proto_name = "lock_dlm", | ||
| 234 | .lm_mount = gdlm_mount, | ||
| 235 | .lm_unmount = gdlm_unmount, | ||
| 236 | .lm_put_lock = gdlm_put_lock, | ||
| 237 | .lm_lock = gdlm_lock, | ||
| 238 | .lm_cancel = gdlm_cancel, | ||
| 239 | .lm_tokens = &dlm_tokens, | ||
| 240 | }; | ||
| 241 | |||
diff --git a/fs/gfs2/locking.c b/fs/gfs2/locking.c deleted file mode 100644 index 523243a13a21..000000000000 --- a/fs/gfs2/locking.c +++ /dev/null | |||
| @@ -1,232 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. | ||
| 3 | * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved. | ||
| 4 | * | ||
| 5 | * This copyrighted material is made available to anyone wishing to use, | ||
| 6 | * modify, copy, or redistribute it subject to the terms and conditions | ||
| 7 | * of the GNU General Public License version 2. | ||
| 8 | */ | ||
| 9 | |||
| 10 | #include <linux/module.h> | ||
| 11 | #include <linux/init.h> | ||
| 12 | #include <linux/string.h> | ||
| 13 | #include <linux/slab.h> | ||
| 14 | #include <linux/wait.h> | ||
| 15 | #include <linux/sched.h> | ||
| 16 | #include <linux/kmod.h> | ||
| 17 | #include <linux/fs.h> | ||
| 18 | #include <linux/delay.h> | ||
| 19 | #include <linux/lm_interface.h> | ||
| 20 | |||
| 21 | struct lmh_wrapper { | ||
| 22 | struct list_head lw_list; | ||
| 23 | const struct lm_lockops *lw_ops; | ||
| 24 | }; | ||
| 25 | |||
| 26 | static int nolock_mount(char *table_name, char *host_data, | ||
| 27 | lm_callback_t cb, void *cb_data, | ||
| 28 | unsigned int min_lvb_size, int flags, | ||
| 29 | struct lm_lockstruct *lockstruct, | ||
| 30 | struct kobject *fskobj); | ||
| 31 | |||
| 32 | /* List of registered low-level locking protocols. A file system selects one | ||
| 33 | of them by name at mount time, e.g. lock_nolock, lock_dlm. */ | ||
| 34 | |||
| 35 | static const struct lm_lockops nolock_ops = { | ||
| 36 | .lm_proto_name = "lock_nolock", | ||
| 37 | .lm_mount = nolock_mount, | ||
| 38 | }; | ||
| 39 | |||
| 40 | static struct lmh_wrapper nolock_proto = { | ||
| 41 | .lw_list = LIST_HEAD_INIT(nolock_proto.lw_list), | ||
| 42 | .lw_ops = &nolock_ops, | ||
| 43 | }; | ||
| 44 | |||
| 45 | static LIST_HEAD(lmh_list); | ||
| 46 | static DEFINE_MUTEX(lmh_lock); | ||
| 47 | |||
| 48 | static int nolock_mount(char *table_name, char *host_data, | ||
| 49 | lm_callback_t cb, void *cb_data, | ||
| 50 | unsigned int min_lvb_size, int flags, | ||
| 51 | struct lm_lockstruct *lockstruct, | ||
| 52 | struct kobject *fskobj) | ||
| 53 | { | ||
| 54 | char *c; | ||
| 55 | unsigned int jid; | ||
| 56 | |||
| 57 | c = strstr(host_data, "jid="); | ||
| 58 | if (!c) | ||
| 59 | jid = 0; | ||
| 60 | else { | ||
| 61 | c += 4; | ||
| 62 | sscanf(c, "%u", &jid); | ||
| 63 | } | ||
| 64 | |||
| 65 | lockstruct->ls_jid = jid; | ||
| 66 | lockstruct->ls_first = 1; | ||
| 67 | lockstruct->ls_lvb_size = min_lvb_size; | ||
| 68 | lockstruct->ls_ops = &nolock_ops; | ||
| 69 | lockstruct->ls_flags = LM_LSFLAG_LOCAL; | ||
| 70 | |||
| 71 | return 0; | ||
| 72 | } | ||
| 73 | |||
| 74 | /** | ||
| 75 | * gfs2_register_lockproto - Register a low-level locking protocol | ||
| 76 | * @proto: the protocol definition | ||
| 77 | * | ||
| 78 | * Returns: 0 on success, -EXXX on failure | ||
| 79 | */ | ||
| 80 | |||
| 81 | int gfs2_register_lockproto(const struct lm_lockops *proto) | ||
| 82 | { | ||
| 83 | struct lmh_wrapper *lw; | ||
| 84 | |||
| 85 | mutex_lock(&lmh_lock); | ||
| 86 | |||
| 87 | list_for_each_entry(lw, &lmh_list, lw_list) { | ||
| 88 | if (!strcmp(lw->lw_ops->lm_proto_name, proto->lm_proto_name)) { | ||
| 89 | mutex_unlock(&lmh_lock); | ||
| 90 | printk(KERN_INFO "GFS2: protocol %s already exists\n", | ||
| 91 | proto->lm_proto_name); | ||
| 92 | return -EEXIST; | ||
| 93 | } | ||
| 94 | } | ||
| 95 | |||
| 96 | lw = kzalloc(sizeof(struct lmh_wrapper), GFP_KERNEL); | ||
| 97 | if (!lw) { | ||
| 98 | mutex_unlock(&lmh_lock); | ||
| 99 | return -ENOMEM; | ||
| 100 | } | ||
| 101 | |||
| 102 | lw->lw_ops = proto; | ||
| 103 | list_add(&lw->lw_list, &lmh_list); | ||
| 104 | |||
| 105 | mutex_unlock(&lmh_lock); | ||
| 106 | |||
| 107 | return 0; | ||
| 108 | } | ||
| 109 | |||
| 110 | /** | ||
| 111 | * gfs2_unregister_lockproto - Unregister a low-level locking protocol | ||
| 112 | * @proto: the protocol definition | ||
| 113 | * | ||
| 114 | */ | ||
| 115 | |||
| 116 | void gfs2_unregister_lockproto(const struct lm_lockops *proto) | ||
| 117 | { | ||
| 118 | struct lmh_wrapper *lw; | ||
| 119 | |||
| 120 | mutex_lock(&lmh_lock); | ||
| 121 | |||
| 122 | list_for_each_entry(lw, &lmh_list, lw_list) { | ||
| 123 | if (!strcmp(lw->lw_ops->lm_proto_name, proto->lm_proto_name)) { | ||
| 124 | list_del(&lw->lw_list); | ||
| 125 | mutex_unlock(&lmh_lock); | ||
| 126 | kfree(lw); | ||
| 127 | return; | ||
| 128 | } | ||
| 129 | } | ||
| 130 | |||
| 131 | mutex_unlock(&lmh_lock); | ||
| 132 | |||
| 133 | printk(KERN_WARNING "GFS2: can't unregister lock protocol %s\n", | ||
| 134 | proto->lm_proto_name); | ||
| 135 | } | ||
| 136 | |||
| 137 | /** | ||
| 138 | * gfs2_mount_lockproto - Mount a lock protocol | ||
| 139 | * @proto_name - the name of the protocol | ||
| 140 | * @table_name - the name of the lock space | ||
| 141 | * @host_data - data specific to this host | ||
| 142 | * @cb - the callback to the code using the lock module | ||
| 143 | * @sdp - The GFS2 superblock | ||
| 144 | * @min_lvb_size - the mininum LVB size that the caller can deal with | ||
| 145 | * @flags - LM_MFLAG_* | ||
| 146 | * @lockstruct - a structure returned describing the mount | ||
| 147 | * | ||
| 148 | * Returns: 0 on success, -EXXX on failure | ||
| 149 | */ | ||
| 150 | |||
| 151 | int gfs2_mount_lockproto(char *proto_name, char *table_name, char *host_data, | ||
| 152 | lm_callback_t cb, void *cb_data, | ||
| 153 | unsigned int min_lvb_size, int flags, | ||
| 154 | struct lm_lockstruct *lockstruct, | ||
| 155 | struct kobject *fskobj) | ||
| 156 | { | ||
| 157 | struct lmh_wrapper *lw = NULL; | ||
| 158 | int try = 0; | ||
| 159 | int error, found; | ||
| 160 | |||
| 161 | |||
| 162 | retry: | ||
| 163 | mutex_lock(&lmh_lock); | ||
| 164 | |||
| 165 | if (list_empty(&nolock_proto.lw_list)) | ||
| 166 | list_add(&nolock_proto.lw_list, &lmh_list); | ||
| 167 | |||
| 168 | found = 0; | ||
| 169 | list_for_each_entry(lw, &lmh_list, lw_list) { | ||
| 170 | if (!strcmp(lw->lw_ops->lm_proto_name, proto_name)) { | ||
| 171 | found = 1; | ||
| 172 | break; | ||
| 173 | } | ||
| 174 | } | ||
| 175 | |||
| 176 | if (!found) { | ||
| 177 | if (!try && capable(CAP_SYS_MODULE)) { | ||
| 178 | try = 1; | ||
| 179 | mutex_unlock(&lmh_lock); | ||
| 180 | request_module(proto_name); | ||
| 181 | goto retry; | ||
| 182 | } | ||
| 183 | printk(KERN_INFO "GFS2: can't find protocol %s\n", proto_name); | ||
| 184 | error = -ENOENT; | ||
| 185 | goto out; | ||
| 186 | } | ||
| 187 | |||
| 188 | if (lw->lw_ops->lm_owner && | ||
| 189 | !try_module_get(lw->lw_ops->lm_owner)) { | ||
| 190 | try = 0; | ||
| 191 | mutex_unlock(&lmh_lock); | ||
| 192 | msleep(1000); | ||
| 193 | goto retry; | ||
| 194 | } | ||
| 195 | |||
| 196 | error = lw->lw_ops->lm_mount(table_name, host_data, cb, cb_data, | ||
| 197 | min_lvb_size, flags, lockstruct, fskobj); | ||
| 198 | if (error) | ||
| 199 | module_put(lw->lw_ops->lm_owner); | ||
| 200 | out: | ||
| 201 | mutex_unlock(&lmh_lock); | ||
| 202 | return error; | ||
| 203 | } | ||
| 204 | |||
| 205 | void gfs2_unmount_lockproto(struct lm_lockstruct *lockstruct) | ||
| 206 | { | ||
| 207 | mutex_lock(&lmh_lock); | ||
| 208 | if (lockstruct->ls_ops->lm_unmount) | ||
| 209 | lockstruct->ls_ops->lm_unmount(lockstruct->ls_lockspace); | ||
| 210 | if (lockstruct->ls_ops->lm_owner) | ||
| 211 | module_put(lockstruct->ls_ops->lm_owner); | ||
| 212 | mutex_unlock(&lmh_lock); | ||
| 213 | } | ||
| 214 | |||
| 215 | /** | ||
| 216 | * gfs2_withdraw_lockproto - abnormally unmount a lock module | ||
| 217 | * @lockstruct: the lockstruct passed into mount | ||
| 218 | * | ||
| 219 | */ | ||
| 220 | |||
| 221 | void gfs2_withdraw_lockproto(struct lm_lockstruct *lockstruct) | ||
| 222 | { | ||
| 223 | mutex_lock(&lmh_lock); | ||
| 224 | lockstruct->ls_ops->lm_withdraw(lockstruct->ls_lockspace); | ||
| 225 | if (lockstruct->ls_ops->lm_owner) | ||
| 226 | module_put(lockstruct->ls_ops->lm_owner); | ||
| 227 | mutex_unlock(&lmh_lock); | ||
| 228 | } | ||
| 229 | |||
| 230 | EXPORT_SYMBOL_GPL(gfs2_register_lockproto); | ||
| 231 | EXPORT_SYMBOL_GPL(gfs2_unregister_lockproto); | ||
| 232 | |||
diff --git a/fs/gfs2/locking/dlm/Makefile b/fs/gfs2/locking/dlm/Makefile deleted file mode 100644 index 2609bb6cd013..000000000000 --- a/fs/gfs2/locking/dlm/Makefile +++ /dev/null | |||
| @@ -1,3 +0,0 @@ | |||
| 1 | obj-$(CONFIG_GFS2_FS_LOCKING_DLM) += lock_dlm.o | ||
| 2 | lock_dlm-y := lock.o main.o mount.o sysfs.o thread.o | ||
| 3 | |||
diff --git a/fs/gfs2/locking/dlm/lock.c b/fs/gfs2/locking/dlm/lock.c deleted file mode 100644 index 2482c9047505..000000000000 --- a/fs/gfs2/locking/dlm/lock.c +++ /dev/null | |||
| @@ -1,708 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. | ||
| 3 | * Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved. | ||
| 4 | * | ||
| 5 | * This copyrighted material is made available to anyone wishing to use, | ||
| 6 | * modify, copy, or redistribute it subject to the terms and conditions | ||
| 7 | * of the GNU General Public License version 2. | ||
| 8 | */ | ||
| 9 | |||
| 10 | #include "lock_dlm.h" | ||
| 11 | |||
| 12 | static char junk_lvb[GDLM_LVB_SIZE]; | ||
| 13 | |||
| 14 | |||
| 15 | /* convert dlm lock-mode to gfs lock-state */ | ||
| 16 | |||
| 17 | static s16 gdlm_make_lmstate(s16 dlmmode) | ||
| 18 | { | ||
| 19 | switch (dlmmode) { | ||
| 20 | case DLM_LOCK_IV: | ||
| 21 | case DLM_LOCK_NL: | ||
| 22 | return LM_ST_UNLOCKED; | ||
| 23 | case DLM_LOCK_EX: | ||
| 24 | return LM_ST_EXCLUSIVE; | ||
| 25 | case DLM_LOCK_CW: | ||
| 26 | return LM_ST_DEFERRED; | ||
| 27 | case DLM_LOCK_PR: | ||
| 28 | return LM_ST_SHARED; | ||
| 29 | } | ||
| 30 | gdlm_assert(0, "unknown DLM mode %d", dlmmode); | ||
| 31 | return -1; | ||
| 32 | } | ||
| 33 | |||
| 34 | /* A lock placed on this queue is re-submitted to DLM as soon as the lock_dlm | ||
| 35 | thread gets to it. */ | ||
| 36 | |||
| 37 | static void queue_submit(struct gdlm_lock *lp) | ||
| 38 | { | ||
| 39 | struct gdlm_ls *ls = lp->ls; | ||
| 40 | |||
| 41 | spin_lock(&ls->async_lock); | ||
| 42 | list_add_tail(&lp->delay_list, &ls->submit); | ||
| 43 | spin_unlock(&ls->async_lock); | ||
| 44 | wake_up(&ls->thread_wait); | ||
| 45 | } | ||
| 46 | |||
| 47 | static void wake_up_ast(struct gdlm_lock *lp) | ||
| 48 | { | ||
| 49 | clear_bit(LFL_AST_WAIT, &lp->flags); | ||
| 50 | smp_mb__after_clear_bit(); | ||
| 51 | wake_up_bit(&lp->flags, LFL_AST_WAIT); | ||
| 52 | } | ||
| 53 | |||
| 54 | static void gdlm_delete_lp(struct gdlm_lock *lp) | ||
| 55 | { | ||
| 56 | struct gdlm_ls *ls = lp->ls; | ||
| 57 | |||
| 58 | spin_lock(&ls->async_lock); | ||
| 59 | if (!list_empty(&lp->delay_list)) | ||
| 60 | list_del_init(&lp->delay_list); | ||
| 61 | ls->all_locks_count--; | ||
| 62 | spin_unlock(&ls->async_lock); | ||
| 63 | |||
| 64 | kfree(lp); | ||
| 65 | } | ||
| 66 | |||
| 67 | static void gdlm_queue_delayed(struct gdlm_lock *lp) | ||
| 68 | { | ||
| 69 | struct gdlm_ls *ls = lp->ls; | ||
| 70 | |||
| 71 | spin_lock(&ls->async_lock); | ||
| 72 | list_add_tail(&lp->delay_list, &ls->delayed); | ||
| 73 | spin_unlock(&ls->async_lock); | ||
| 74 | } | ||
| 75 | |||
| 76 | static void process_complete(struct gdlm_lock *lp) | ||
| 77 | { | ||
| 78 | struct gdlm_ls *ls = lp->ls; | ||
| 79 | struct lm_async_cb acb; | ||
| 80 | |||
| 81 | memset(&acb, 0, sizeof(acb)); | ||
| 82 | |||
| 83 | if (lp->lksb.sb_status == -DLM_ECANCEL) { | ||
| 84 | log_info("complete dlm cancel %x,%llx flags %lx", | ||
| 85 | lp->lockname.ln_type, | ||
| 86 | (unsigned long long)lp->lockname.ln_number, | ||
| 87 | lp->flags); | ||
| 88 | |||
| 89 | lp->req = lp->cur; | ||
| 90 | acb.lc_ret |= LM_OUT_CANCELED; | ||
| 91 | if (lp->cur == DLM_LOCK_IV) | ||
| 92 | lp->lksb.sb_lkid = 0; | ||
| 93 | goto out; | ||
| 94 | } | ||
| 95 | |||
| 96 | if (test_and_clear_bit(LFL_DLM_UNLOCK, &lp->flags)) { | ||
| 97 | if (lp->lksb.sb_status != -DLM_EUNLOCK) { | ||
| 98 | log_info("unlock sb_status %d %x,%llx flags %lx", | ||
| 99 | lp->lksb.sb_status, lp->lockname.ln_type, | ||
| 100 | (unsigned long long)lp->lockname.ln_number, | ||
| 101 | lp->flags); | ||
| 102 | return; | ||
| 103 | } | ||
| 104 | |||
| 105 | lp->cur = DLM_LOCK_IV; | ||
| 106 | lp->req = DLM_LOCK_IV; | ||
| 107 | lp->lksb.sb_lkid = 0; | ||
| 108 | |||
| 109 | if (test_and_clear_bit(LFL_UNLOCK_DELETE, &lp->flags)) { | ||
| 110 | gdlm_delete_lp(lp); | ||
| 111 | return; | ||
| 112 | } | ||
| 113 | goto out; | ||
| 114 | } | ||
| 115 | |||
| 116 | if (lp->lksb.sb_flags & DLM_SBF_VALNOTVALID) | ||
| 117 | memset(lp->lksb.sb_lvbptr, 0, GDLM_LVB_SIZE); | ||
| 118 | |||
| 119 | if (lp->lksb.sb_flags & DLM_SBF_ALTMODE) { | ||
| 120 | if (lp->req == DLM_LOCK_PR) | ||
| 121 | lp->req = DLM_LOCK_CW; | ||
| 122 | else if (lp->req == DLM_LOCK_CW) | ||
| 123 | lp->req = DLM_LOCK_PR; | ||
| 124 | } | ||
| 125 | |||
| 126 | /* | ||
| 127 | * A canceled lock request. The lock was just taken off the delayed | ||
| 128 | * list and was never even submitted to dlm. | ||
| 129 | */ | ||
| 130 | |||
| 131 | if (test_and_clear_bit(LFL_CANCEL, &lp->flags)) { | ||
| 132 | log_info("complete internal cancel %x,%llx", | ||
| 133 | lp->lockname.ln_type, | ||
| 134 | (unsigned long long)lp->lockname.ln_number); | ||
| 135 | lp->req = lp->cur; | ||
| 136 | acb.lc_ret |= LM_OUT_CANCELED; | ||
| 137 | goto out; | ||
| 138 | } | ||
| 139 | |||
| 140 | /* | ||
| 141 | * An error occured. | ||
| 142 | */ | ||
| 143 | |||
| 144 | if (lp->lksb.sb_status) { | ||
| 145 | /* a "normal" error */ | ||
| 146 | if ((lp->lksb.sb_status == -EAGAIN) && | ||
| 147 | (lp->lkf & DLM_LKF_NOQUEUE)) { | ||
| 148 | lp->req = lp->cur; | ||
| 149 | if (lp->cur == DLM_LOCK_IV) | ||
| 150 | lp->lksb.sb_lkid = 0; | ||
| 151 | goto out; | ||
| 152 | } | ||
| 153 | |||
| 154 | /* this could only happen with cancels I think */ | ||
| 155 | log_info("ast sb_status %d %x,%llx flags %lx", | ||
| 156 | lp->lksb.sb_status, lp->lockname.ln_type, | ||
| 157 | (unsigned long long)lp->lockname.ln_number, | ||
| 158 | lp->flags); | ||
| 159 | return; | ||
| 160 | } | ||
| 161 | |||
| 162 | /* | ||
| 163 | * This is an AST for an EX->EX conversion for sync_lvb from GFS. | ||
| 164 | */ | ||
| 165 | |||
| 166 | if (test_and_clear_bit(LFL_SYNC_LVB, &lp->flags)) { | ||
| 167 | wake_up_ast(lp); | ||
| 168 | return; | ||
| 169 | } | ||
| 170 | |||
| 171 | /* | ||
| 172 | * A lock has been demoted to NL because it initially completed during | ||
| 173 | * BLOCK_LOCKS. Now it must be requested in the originally requested | ||
| 174 | * mode. | ||
| 175 | */ | ||
| 176 | |||
| 177 | if (test_and_clear_bit(LFL_REREQUEST, &lp->flags)) { | ||
| 178 | gdlm_assert(lp->req == DLM_LOCK_NL, "%x,%llx", | ||
| 179 | lp->lockname.ln_type, | ||
| 180 | (unsigned long long)lp->lockname.ln_number); | ||
| 181 | gdlm_assert(lp->prev_req > DLM_LOCK_NL, "%x,%llx", | ||
| 182 | lp->lockname.ln_type, | ||
| 183 | (unsigned long long)lp->lockname.ln_number); | ||
| 184 | |||
| 185 | lp->cur = DLM_LOCK_NL; | ||
| 186 | lp->req = lp->prev_req; | ||
| 187 | lp->prev_req = DLM_LOCK_IV; | ||
| 188 | lp->lkf &= ~DLM_LKF_CONVDEADLK; | ||
| 189 | |||
| 190 | set_bit(LFL_NOCACHE, &lp->flags); | ||
| 191 | |||
| 192 | if (test_bit(DFL_BLOCK_LOCKS, &ls->flags) && | ||
| 193 | !test_bit(LFL_NOBLOCK, &lp->flags)) | ||
| 194 | gdlm_queue_delayed(lp); | ||
| 195 | else | ||
| 196 | queue_submit(lp); | ||
| 197 | return; | ||
| 198 | } | ||
| 199 | |||
| 200 | /* | ||
| 201 | * A request is granted during dlm recovery. It may be granted | ||
| 202 | * because the locks of a failed node were cleared. In that case, | ||
| 203 | * there may be inconsistent data beneath this lock and we must wait | ||
| 204 | * for recovery to complete to use it. When gfs recovery is done this | ||
| 205 | * granted lock will be converted to NL and then reacquired in this | ||
| 206 | * granted state. | ||
| 207 | */ | ||
| 208 | |||
| 209 | if (test_bit(DFL_BLOCK_LOCKS, &ls->flags) && | ||
| 210 | !test_bit(LFL_NOBLOCK, &lp->flags) && | ||
| 211 | lp->req != DLM_LOCK_NL) { | ||
| 212 | |||
| 213 | lp->cur = lp->req; | ||
| 214 | lp->prev_req = lp->req; | ||
| 215 | lp->req = DLM_LOCK_NL; | ||
| 216 | lp->lkf |= DLM_LKF_CONVERT; | ||
| 217 | lp->lkf &= ~DLM_LKF_CONVDEADLK; | ||
| 218 | |||
| 219 | log_debug("rereq %x,%llx id %x %d,%d", | ||
| 220 | lp->lockname.ln_type, | ||
| 221 | (unsigned long long)lp->lockname.ln_number, | ||
| 222 | lp->lksb.sb_lkid, lp->cur, lp->req); | ||
| 223 | |||
| 224 | set_bit(LFL_REREQUEST, &lp->flags); | ||
| 225 | queue_submit(lp); | ||
| 226 | return; | ||
| 227 | } | ||
| 228 | |||
| 229 | /* | ||
| 230 | * DLM demoted the lock to NL before it was granted so GFS must be | ||
| 231 | * told it cannot cache data for this lock. | ||
| 232 | */ | ||
| 233 | |||
| 234 | if (lp->lksb.sb_flags & DLM_SBF_DEMOTED) | ||
| 235 | set_bit(LFL_NOCACHE, &lp->flags); | ||
| 236 | |||
| 237 | out: | ||
| 238 | /* | ||
| 239 | * This is an internal lock_dlm lock | ||
| 240 | */ | ||
| 241 | |||
| 242 | if (test_bit(LFL_INLOCK, &lp->flags)) { | ||
| 243 | clear_bit(LFL_NOBLOCK, &lp->flags); | ||
| 244 | lp->cur = lp->req; | ||
| 245 | wake_up_ast(lp); | ||
| 246 | return; | ||
| 247 | } | ||
| 248 | |||
| 249 | /* | ||
| 250 | * Normal completion of a lock request. Tell GFS it now has the lock. | ||
| 251 | */ | ||
| 252 | |||
| 253 | clear_bit(LFL_NOBLOCK, &lp->flags); | ||
| 254 | lp->cur = lp->req; | ||
| 255 | |||
| 256 | acb.lc_name = lp->lockname; | ||
| 257 | acb.lc_ret |= gdlm_make_lmstate(lp->cur); | ||
| 258 | |||
| 259 | ls->fscb(ls->sdp, LM_CB_ASYNC, &acb); | ||
| 260 | } | ||
| 261 | |||
| 262 | static void gdlm_ast(void *astarg) | ||
| 263 | { | ||
| 264 | struct gdlm_lock *lp = astarg; | ||
| 265 | clear_bit(LFL_ACTIVE, &lp->flags); | ||
| 266 | process_complete(lp); | ||
| 267 | } | ||
| 268 | |||
| 269 | static void process_blocking(struct gdlm_lock *lp, int bast_mode) | ||
| 270 | { | ||
| 271 | struct gdlm_ls *ls = lp->ls; | ||
| 272 | unsigned int cb = 0; | ||
| 273 | |||
| 274 | switch (gdlm_make_lmstate(bast_mode)) { | ||
| 275 | case LM_ST_EXCLUSIVE: | ||
| 276 | cb = LM_CB_NEED_E; | ||
| 277 | break; | ||
| 278 | case LM_ST_DEFERRED: | ||
| 279 | cb = LM_CB_NEED_D; | ||
| 280 | break; | ||
| 281 | case LM_ST_SHARED: | ||
| 282 | cb = LM_CB_NEED_S; | ||
| 283 | break; | ||
| 284 | default: | ||
| 285 | gdlm_assert(0, "unknown bast mode %u", bast_mode); | ||
| 286 | } | ||
| 287 | |||
| 288 | ls->fscb(ls->sdp, cb, &lp->lockname); | ||
| 289 | } | ||
| 290 | |||
| 291 | |||
| 292 | static void gdlm_bast(void *astarg, int mode) | ||
| 293 | { | ||
| 294 | struct gdlm_lock *lp = astarg; | ||
| 295 | |||
| 296 | if (!mode) { | ||
| 297 | printk(KERN_INFO "lock_dlm: bast mode zero %x,%llx\n", | ||
| 298 | lp->lockname.ln_type, | ||
| 299 | (unsigned long long)lp->lockname.ln_number); | ||
| 300 | return; | ||
| 301 | } | ||
| 302 | |||
| 303 | process_blocking(lp, mode); | ||
| 304 | } | ||
| 305 | |||
| 306 | /* convert gfs lock-state to dlm lock-mode */ | ||
| 307 | |||
| 308 | static s16 make_mode(s16 lmstate) | ||
| 309 | { | ||
| 310 | switch (lmstate) { | ||
| 311 | case LM_ST_UNLOCKED: | ||
| 312 | return DLM_LOCK_NL; | ||
| 313 | case LM_ST_EXCLUSIVE: | ||
| 314 | return DLM_LOCK_EX; | ||
| 315 | case LM_ST_DEFERRED: | ||
| 316 | return DLM_LOCK_CW; | ||
| 317 | case LM_ST_SHARED: | ||
| 318 | return DLM_LOCK_PR; | ||
| 319 | } | ||
| 320 | gdlm_assert(0, "unknown LM state %d", lmstate); | ||
| 321 | return -1; | ||
| 322 | } | ||
| 323 | |||
| 324 | |||
| 325 | /* verify agreement with GFS on the current lock state, NB: DLM_LOCK_NL and | ||
| 326 | DLM_LOCK_IV are both considered LM_ST_UNLOCKED by GFS. */ | ||
| 327 | |||
| 328 | static void check_cur_state(struct gdlm_lock *lp, unsigned int cur_state) | ||
| 329 | { | ||
| 330 | s16 cur = make_mode(cur_state); | ||
| 331 | if (lp->cur != DLM_LOCK_IV) | ||
| 332 | gdlm_assert(lp->cur == cur, "%d, %d", lp->cur, cur); | ||
| 333 | } | ||
| 334 | |||
| 335 | static inline unsigned int make_flags(struct gdlm_lock *lp, | ||
| 336 | unsigned int gfs_flags, | ||
| 337 | s16 cur, s16 req) | ||
| 338 | { | ||
| 339 | unsigned int lkf = 0; | ||
| 340 | |||
| 341 | if (gfs_flags & LM_FLAG_TRY) | ||
| 342 | lkf |= DLM_LKF_NOQUEUE; | ||
| 343 | |||
| 344 | if (gfs_flags & LM_FLAG_TRY_1CB) { | ||
| 345 | lkf |= DLM_LKF_NOQUEUE; | ||
| 346 | lkf |= DLM_LKF_NOQUEUEBAST; | ||
| 347 | } | ||
| 348 | |||
| 349 | if (gfs_flags & LM_FLAG_PRIORITY) { | ||
| 350 | lkf |= DLM_LKF_NOORDER; | ||
| 351 | lkf |= DLM_LKF_HEADQUE; | ||
| 352 | } | ||
| 353 | |||
| 354 | if (gfs_flags & LM_FLAG_ANY) { | ||
| 355 | if (req == DLM_LOCK_PR) | ||
| 356 | lkf |= DLM_LKF_ALTCW; | ||
| 357 | else if (req == DLM_LOCK_CW) | ||
| 358 | lkf |= DLM_LKF_ALTPR; | ||
| 359 | } | ||
| 360 | |||
| 361 | if (lp->lksb.sb_lkid != 0) { | ||
| 362 | lkf |= DLM_LKF_CONVERT; | ||
| 363 | } | ||
| 364 | |||
| 365 | if (lp->lvb) | ||
| 366 | lkf |= DLM_LKF_VALBLK; | ||
| 367 | |||
| 368 | return lkf; | ||
| 369 | } | ||
| 370 | |||
| 371 | /* make_strname - convert GFS lock numbers to a string */ | ||
| 372 | |||
| 373 | static inline void make_strname(const struct lm_lockname *lockname, | ||
| 374 | struct gdlm_strname *str) | ||
| 375 | { | ||
| 376 | sprintf(str->name, "%8x%16llx", lockname->ln_type, | ||
| 377 | (unsigned long long)lockname->ln_number); | ||
| 378 | str->namelen = GDLM_STRNAME_BYTES; | ||
| 379 | } | ||
| 380 | |||
| 381 | static int gdlm_create_lp(struct gdlm_ls *ls, struct lm_lockname *name, | ||
| 382 | struct gdlm_lock **lpp) | ||
| 383 | { | ||
| 384 | struct gdlm_lock *lp; | ||
| 385 | |||
| 386 | lp = kzalloc(sizeof(struct gdlm_lock), GFP_NOFS); | ||
| 387 | if (!lp) | ||
| 388 | return -ENOMEM; | ||
| 389 | |||
| 390 | lp->lockname = *name; | ||
| 391 | make_strname(name, &lp->strname); | ||
| 392 | lp->ls = ls; | ||
| 393 | lp->cur = DLM_LOCK_IV; | ||
| 394 | INIT_LIST_HEAD(&lp->delay_list); | ||
| 395 | |||
| 396 | spin_lock(&ls->async_lock); | ||
| 397 | ls->all_locks_count++; | ||
| 398 | spin_unlock(&ls->async_lock); | ||
| 399 | |||
| 400 | *lpp = lp; | ||
| 401 | return 0; | ||
| 402 | } | ||
| 403 | |||
| 404 | int gdlm_get_lock(void *lockspace, struct lm_lockname *name, | ||
| 405 | void **lockp) | ||
| 406 | { | ||
| 407 | struct gdlm_lock *lp; | ||
| 408 | int error; | ||
| 409 | |||
| 410 | error = gdlm_create_lp(lockspace, name, &lp); | ||
| 411 | |||
| 412 | *lockp = lp; | ||
| 413 | return error; | ||
| 414 | } | ||
| 415 | |||
| 416 | void gdlm_put_lock(void *lock) | ||
| 417 | { | ||
| 418 | gdlm_delete_lp(lock); | ||
| 419 | } | ||
| 420 | |||
| 421 | unsigned int gdlm_do_lock(struct gdlm_lock *lp) | ||
| 422 | { | ||
| 423 | struct gdlm_ls *ls = lp->ls; | ||
| 424 | int error, bast = 1; | ||
| 425 | |||
| 426 | /* | ||
| 427 | * When recovery is in progress, delay lock requests for submission | ||
| 428 | * once recovery is done. Requests for recovery (NOEXP) and unlocks | ||
| 429 | * can pass. | ||
| 430 | */ | ||
| 431 | |||
| 432 | if (test_bit(DFL_BLOCK_LOCKS, &ls->flags) && | ||
| 433 | !test_bit(LFL_NOBLOCK, &lp->flags) && lp->req != DLM_LOCK_NL) { | ||
| 434 | gdlm_queue_delayed(lp); | ||
| 435 | return LM_OUT_ASYNC; | ||
| 436 | } | ||
| 437 | |||
| 438 | /* | ||
| 439 | * Submit the actual lock request. | ||
| 440 | */ | ||
| 441 | |||
| 442 | if (test_bit(LFL_NOBAST, &lp->flags)) | ||
| 443 | bast = 0; | ||
| 444 | |||
| 445 | set_bit(LFL_ACTIVE, &lp->flags); | ||
| 446 | |||
| 447 | log_debug("lk %x,%llx id %x %d,%d %x", lp->lockname.ln_type, | ||
| 448 | (unsigned long long)lp->lockname.ln_number, lp->lksb.sb_lkid, | ||
| 449 | lp->cur, lp->req, lp->lkf); | ||
| 450 | |||
| 451 | error = dlm_lock(ls->dlm_lockspace, lp->req, &lp->lksb, lp->lkf, | ||
| 452 | lp->strname.name, lp->strname.namelen, 0, gdlm_ast, | ||
| 453 | lp, bast ? gdlm_bast : NULL); | ||
| 454 | |||
| 455 | if ((error == -EAGAIN) && (lp->lkf & DLM_LKF_NOQUEUE)) { | ||
| 456 | lp->lksb.sb_status = -EAGAIN; | ||
| 457 | gdlm_ast(lp); | ||
| 458 | error = 0; | ||
| 459 | } | ||
| 460 | |||
| 461 | if (error) { | ||
| 462 | log_error("%s: gdlm_lock %x,%llx err=%d cur=%d req=%d lkf=%x " | ||
| 463 | "flags=%lx", ls->fsname, lp->lockname.ln_type, | ||
| 464 | (unsigned long long)lp->lockname.ln_number, error, | ||
| 465 | lp->cur, lp->req, lp->lkf, lp->flags); | ||
| 466 | return LM_OUT_ERROR; | ||
| 467 | } | ||
| 468 | return LM_OUT_ASYNC; | ||
| 469 | } | ||
| 470 | |||
| 471 | static unsigned int gdlm_do_unlock(struct gdlm_lock *lp) | ||
| 472 | { | ||
| 473 | struct gdlm_ls *ls = lp->ls; | ||
| 474 | unsigned int lkf = 0; | ||
| 475 | int error; | ||
| 476 | |||
| 477 | set_bit(LFL_DLM_UNLOCK, &lp->flags); | ||
| 478 | set_bit(LFL_ACTIVE, &lp->flags); | ||
| 479 | |||
| 480 | if (lp->lvb) | ||
| 481 | lkf = DLM_LKF_VALBLK; | ||
| 482 | |||
| 483 | log_debug("un %x,%llx %x %d %x", lp->lockname.ln_type, | ||
| 484 | (unsigned long long)lp->lockname.ln_number, | ||
| 485 | lp->lksb.sb_lkid, lp->cur, lkf); | ||
| 486 | |||
| 487 | error = dlm_unlock(ls->dlm_lockspace, lp->lksb.sb_lkid, lkf, NULL, lp); | ||
| 488 | |||
| 489 | if (error) { | ||
| 490 | log_error("%s: gdlm_unlock %x,%llx err=%d cur=%d req=%d lkf=%x " | ||
| 491 | "flags=%lx", ls->fsname, lp->lockname.ln_type, | ||
| 492 | (unsigned long long)lp->lockname.ln_number, error, | ||
| 493 | lp->cur, lp->req, lp->lkf, lp->flags); | ||
| 494 | return LM_OUT_ERROR; | ||
| 495 | } | ||
| 496 | return LM_OUT_ASYNC; | ||
| 497 | } | ||
| 498 | |||
| 499 | unsigned int gdlm_lock(void *lock, unsigned int cur_state, | ||
| 500 | unsigned int req_state, unsigned int flags) | ||
| 501 | { | ||
| 502 | struct gdlm_lock *lp = lock; | ||
| 503 | |||
| 504 | if (req_state == LM_ST_UNLOCKED) | ||
| 505 | return gdlm_unlock(lock, cur_state); | ||
| 506 | |||
| 507 | if (req_state == LM_ST_UNLOCKED) | ||
| 508 | return gdlm_unlock(lock, cur_state); | ||
| 509 | |||
| 510 | clear_bit(LFL_DLM_CANCEL, &lp->flags); | ||
| 511 | if (flags & LM_FLAG_NOEXP) | ||
| 512 | set_bit(LFL_NOBLOCK, &lp->flags); | ||
| 513 | |||
| 514 | check_cur_state(lp, cur_state); | ||
| 515 | lp->req = make_mode(req_state); | ||
| 516 | lp->lkf = make_flags(lp, flags, lp->cur, lp->req); | ||
| 517 | |||
| 518 | return gdlm_do_lock(lp); | ||
| 519 | } | ||
| 520 | |||
| 521 | unsigned int gdlm_unlock(void *lock, unsigned int cur_state) | ||
| 522 | { | ||
| 523 | struct gdlm_lock *lp = lock; | ||
| 524 | |||
| 525 | clear_bit(LFL_DLM_CANCEL, &lp->flags); | ||
| 526 | if (lp->cur == DLM_LOCK_IV) | ||
| 527 | return 0; | ||
| 528 | return gdlm_do_unlock(lp); | ||
| 529 | } | ||
| 530 | |||
| 531 | void gdlm_cancel(void *lock) | ||
| 532 | { | ||
| 533 | struct gdlm_lock *lp = lock; | ||
| 534 | struct gdlm_ls *ls = lp->ls; | ||
| 535 | int error, delay_list = 0; | ||
| 536 | |||
| 537 | if (test_bit(LFL_DLM_CANCEL, &lp->flags)) | ||
| 538 | return; | ||
| 539 | |||
| 540 | log_info("gdlm_cancel %x,%llx flags %lx", lp->lockname.ln_type, | ||
| 541 | (unsigned long long)lp->lockname.ln_number, lp->flags); | ||
| 542 | |||
| 543 | spin_lock(&ls->async_lock); | ||
| 544 | if (!list_empty(&lp->delay_list)) { | ||
| 545 | list_del_init(&lp->delay_list); | ||
| 546 | delay_list = 1; | ||
| 547 | } | ||
| 548 | spin_unlock(&ls->async_lock); | ||
| 549 | |||
| 550 | if (delay_list) { | ||
| 551 | set_bit(LFL_CANCEL, &lp->flags); | ||
| 552 | set_bit(LFL_ACTIVE, &lp->flags); | ||
| 553 | gdlm_ast(lp); | ||
| 554 | return; | ||
| 555 | } | ||
| 556 | |||
| 557 | if (!test_bit(LFL_ACTIVE, &lp->flags) || | ||
| 558 | test_bit(LFL_DLM_UNLOCK, &lp->flags)) { | ||
| 559 | log_info("gdlm_cancel skip %x,%llx flags %lx", | ||
| 560 | lp->lockname.ln_type, | ||
| 561 | (unsigned long long)lp->lockname.ln_number, lp->flags); | ||
| 562 | return; | ||
| 563 | } | ||
| 564 | |||
| 565 | /* the lock is blocked in the dlm */ | ||
| 566 | |||
| 567 | set_bit(LFL_DLM_CANCEL, &lp->flags); | ||
| 568 | set_bit(LFL_ACTIVE, &lp->flags); | ||
| 569 | |||
| 570 | error = dlm_unlock(ls->dlm_lockspace, lp->lksb.sb_lkid, DLM_LKF_CANCEL, | ||
| 571 | NULL, lp); | ||
| 572 | |||
| 573 | log_info("gdlm_cancel rv %d %x,%llx flags %lx", error, | ||
| 574 | lp->lockname.ln_type, | ||
| 575 | (unsigned long long)lp->lockname.ln_number, lp->flags); | ||
| 576 | |||
| 577 | if (error == -EBUSY) | ||
| 578 | clear_bit(LFL_DLM_CANCEL, &lp->flags); | ||
| 579 | } | ||
| 580 | |||
| 581 | static int gdlm_add_lvb(struct gdlm_lock *lp) | ||
| 582 | { | ||
| 583 | char *lvb; | ||
| 584 | |||
| 585 | lvb = kzalloc(GDLM_LVB_SIZE, GFP_NOFS); | ||
| 586 | if (!lvb) | ||
| 587 | return -ENOMEM; | ||
| 588 | |||
| 589 | lp->lksb.sb_lvbptr = lvb; | ||
| 590 | lp->lvb = lvb; | ||
| 591 | return 0; | ||
| 592 | } | ||
| 593 | |||
| 594 | static void gdlm_del_lvb(struct gdlm_lock *lp) | ||
| 595 | { | ||
| 596 | kfree(lp->lvb); | ||
| 597 | lp->lvb = NULL; | ||
| 598 | lp->lksb.sb_lvbptr = NULL; | ||
| 599 | } | ||
| 600 | |||
| 601 | static int gdlm_ast_wait(void *word) | ||
| 602 | { | ||
| 603 | schedule(); | ||
| 604 | return 0; | ||
| 605 | } | ||
| 606 | |||
| 607 | /* This can do a synchronous dlm request (requiring a lock_dlm thread to get | ||
| 608 | the completion) because gfs won't call hold_lvb() during a callback (from | ||
| 609 | the context of a lock_dlm thread). */ | ||
| 610 | |||
| 611 | static int hold_null_lock(struct gdlm_lock *lp) | ||
| 612 | { | ||
| 613 | struct gdlm_lock *lpn = NULL; | ||
| 614 | int error; | ||
| 615 | |||
| 616 | if (lp->hold_null) { | ||
| 617 | printk(KERN_INFO "lock_dlm: lvb already held\n"); | ||
| 618 | return 0; | ||
| 619 | } | ||
| 620 | |||
| 621 | error = gdlm_create_lp(lp->ls, &lp->lockname, &lpn); | ||
| 622 | if (error) | ||
| 623 | goto out; | ||
| 624 | |||
| 625 | lpn->lksb.sb_lvbptr = junk_lvb; | ||
| 626 | lpn->lvb = junk_lvb; | ||
| 627 | |||
| 628 | lpn->req = DLM_LOCK_NL; | ||
| 629 | lpn->lkf = DLM_LKF_VALBLK | DLM_LKF_EXPEDITE; | ||
| 630 | set_bit(LFL_NOBAST, &lpn->flags); | ||
| 631 | set_bit(LFL_INLOCK, &lpn->flags); | ||
| 632 | set_bit(LFL_AST_WAIT, &lpn->flags); | ||
| 633 | |||
| 634 | gdlm_do_lock(lpn); | ||
| 635 | wait_on_bit(&lpn->flags, LFL_AST_WAIT, gdlm_ast_wait, TASK_UNINTERRUPTIBLE); | ||
| 636 | error = lpn->lksb.sb_status; | ||
| 637 | if (error) { | ||
| 638 | printk(KERN_INFO "lock_dlm: hold_null_lock dlm error %d\n", | ||
| 639 | error); | ||
| 640 | gdlm_delete_lp(lpn); | ||
| 641 | lpn = NULL; | ||
| 642 | } | ||
| 643 | out: | ||
| 644 | lp->hold_null = lpn; | ||
| 645 | return error; | ||
| 646 | } | ||
| 647 | |||
| 648 | /* This cannot do a synchronous dlm request (requiring a lock_dlm thread to get | ||
| 649 | the completion) because gfs may call unhold_lvb() during a callback (from | ||
| 650 | the context of a lock_dlm thread) which could cause a deadlock since the | ||
| 651 | other lock_dlm thread could be engaged in recovery. */ | ||
| 652 | |||
| 653 | static void unhold_null_lock(struct gdlm_lock *lp) | ||
| 654 | { | ||
| 655 | struct gdlm_lock *lpn = lp->hold_null; | ||
| 656 | |||
| 657 | gdlm_assert(lpn, "%x,%llx", lp->lockname.ln_type, | ||
| 658 | (unsigned long long)lp->lockname.ln_number); | ||
| 659 | lpn->lksb.sb_lvbptr = NULL; | ||
| 660 | lpn->lvb = NULL; | ||
| 661 | set_bit(LFL_UNLOCK_DELETE, &lpn->flags); | ||
| 662 | gdlm_do_unlock(lpn); | ||
| 663 | lp->hold_null = NULL; | ||
| 664 | } | ||
| 665 | |||
| 666 | /* Acquire a NL lock because gfs requires the value block to remain | ||
| 667 | intact on the resource while the lvb is "held" even if it's holding no locks | ||
| 668 | on the resource. */ | ||
| 669 | |||
| 670 | int gdlm_hold_lvb(void *lock, char **lvbp) | ||
| 671 | { | ||
| 672 | struct gdlm_lock *lp = lock; | ||
| 673 | int error; | ||
| 674 | |||
| 675 | error = gdlm_add_lvb(lp); | ||
| 676 | if (error) | ||
| 677 | return error; | ||
| 678 | |||
| 679 | *lvbp = lp->lvb; | ||
| 680 | |||
| 681 | error = hold_null_lock(lp); | ||
| 682 | if (error) | ||
| 683 | gdlm_del_lvb(lp); | ||
| 684 | |||
| 685 | return error; | ||
| 686 | } | ||
| 687 | |||
| 688 | void gdlm_unhold_lvb(void *lock, char *lvb) | ||
| 689 | { | ||
| 690 | struct gdlm_lock *lp = lock; | ||
| 691 | |||
| 692 | unhold_null_lock(lp); | ||
| 693 | gdlm_del_lvb(lp); | ||
| 694 | } | ||
| 695 | |||
| 696 | void gdlm_submit_delayed(struct gdlm_ls *ls) | ||
| 697 | { | ||
| 698 | struct gdlm_lock *lp, *safe; | ||
| 699 | |||
| 700 | spin_lock(&ls->async_lock); | ||
| 701 | list_for_each_entry_safe(lp, safe, &ls->delayed, delay_list) { | ||
| 702 | list_del_init(&lp->delay_list); | ||
| 703 | list_add_tail(&lp->delay_list, &ls->submit); | ||
| 704 | } | ||
| 705 | spin_unlock(&ls->async_lock); | ||
| 706 | wake_up(&ls->thread_wait); | ||
| 707 | } | ||
| 708 | |||
diff --git a/fs/gfs2/locking/dlm/lock_dlm.h b/fs/gfs2/locking/dlm/lock_dlm.h deleted file mode 100644 index 3c98e7c6f93b..000000000000 --- a/fs/gfs2/locking/dlm/lock_dlm.h +++ /dev/null | |||
| @@ -1,166 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. | ||
| 3 | * Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved. | ||
| 4 | * | ||
| 5 | * This copyrighted material is made available to anyone wishing to use, | ||
| 6 | * modify, copy, or redistribute it subject to the terms and conditions | ||
| 7 | * of the GNU General Public License version 2. | ||
| 8 | */ | ||
| 9 | |||
| 10 | #ifndef LOCK_DLM_DOT_H | ||
| 11 | #define LOCK_DLM_DOT_H | ||
| 12 | |||
| 13 | #include <linux/module.h> | ||
| 14 | #include <linux/slab.h> | ||
| 15 | #include <linux/spinlock.h> | ||
| 16 | #include <linux/types.h> | ||
| 17 | #include <linux/string.h> | ||
| 18 | #include <linux/list.h> | ||
| 19 | #include <linux/socket.h> | ||
| 20 | #include <linux/delay.h> | ||
| 21 | #include <linux/kthread.h> | ||
| 22 | #include <linux/kobject.h> | ||
| 23 | #include <linux/fcntl.h> | ||
| 24 | #include <linux/wait.h> | ||
| 25 | #include <net/sock.h> | ||
| 26 | |||
| 27 | #include <linux/dlm.h> | ||
| 28 | #include <linux/dlm_plock.h> | ||
| 29 | #include <linux/lm_interface.h> | ||
| 30 | |||
| 31 | /* | ||
| 32 | * Internally, we prefix things with gdlm_ and GDLM_ (for gfs-dlm) since a | ||
| 33 | * prefix of lock_dlm_ gets awkward. Externally, GFS refers to this module | ||
| 34 | * as "lock_dlm". | ||
| 35 | */ | ||
| 36 | |||
| 37 | #define GDLM_STRNAME_BYTES 24 | ||
| 38 | #define GDLM_LVB_SIZE 32 | ||
| 39 | #define GDLM_DROP_COUNT 0 | ||
| 40 | #define GDLM_DROP_PERIOD 60 | ||
| 41 | #define GDLM_NAME_LEN 128 | ||
| 42 | |||
| 43 | /* GFS uses 12 bytes to identify a resource (32 bit type + 64 bit number). | ||
| 44 | We sprintf these numbers into a 24 byte string of hex values to make them | ||
| 45 | human-readable (to make debugging simpler.) */ | ||
| 46 | |||
| 47 | struct gdlm_strname { | ||
| 48 | unsigned char name[GDLM_STRNAME_BYTES]; | ||
| 49 | unsigned short namelen; | ||
| 50 | }; | ||
| 51 | |||
| 52 | enum { | ||
| 53 | DFL_BLOCK_LOCKS = 0, | ||
| 54 | DFL_SPECTATOR = 1, | ||
| 55 | DFL_WITHDRAW = 2, | ||
| 56 | }; | ||
| 57 | |||
| 58 | struct gdlm_ls { | ||
| 59 | u32 id; | ||
| 60 | int jid; | ||
| 61 | int first; | ||
| 62 | int first_done; | ||
| 63 | unsigned long flags; | ||
| 64 | struct kobject kobj; | ||
| 65 | char clustername[GDLM_NAME_LEN]; | ||
| 66 | char fsname[GDLM_NAME_LEN]; | ||
| 67 | int fsflags; | ||
| 68 | dlm_lockspace_t *dlm_lockspace; | ||
| 69 | lm_callback_t fscb; | ||
| 70 | struct gfs2_sbd *sdp; | ||
| 71 | int recover_jid; | ||
| 72 | int recover_jid_done; | ||
| 73 | int recover_jid_status; | ||
| 74 | spinlock_t async_lock; | ||
| 75 | struct list_head delayed; | ||
| 76 | struct list_head submit; | ||
| 77 | u32 all_locks_count; | ||
| 78 | wait_queue_head_t wait_control; | ||
| 79 | struct task_struct *thread; | ||
| 80 | wait_queue_head_t thread_wait; | ||
| 81 | }; | ||
| 82 | |||
| 83 | enum { | ||
| 84 | LFL_NOBLOCK = 0, | ||
| 85 | LFL_NOCACHE = 1, | ||
| 86 | LFL_DLM_UNLOCK = 2, | ||
| 87 | LFL_DLM_CANCEL = 3, | ||
| 88 | LFL_SYNC_LVB = 4, | ||
| 89 | LFL_FORCE_PROMOTE = 5, | ||
| 90 | LFL_REREQUEST = 6, | ||
| 91 | LFL_ACTIVE = 7, | ||
| 92 | LFL_INLOCK = 8, | ||
| 93 | LFL_CANCEL = 9, | ||
| 94 | LFL_NOBAST = 10, | ||
| 95 | LFL_HEADQUE = 11, | ||
| 96 | LFL_UNLOCK_DELETE = 12, | ||
| 97 | LFL_AST_WAIT = 13, | ||
| 98 | }; | ||
| 99 | |||
| 100 | struct gdlm_lock { | ||
| 101 | struct gdlm_ls *ls; | ||
| 102 | struct lm_lockname lockname; | ||
| 103 | struct gdlm_strname strname; | ||
| 104 | char *lvb; | ||
| 105 | struct dlm_lksb lksb; | ||
| 106 | |||
| 107 | s16 cur; | ||
| 108 | s16 req; | ||
| 109 | s16 prev_req; | ||
| 110 | u32 lkf; /* dlm flags DLM_LKF_ */ | ||
| 111 | unsigned long flags; /* lock_dlm flags LFL_ */ | ||
| 112 | |||
| 113 | struct list_head delay_list; /* delayed */ | ||
| 114 | struct gdlm_lock *hold_null; /* NL lock for hold_lvb */ | ||
| 115 | }; | ||
| 116 | |||
| 117 | #define gdlm_assert(assertion, fmt, args...) \ | ||
| 118 | do { \ | ||
| 119 | if (unlikely(!(assertion))) { \ | ||
| 120 | printk(KERN_EMERG "lock_dlm: fatal assertion failed \"%s\"\n" \ | ||
| 121 | "lock_dlm: " fmt "\n", \ | ||
| 122 | #assertion, ##args); \ | ||
| 123 | BUG(); \ | ||
| 124 | } \ | ||
| 125 | } while (0) | ||
| 126 | |||
| 127 | #define log_print(lev, fmt, arg...) printk(lev "lock_dlm: " fmt "\n" , ## arg) | ||
| 128 | #define log_info(fmt, arg...) log_print(KERN_INFO , fmt , ## arg) | ||
| 129 | #define log_error(fmt, arg...) log_print(KERN_ERR , fmt , ## arg) | ||
| 130 | #ifdef LOCK_DLM_LOG_DEBUG | ||
| 131 | #define log_debug(fmt, arg...) log_print(KERN_DEBUG , fmt , ## arg) | ||
| 132 | #else | ||
| 133 | #define log_debug(fmt, arg...) | ||
| 134 | #endif | ||
| 135 | |||
| 136 | /* sysfs.c */ | ||
| 137 | |||
| 138 | int gdlm_sysfs_init(void); | ||
| 139 | void gdlm_sysfs_exit(void); | ||
| 140 | int gdlm_kobject_setup(struct gdlm_ls *, struct kobject *); | ||
| 141 | void gdlm_kobject_release(struct gdlm_ls *); | ||
| 142 | |||
| 143 | /* thread.c */ | ||
| 144 | |||
| 145 | int gdlm_init_threads(struct gdlm_ls *); | ||
| 146 | void gdlm_release_threads(struct gdlm_ls *); | ||
| 147 | |||
| 148 | /* lock.c */ | ||
| 149 | |||
| 150 | void gdlm_submit_delayed(struct gdlm_ls *); | ||
| 151 | unsigned int gdlm_do_lock(struct gdlm_lock *); | ||
| 152 | |||
| 153 | int gdlm_get_lock(void *, struct lm_lockname *, void **); | ||
| 154 | void gdlm_put_lock(void *); | ||
| 155 | unsigned int gdlm_lock(void *, unsigned int, unsigned int, unsigned int); | ||
| 156 | unsigned int gdlm_unlock(void *, unsigned int); | ||
| 157 | void gdlm_cancel(void *); | ||
| 158 | int gdlm_hold_lvb(void *, char **); | ||
| 159 | void gdlm_unhold_lvb(void *, char *); | ||
| 160 | |||
| 161 | /* mount.c */ | ||
| 162 | |||
| 163 | extern const struct lm_lockops gdlm_ops; | ||
| 164 | |||
| 165 | #endif | ||
| 166 | |||
diff --git a/fs/gfs2/locking/dlm/main.c b/fs/gfs2/locking/dlm/main.c deleted file mode 100644 index b9a03a7ff801..000000000000 --- a/fs/gfs2/locking/dlm/main.c +++ /dev/null | |||
| @@ -1,48 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. | ||
| 3 | * Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved. | ||
| 4 | * | ||
| 5 | * This copyrighted material is made available to anyone wishing to use, | ||
| 6 | * modify, copy, or redistribute it subject to the terms and conditions | ||
| 7 | * of the GNU General Public License version 2. | ||
| 8 | */ | ||
| 9 | |||
| 10 | #include <linux/init.h> | ||
| 11 | |||
| 12 | #include "lock_dlm.h" | ||
| 13 | |||
| 14 | static int __init init_lock_dlm(void) | ||
| 15 | { | ||
| 16 | int error; | ||
| 17 | |||
| 18 | error = gfs2_register_lockproto(&gdlm_ops); | ||
| 19 | if (error) { | ||
| 20 | printk(KERN_WARNING "lock_dlm: can't register protocol: %d\n", | ||
| 21 | error); | ||
| 22 | return error; | ||
| 23 | } | ||
| 24 | |||
| 25 | error = gdlm_sysfs_init(); | ||
| 26 | if (error) { | ||
| 27 | gfs2_unregister_lockproto(&gdlm_ops); | ||
| 28 | return error; | ||
| 29 | } | ||
| 30 | |||
| 31 | printk(KERN_INFO | ||
| 32 | "Lock_DLM (built %s %s) installed\n", __DATE__, __TIME__); | ||
| 33 | return 0; | ||
| 34 | } | ||
| 35 | |||
| 36 | static void __exit exit_lock_dlm(void) | ||
| 37 | { | ||
| 38 | gdlm_sysfs_exit(); | ||
| 39 | gfs2_unregister_lockproto(&gdlm_ops); | ||
| 40 | } | ||
| 41 | |||
| 42 | module_init(init_lock_dlm); | ||
| 43 | module_exit(exit_lock_dlm); | ||
| 44 | |||
| 45 | MODULE_DESCRIPTION("GFS DLM Locking Module"); | ||
| 46 | MODULE_AUTHOR("Red Hat, Inc."); | ||
| 47 | MODULE_LICENSE("GPL"); | ||
| 48 | |||
diff --git a/fs/gfs2/locking/dlm/mount.c b/fs/gfs2/locking/dlm/mount.c deleted file mode 100644 index 1aa7eb6a0226..000000000000 --- a/fs/gfs2/locking/dlm/mount.c +++ /dev/null | |||
| @@ -1,276 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. | ||
| 3 | * Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved. | ||
| 4 | * | ||
| 5 | * This copyrighted material is made available to anyone wishing to use, | ||
| 6 | * modify, copy, or redistribute it subject to the terms and conditions | ||
| 7 | * of the GNU General Public License version 2. | ||
| 8 | */ | ||
| 9 | |||
| 10 | #include "lock_dlm.h" | ||
| 11 | |||
| 12 | const struct lm_lockops gdlm_ops; | ||
| 13 | |||
| 14 | |||
| 15 | static struct gdlm_ls *init_gdlm(lm_callback_t cb, struct gfs2_sbd *sdp, | ||
| 16 | int flags, char *table_name) | ||
| 17 | { | ||
| 18 | struct gdlm_ls *ls; | ||
| 19 | char buf[256], *p; | ||
| 20 | |||
| 21 | ls = kzalloc(sizeof(struct gdlm_ls), GFP_KERNEL); | ||
| 22 | if (!ls) | ||
| 23 | return NULL; | ||
| 24 | |||
| 25 | ls->fscb = cb; | ||
| 26 | ls->sdp = sdp; | ||
| 27 | ls->fsflags = flags; | ||
| 28 | spin_lock_init(&ls->async_lock); | ||
| 29 | INIT_LIST_HEAD(&ls->delayed); | ||
| 30 | INIT_LIST_HEAD(&ls->submit); | ||
| 31 | init_waitqueue_head(&ls->thread_wait); | ||
| 32 | init_waitqueue_head(&ls->wait_control); | ||
| 33 | ls->jid = -1; | ||
| 34 | |||
| 35 | strncpy(buf, table_name, 256); | ||
| 36 | buf[255] = '\0'; | ||
| 37 | |||
| 38 | p = strchr(buf, ':'); | ||
| 39 | if (!p) { | ||
| 40 | log_info("invalid table_name \"%s\"", table_name); | ||
| 41 | kfree(ls); | ||
| 42 | return NULL; | ||
| 43 | } | ||
| 44 | *p = '\0'; | ||
| 45 | p++; | ||
| 46 | |||
| 47 | strncpy(ls->clustername, buf, GDLM_NAME_LEN); | ||
| 48 | strncpy(ls->fsname, p, GDLM_NAME_LEN); | ||
| 49 | |||
| 50 | return ls; | ||
| 51 | } | ||
| 52 | |||
| 53 | static int make_args(struct gdlm_ls *ls, char *data_arg, int *nodir) | ||
| 54 | { | ||
| 55 | char data[256]; | ||
| 56 | char *options, *x, *y; | ||
| 57 | int error = 0; | ||
| 58 | |||
| 59 | memset(data, 0, 256); | ||
| 60 | strncpy(data, data_arg, 255); | ||
| 61 | |||
| 62 | if (!strlen(data)) { | ||
| 63 | log_error("no mount options, (u)mount helpers not installed"); | ||
| 64 | return -EINVAL; | ||
| 65 | } | ||
| 66 | |||
| 67 | for (options = data; (x = strsep(&options, ":")); ) { | ||
| 68 | if (!*x) | ||
| 69 | continue; | ||
| 70 | |||
| 71 | y = strchr(x, '='); | ||
| 72 | if (y) | ||
| 73 | *y++ = 0; | ||
| 74 | |||
| 75 | if (!strcmp(x, "jid")) { | ||
| 76 | if (!y) { | ||
| 77 | log_error("need argument to jid"); | ||
| 78 | error = -EINVAL; | ||
| 79 | break; | ||
| 80 | } | ||
| 81 | sscanf(y, "%u", &ls->jid); | ||
| 82 | |||
| 83 | } else if (!strcmp(x, "first")) { | ||
| 84 | if (!y) { | ||
| 85 | log_error("need argument to first"); | ||
| 86 | error = -EINVAL; | ||
| 87 | break; | ||
| 88 | } | ||
| 89 | sscanf(y, "%u", &ls->first); | ||
| 90 | |||
| 91 | } else if (!strcmp(x, "id")) { | ||
| 92 | if (!y) { | ||
| 93 | log_error("need argument to id"); | ||
| 94 | error = -EINVAL; | ||
| 95 | break; | ||
| 96 | } | ||
| 97 | sscanf(y, "%u", &ls->id); | ||
| 98 | |||
| 99 | } else if (!strcmp(x, "nodir")) { | ||
| 100 | if (!y) { | ||
| 101 | log_error("need argument to nodir"); | ||
| 102 | error = -EINVAL; | ||
| 103 | break; | ||
| 104 | } | ||
| 105 | sscanf(y, "%u", nodir); | ||
| 106 | |||
| 107 | } else { | ||
| 108 | log_error("unkonwn option: %s", x); | ||
| 109 | error = -EINVAL; | ||
| 110 | break; | ||
| 111 | } | ||
| 112 | } | ||
| 113 | |||
| 114 | return error; | ||
| 115 | } | ||
| 116 | |||
| 117 | static int gdlm_mount(char *table_name, char *host_data, | ||
| 118 | lm_callback_t cb, void *cb_data, | ||
| 119 | unsigned int min_lvb_size, int flags, | ||
| 120 | struct lm_lockstruct *lockstruct, | ||
| 121 | struct kobject *fskobj) | ||
| 122 | { | ||
| 123 | struct gdlm_ls *ls; | ||
| 124 | int error = -ENOMEM, nodir = 0; | ||
| 125 | |||
| 126 | if (min_lvb_size > GDLM_LVB_SIZE) | ||
| 127 | goto out; | ||
| 128 | |||
| 129 | ls = init_gdlm(cb, cb_data, flags, table_name); | ||
| 130 | if (!ls) | ||
| 131 | goto out; | ||
| 132 | |||
| 133 | error = make_args(ls, host_data, &nodir); | ||
| 134 | if (error) | ||
| 135 | goto out; | ||
| 136 | |||
| 137 | error = gdlm_init_threads(ls); | ||
| 138 | if (error) | ||
| 139 | goto out_free; | ||
| 140 | |||
| 141 | error = gdlm_kobject_setup(ls, fskobj); | ||
| 142 | if (error) | ||
| 143 | goto out_thread; | ||
| 144 | |||
| 145 | error = dlm_new_lockspace(ls->fsname, strlen(ls->fsname), | ||
| 146 | &ls->dlm_lockspace, | ||
| 147 | DLM_LSFL_FS | DLM_LSFL_NEWEXCL | | ||
| 148 | (nodir ? DLM_LSFL_NODIR : 0), | ||
| 149 | GDLM_LVB_SIZE); | ||
| 150 | if (error) { | ||
| 151 | log_error("dlm_new_lockspace error %d", error); | ||
| 152 | goto out_kobj; | ||
| 153 | } | ||
| 154 | |||
| 155 | lockstruct->ls_jid = ls->jid; | ||
| 156 | lockstruct->ls_first = ls->first; | ||
| 157 | lockstruct->ls_lockspace = ls; | ||
| 158 | lockstruct->ls_ops = &gdlm_ops; | ||
| 159 | lockstruct->ls_flags = 0; | ||
| 160 | lockstruct->ls_lvb_size = GDLM_LVB_SIZE; | ||
| 161 | return 0; | ||
| 162 | |||
| 163 | out_kobj: | ||
| 164 | gdlm_kobject_release(ls); | ||
| 165 | out_thread: | ||
| 166 | gdlm_release_threads(ls); | ||
| 167 | out_free: | ||
| 168 | kfree(ls); | ||
| 169 | out: | ||
| 170 | return error; | ||
| 171 | } | ||
| 172 | |||
| 173 | static void gdlm_unmount(void *lockspace) | ||
| 174 | { | ||
| 175 | struct gdlm_ls *ls = lockspace; | ||
| 176 | |||
| 177 | log_debug("unmount flags %lx", ls->flags); | ||
| 178 | |||
| 179 | /* FIXME: serialize unmount and withdraw in case they | ||
| 180 | happen at once. Also, if unmount follows withdraw, | ||
| 181 | wait for withdraw to finish. */ | ||
| 182 | |||
| 183 | if (test_bit(DFL_WITHDRAW, &ls->flags)) | ||
| 184 | goto out; | ||
| 185 | |||
| 186 | gdlm_kobject_release(ls); | ||
| 187 | dlm_release_lockspace(ls->dlm_lockspace, 2); | ||
| 188 | gdlm_release_threads(ls); | ||
| 189 | BUG_ON(ls->all_locks_count); | ||
| 190 | out: | ||
| 191 | kfree(ls); | ||
| 192 | } | ||
| 193 | |||
| 194 | static void gdlm_recovery_done(void *lockspace, unsigned int jid, | ||
| 195 | unsigned int message) | ||
| 196 | { | ||
| 197 | char env_jid[20]; | ||
| 198 | char env_status[20]; | ||
| 199 | char *envp[] = { env_jid, env_status, NULL }; | ||
| 200 | struct gdlm_ls *ls = lockspace; | ||
| 201 | ls->recover_jid_done = jid; | ||
| 202 | ls->recover_jid_status = message; | ||
| 203 | sprintf(env_jid, "JID=%d", jid); | ||
| 204 | sprintf(env_status, "RECOVERY=%s", | ||
| 205 | message == LM_RD_SUCCESS ? "Done" : "Failed"); | ||
| 206 | kobject_uevent_env(&ls->kobj, KOBJ_CHANGE, envp); | ||
| 207 | } | ||
| 208 | |||
| 209 | static void gdlm_others_may_mount(void *lockspace) | ||
| 210 | { | ||
| 211 | char *message = "FIRSTMOUNT=Done"; | ||
| 212 | char *envp[] = { message, NULL }; | ||
| 213 | struct gdlm_ls *ls = lockspace; | ||
| 214 | ls->first_done = 1; | ||
| 215 | kobject_uevent_env(&ls->kobj, KOBJ_CHANGE, envp); | ||
| 216 | } | ||
| 217 | |||
| 218 | /* Userspace gets the offline uevent, blocks new gfs locks on | ||
| 219 | other mounters, and lets us know (sets WITHDRAW flag). Then, | ||
| 220 | userspace leaves the mount group while we leave the lockspace. */ | ||
| 221 | |||
| 222 | static void gdlm_withdraw(void *lockspace) | ||
| 223 | { | ||
| 224 | struct gdlm_ls *ls = lockspace; | ||
| 225 | |||
| 226 | kobject_uevent(&ls->kobj, KOBJ_OFFLINE); | ||
| 227 | |||
| 228 | wait_event_interruptible(ls->wait_control, | ||
| 229 | test_bit(DFL_WITHDRAW, &ls->flags)); | ||
| 230 | |||
| 231 | dlm_release_lockspace(ls->dlm_lockspace, 2); | ||
| 232 | gdlm_release_threads(ls); | ||
| 233 | gdlm_kobject_release(ls); | ||
| 234 | } | ||
| 235 | |||
| 236 | static int gdlm_plock(void *lockspace, struct lm_lockname *name, | ||
| 237 | struct file *file, int cmd, struct file_lock *fl) | ||
| 238 | { | ||
| 239 | struct gdlm_ls *ls = lockspace; | ||
| 240 | return dlm_posix_lock(ls->dlm_lockspace, name->ln_number, file, cmd, fl); | ||
| 241 | } | ||
| 242 | |||
| 243 | static int gdlm_punlock(void *lockspace, struct lm_lockname *name, | ||
| 244 | struct file *file, struct file_lock *fl) | ||
| 245 | { | ||
| 246 | struct gdlm_ls *ls = lockspace; | ||
| 247 | return dlm_posix_unlock(ls->dlm_lockspace, name->ln_number, file, fl); | ||
| 248 | } | ||
| 249 | |||
| 250 | static int gdlm_plock_get(void *lockspace, struct lm_lockname *name, | ||
| 251 | struct file *file, struct file_lock *fl) | ||
| 252 | { | ||
| 253 | struct gdlm_ls *ls = lockspace; | ||
| 254 | return dlm_posix_get(ls->dlm_lockspace, name->ln_number, file, fl); | ||
| 255 | } | ||
| 256 | |||
| 257 | const struct lm_lockops gdlm_ops = { | ||
| 258 | .lm_proto_name = "lock_dlm", | ||
| 259 | .lm_mount = gdlm_mount, | ||
| 260 | .lm_others_may_mount = gdlm_others_may_mount, | ||
| 261 | .lm_unmount = gdlm_unmount, | ||
| 262 | .lm_withdraw = gdlm_withdraw, | ||
| 263 | .lm_get_lock = gdlm_get_lock, | ||
| 264 | .lm_put_lock = gdlm_put_lock, | ||
| 265 | .lm_lock = gdlm_lock, | ||
| 266 | .lm_unlock = gdlm_unlock, | ||
| 267 | .lm_plock = gdlm_plock, | ||
| 268 | .lm_punlock = gdlm_punlock, | ||
| 269 | .lm_plock_get = gdlm_plock_get, | ||
| 270 | .lm_cancel = gdlm_cancel, | ||
| 271 | .lm_hold_lvb = gdlm_hold_lvb, | ||
| 272 | .lm_unhold_lvb = gdlm_unhold_lvb, | ||
| 273 | .lm_recovery_done = gdlm_recovery_done, | ||
| 274 | .lm_owner = THIS_MODULE, | ||
| 275 | }; | ||
| 276 | |||
diff --git a/fs/gfs2/locking/dlm/sysfs.c b/fs/gfs2/locking/dlm/sysfs.c deleted file mode 100644 index 9b7edcf7bd49..000000000000 --- a/fs/gfs2/locking/dlm/sysfs.c +++ /dev/null | |||
| @@ -1,226 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. | ||
| 3 | * Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved. | ||
| 4 | * | ||
| 5 | * This copyrighted material is made available to anyone wishing to use, | ||
| 6 | * modify, copy, or redistribute it subject to the terms and conditions | ||
| 7 | * of the GNU General Public License version 2. | ||
| 8 | */ | ||
| 9 | |||
| 10 | #include <linux/ctype.h> | ||
| 11 | #include <linux/stat.h> | ||
| 12 | |||
| 13 | #include "lock_dlm.h" | ||
| 14 | |||
| 15 | static ssize_t proto_name_show(struct gdlm_ls *ls, char *buf) | ||
| 16 | { | ||
| 17 | return sprintf(buf, "%s\n", gdlm_ops.lm_proto_name); | ||
| 18 | } | ||
| 19 | |||
| 20 | static ssize_t block_show(struct gdlm_ls *ls, char *buf) | ||
| 21 | { | ||
| 22 | ssize_t ret; | ||
| 23 | int val = 0; | ||
| 24 | |||
| 25 | if (test_bit(DFL_BLOCK_LOCKS, &ls->flags)) | ||
| 26 | val = 1; | ||
| 27 | ret = sprintf(buf, "%d\n", val); | ||
| 28 | return ret; | ||
| 29 | } | ||
| 30 | |||
| 31 | static ssize_t block_store(struct gdlm_ls *ls, const char *buf, size_t len) | ||
| 32 | { | ||
| 33 | ssize_t ret = len; | ||
| 34 | int val; | ||
| 35 | |||
| 36 | val = simple_strtol(buf, NULL, 0); | ||
| 37 | |||
| 38 | if (val == 1) | ||
| 39 | set_bit(DFL_BLOCK_LOCKS, &ls->flags); | ||
| 40 | else if (val == 0) { | ||
| 41 | clear_bit(DFL_BLOCK_LOCKS, &ls->flags); | ||
| 42 | gdlm_submit_delayed(ls); | ||
| 43 | } else { | ||
| 44 | ret = -EINVAL; | ||
| 45 | } | ||
| 46 | return ret; | ||
| 47 | } | ||
| 48 | |||
| 49 | static ssize_t withdraw_show(struct gdlm_ls *ls, char *buf) | ||
| 50 | { | ||
| 51 | ssize_t ret; | ||
| 52 | int val = 0; | ||
| 53 | |||
| 54 | if (test_bit(DFL_WITHDRAW, &ls->flags)) | ||
| 55 | val = 1; | ||
| 56 | ret = sprintf(buf, "%d\n", val); | ||
| 57 | return ret; | ||
| 58 | } | ||
| 59 | |||
| 60 | static ssize_t withdraw_store(struct gdlm_ls *ls, const char *buf, size_t len) | ||
| 61 | { | ||
| 62 | ssize_t ret = len; | ||
| 63 | int val; | ||
| 64 | |||
| 65 | val = simple_strtol(buf, NULL, 0); | ||
| 66 | |||
| 67 | if (val == 1) | ||
| 68 | set_bit(DFL_WITHDRAW, &ls->flags); | ||
| 69 | else | ||
| 70 | ret = -EINVAL; | ||
| 71 | wake_up(&ls->wait_control); | ||
| 72 | return ret; | ||
| 73 | } | ||
| 74 | |||
| 75 | static ssize_t id_show(struct gdlm_ls *ls, char *buf) | ||
| 76 | { | ||
| 77 | return sprintf(buf, "%u\n", ls->id); | ||
| 78 | } | ||
| 79 | |||
| 80 | static ssize_t jid_show(struct gdlm_ls *ls, char *buf) | ||
| 81 | { | ||
| 82 | return sprintf(buf, "%d\n", ls->jid); | ||
| 83 | } | ||
| 84 | |||
| 85 | static ssize_t first_show(struct gdlm_ls *ls, char *buf) | ||
| 86 | { | ||
| 87 | return sprintf(buf, "%d\n", ls->first); | ||
| 88 | } | ||
| 89 | |||
| 90 | static ssize_t first_done_show(struct gdlm_ls *ls, char *buf) | ||
| 91 | { | ||
| 92 | return sprintf(buf, "%d\n", ls->first_done); | ||
| 93 | } | ||
| 94 | |||
| 95 | static ssize_t recover_show(struct gdlm_ls *ls, char *buf) | ||
| 96 | { | ||
| 97 | return sprintf(buf, "%d\n", ls->recover_jid); | ||
| 98 | } | ||
| 99 | |||
| 100 | static ssize_t recover_store(struct gdlm_ls *ls, const char *buf, size_t len) | ||
| 101 | { | ||
| 102 | ls->recover_jid = simple_strtol(buf, NULL, 0); | ||
| 103 | ls->fscb(ls->sdp, LM_CB_NEED_RECOVERY, &ls->recover_jid); | ||
| 104 | return len; | ||
| 105 | } | ||
| 106 | |||
| 107 | static ssize_t recover_done_show(struct gdlm_ls *ls, char *buf) | ||
| 108 | { | ||
| 109 | return sprintf(buf, "%d\n", ls->recover_jid_done); | ||
| 110 | } | ||
| 111 | |||
| 112 | static ssize_t recover_status_show(struct gdlm_ls *ls, char *buf) | ||
| 113 | { | ||
| 114 | return sprintf(buf, "%d\n", ls->recover_jid_status); | ||
| 115 | } | ||
| 116 | |||
| 117 | struct gdlm_attr { | ||
| 118 | struct attribute attr; | ||
| 119 | ssize_t (*show)(struct gdlm_ls *, char *); | ||
| 120 | ssize_t (*store)(struct gdlm_ls *, const char *, size_t); | ||
| 121 | }; | ||
| 122 | |||
| 123 | #define GDLM_ATTR(_name,_mode,_show,_store) \ | ||
| 124 | static struct gdlm_attr gdlm_attr_##_name = __ATTR(_name,_mode,_show,_store) | ||
| 125 | |||
| 126 | GDLM_ATTR(proto_name, 0444, proto_name_show, NULL); | ||
| 127 | GDLM_ATTR(block, 0644, block_show, block_store); | ||
| 128 | GDLM_ATTR(withdraw, 0644, withdraw_show, withdraw_store); | ||
| 129 | GDLM_ATTR(id, 0444, id_show, NULL); | ||
| 130 | GDLM_ATTR(jid, 0444, jid_show, NULL); | ||
| 131 | GDLM_ATTR(first, 0444, first_show, NULL); | ||
| 132 | GDLM_ATTR(first_done, 0444, first_done_show, NULL); | ||
| 133 | GDLM_ATTR(recover, 0644, recover_show, recover_store); | ||
| 134 | GDLM_ATTR(recover_done, 0444, recover_done_show, NULL); | ||
| 135 | GDLM_ATTR(recover_status, 0444, recover_status_show, NULL); | ||
| 136 | |||
| 137 | static struct attribute *gdlm_attrs[] = { | ||
| 138 | &gdlm_attr_proto_name.attr, | ||
| 139 | &gdlm_attr_block.attr, | ||
| 140 | &gdlm_attr_withdraw.attr, | ||
| 141 | &gdlm_attr_id.attr, | ||
| 142 | &gdlm_attr_jid.attr, | ||
| 143 | &gdlm_attr_first.attr, | ||
| 144 | &gdlm_attr_first_done.attr, | ||
| 145 | &gdlm_attr_recover.attr, | ||
| 146 | &gdlm_attr_recover_done.attr, | ||
| 147 | &gdlm_attr_recover_status.attr, | ||
| 148 | NULL, | ||
| 149 | }; | ||
| 150 | |||
| 151 | static ssize_t gdlm_attr_show(struct kobject *kobj, struct attribute *attr, | ||
| 152 | char *buf) | ||
| 153 | { | ||
| 154 | struct gdlm_ls *ls = container_of(kobj, struct gdlm_ls, kobj); | ||
| 155 | struct gdlm_attr *a = container_of(attr, struct gdlm_attr, attr); | ||
| 156 | return a->show ? a->show(ls, buf) : 0; | ||
| 157 | } | ||
| 158 | |||
| 159 | static ssize_t gdlm_attr_store(struct kobject *kobj, struct attribute *attr, | ||
| 160 | const char *buf, size_t len) | ||
| 161 | { | ||
| 162 | struct gdlm_ls *ls = container_of(kobj, struct gdlm_ls, kobj); | ||
| 163 | struct gdlm_attr *a = container_of(attr, struct gdlm_attr, attr); | ||
| 164 | return a->store ? a->store(ls, buf, len) : len; | ||
| 165 | } | ||
| 166 | |||
| 167 | static struct sysfs_ops gdlm_attr_ops = { | ||
| 168 | .show = gdlm_attr_show, | ||
| 169 | .store = gdlm_attr_store, | ||
| 170 | }; | ||
| 171 | |||
| 172 | static struct kobj_type gdlm_ktype = { | ||
| 173 | .default_attrs = gdlm_attrs, | ||
| 174 | .sysfs_ops = &gdlm_attr_ops, | ||
| 175 | }; | ||
| 176 | |||
| 177 | static struct kset *gdlm_kset; | ||
| 178 | |||
| 179 | int gdlm_kobject_setup(struct gdlm_ls *ls, struct kobject *fskobj) | ||
| 180 | { | ||
| 181 | int error; | ||
| 182 | |||
| 183 | ls->kobj.kset = gdlm_kset; | ||
| 184 | error = kobject_init_and_add(&ls->kobj, &gdlm_ktype, fskobj, | ||
| 185 | "lock_module"); | ||
| 186 | if (error) | ||
| 187 | log_error("can't register kobj %d", error); | ||
| 188 | kobject_uevent(&ls->kobj, KOBJ_ADD); | ||
| 189 | |||
| 190 | return error; | ||
| 191 | } | ||
| 192 | |||
| 193 | void gdlm_kobject_release(struct gdlm_ls *ls) | ||
| 194 | { | ||
| 195 | kobject_put(&ls->kobj); | ||
| 196 | } | ||
| 197 | |||
| 198 | static int gdlm_uevent(struct kset *kset, struct kobject *kobj, | ||
| 199 | struct kobj_uevent_env *env) | ||
| 200 | { | ||
| 201 | struct gdlm_ls *ls = container_of(kobj, struct gdlm_ls, kobj); | ||
| 202 | add_uevent_var(env, "LOCKTABLE=%s:%s", ls->clustername, ls->fsname); | ||
| 203 | add_uevent_var(env, "LOCKPROTO=lock_dlm"); | ||
| 204 | return 0; | ||
| 205 | } | ||
| 206 | |||
| 207 | static struct kset_uevent_ops gdlm_uevent_ops = { | ||
| 208 | .uevent = gdlm_uevent, | ||
| 209 | }; | ||
| 210 | |||
| 211 | |||
| 212 | int gdlm_sysfs_init(void) | ||
| 213 | { | ||
| 214 | gdlm_kset = kset_create_and_add("lock_dlm", &gdlm_uevent_ops, kernel_kobj); | ||
| 215 | if (!gdlm_kset) { | ||
| 216 | printk(KERN_WARNING "%s: can not create kset\n", __func__); | ||
| 217 | return -ENOMEM; | ||
| 218 | } | ||
| 219 | return 0; | ||
| 220 | } | ||
| 221 | |||
| 222 | void gdlm_sysfs_exit(void) | ||
| 223 | { | ||
| 224 | kset_unregister(gdlm_kset); | ||
| 225 | } | ||
| 226 | |||
diff --git a/fs/gfs2/locking/dlm/thread.c b/fs/gfs2/locking/dlm/thread.c deleted file mode 100644 index 38823efd698c..000000000000 --- a/fs/gfs2/locking/dlm/thread.c +++ /dev/null | |||
| @@ -1,68 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. | ||
| 3 | * Copyright (C) 2004-2005 Red Hat, Inc. All rights reserved. | ||
| 4 | * | ||
| 5 | * This copyrighted material is made available to anyone wishing to use, | ||
| 6 | * modify, copy, or redistribute it subject to the terms and conditions | ||
| 7 | * of the GNU General Public License version 2. | ||
| 8 | */ | ||
| 9 | |||
| 10 | #include "lock_dlm.h" | ||
| 11 | |||
| 12 | static inline int no_work(struct gdlm_ls *ls) | ||
| 13 | { | ||
| 14 | int ret; | ||
| 15 | |||
| 16 | spin_lock(&ls->async_lock); | ||
| 17 | ret = list_empty(&ls->submit); | ||
| 18 | spin_unlock(&ls->async_lock); | ||
| 19 | |||
| 20 | return ret; | ||
| 21 | } | ||
| 22 | |||
| 23 | static int gdlm_thread(void *data) | ||
| 24 | { | ||
| 25 | struct gdlm_ls *ls = (struct gdlm_ls *) data; | ||
| 26 | struct gdlm_lock *lp = NULL; | ||
| 27 | |||
| 28 | while (!kthread_should_stop()) { | ||
| 29 | wait_event_interruptible(ls->thread_wait, | ||
| 30 | !no_work(ls) || kthread_should_stop()); | ||
| 31 | |||
| 32 | spin_lock(&ls->async_lock); | ||
| 33 | |||
| 34 | if (!list_empty(&ls->submit)) { | ||
| 35 | lp = list_entry(ls->submit.next, struct gdlm_lock, | ||
| 36 | delay_list); | ||
| 37 | list_del_init(&lp->delay_list); | ||
| 38 | spin_unlock(&ls->async_lock); | ||
| 39 | gdlm_do_lock(lp); | ||
| 40 | spin_lock(&ls->async_lock); | ||
| 41 | } | ||
| 42 | spin_unlock(&ls->async_lock); | ||
| 43 | } | ||
| 44 | |||
| 45 | return 0; | ||
| 46 | } | ||
| 47 | |||
| 48 | int gdlm_init_threads(struct gdlm_ls *ls) | ||
| 49 | { | ||
| 50 | struct task_struct *p; | ||
| 51 | int error; | ||
| 52 | |||
| 53 | p = kthread_run(gdlm_thread, ls, "lock_dlm"); | ||
| 54 | error = IS_ERR(p); | ||
| 55 | if (error) { | ||
| 56 | log_error("can't start lock_dlm thread %d", error); | ||
| 57 | return error; | ||
| 58 | } | ||
| 59 | ls->thread = p; | ||
| 60 | |||
| 61 | return 0; | ||
| 62 | } | ||
| 63 | |||
| 64 | void gdlm_release_threads(struct gdlm_ls *ls) | ||
| 65 | { | ||
| 66 | kthread_stop(ls->thread); | ||
| 67 | } | ||
| 68 | |||
diff --git a/fs/gfs2/log.c b/fs/gfs2/log.c index ad305854bdc6..98918a756410 100644 --- a/fs/gfs2/log.c +++ b/fs/gfs2/log.c | |||
| @@ -14,7 +14,6 @@ | |||
| 14 | #include <linux/buffer_head.h> | 14 | #include <linux/buffer_head.h> |
| 15 | #include <linux/gfs2_ondisk.h> | 15 | #include <linux/gfs2_ondisk.h> |
| 16 | #include <linux/crc32.h> | 16 | #include <linux/crc32.h> |
| 17 | #include <linux/lm_interface.h> | ||
| 18 | #include <linux/delay.h> | 17 | #include <linux/delay.h> |
| 19 | #include <linux/kthread.h> | 18 | #include <linux/kthread.h> |
| 20 | #include <linux/freezer.h> | 19 | #include <linux/freezer.h> |
diff --git a/fs/gfs2/lops.c b/fs/gfs2/lops.c index 4390f6f4047d..80e4f5f898bb 100644 --- a/fs/gfs2/lops.c +++ b/fs/gfs2/lops.c | |||
| @@ -13,7 +13,6 @@ | |||
| 13 | #include <linux/completion.h> | 13 | #include <linux/completion.h> |
| 14 | #include <linux/buffer_head.h> | 14 | #include <linux/buffer_head.h> |
| 15 | #include <linux/gfs2_ondisk.h> | 15 | #include <linux/gfs2_ondisk.h> |
| 16 | #include <linux/lm_interface.h> | ||
| 17 | 16 | ||
| 18 | #include "gfs2.h" | 17 | #include "gfs2.h" |
| 19 | #include "incore.h" | 18 | #include "incore.h" |
diff --git a/fs/gfs2/main.c b/fs/gfs2/main.c index 7cacfde32194..a6892ed0840a 100644 --- a/fs/gfs2/main.c +++ b/fs/gfs2/main.c | |||
| @@ -14,7 +14,6 @@ | |||
| 14 | #include <linux/module.h> | 14 | #include <linux/module.h> |
| 15 | #include <linux/init.h> | 15 | #include <linux/init.h> |
| 16 | #include <linux/gfs2_ondisk.h> | 16 | #include <linux/gfs2_ondisk.h> |
| 17 | #include <linux/lm_interface.h> | ||
| 18 | #include <asm/atomic.h> | 17 | #include <asm/atomic.h> |
| 19 | 18 | ||
| 20 | #include "gfs2.h" | 19 | #include "gfs2.h" |
| @@ -23,6 +22,12 @@ | |||
| 23 | #include "sys.h" | 22 | #include "sys.h" |
| 24 | #include "util.h" | 23 | #include "util.h" |
| 25 | #include "glock.h" | 24 | #include "glock.h" |
| 25 | #include "quota.h" | ||
| 26 | |||
| 27 | static struct shrinker qd_shrinker = { | ||
| 28 | .shrink = gfs2_shrink_qd_memory, | ||
| 29 | .seeks = DEFAULT_SEEKS, | ||
| 30 | }; | ||
| 26 | 31 | ||
| 27 | static void gfs2_init_inode_once(void *foo) | 32 | static void gfs2_init_inode_once(void *foo) |
| 28 | { | 33 | { |
| @@ -41,8 +46,6 @@ static void gfs2_init_glock_once(void *foo) | |||
| 41 | INIT_HLIST_NODE(&gl->gl_list); | 46 | INIT_HLIST_NODE(&gl->gl_list); |
| 42 | spin_lock_init(&gl->gl_spin); | 47 | spin_lock_init(&gl->gl_spin); |
| 43 | INIT_LIST_HEAD(&gl->gl_holders); | 48 | INIT_LIST_HEAD(&gl->gl_holders); |
| 44 | gl->gl_lvb = NULL; | ||
| 45 | atomic_set(&gl->gl_lvb_count, 0); | ||
| 46 | INIT_LIST_HEAD(&gl->gl_lru); | 49 | INIT_LIST_HEAD(&gl->gl_lru); |
| 47 | INIT_LIST_HEAD(&gl->gl_ail_list); | 50 | INIT_LIST_HEAD(&gl->gl_ail_list); |
| 48 | atomic_set(&gl->gl_ail_count, 0); | 51 | atomic_set(&gl->gl_ail_count, 0); |
| @@ -100,6 +103,8 @@ static int __init init_gfs2_fs(void) | |||
| 100 | if (!gfs2_quotad_cachep) | 103 | if (!gfs2_quotad_cachep) |
| 101 | goto fail; | 104 | goto fail; |
| 102 | 105 | ||
| 106 | register_shrinker(&qd_shrinker); | ||
| 107 | |||
| 103 | error = register_filesystem(&gfs2_fs_type); | 108 | error = register_filesystem(&gfs2_fs_type); |
| 104 | if (error) | 109 | if (error) |
| 105 | goto fail; | 110 | goto fail; |
| @@ -117,6 +122,7 @@ static int __init init_gfs2_fs(void) | |||
| 117 | fail_unregister: | 122 | fail_unregister: |
| 118 | unregister_filesystem(&gfs2_fs_type); | 123 | unregister_filesystem(&gfs2_fs_type); |
| 119 | fail: | 124 | fail: |
| 125 | unregister_shrinker(&qd_shrinker); | ||
| 120 | gfs2_glock_exit(); | 126 | gfs2_glock_exit(); |
| 121 | 127 | ||
| 122 | if (gfs2_quotad_cachep) | 128 | if (gfs2_quotad_cachep) |
| @@ -145,6 +151,7 @@ fail: | |||
| 145 | 151 | ||
| 146 | static void __exit exit_gfs2_fs(void) | 152 | static void __exit exit_gfs2_fs(void) |
| 147 | { | 153 | { |
| 154 | unregister_shrinker(&qd_shrinker); | ||
| 148 | gfs2_glock_exit(); | 155 | gfs2_glock_exit(); |
| 149 | gfs2_unregister_debugfs(); | 156 | gfs2_unregister_debugfs(); |
| 150 | unregister_filesystem(&gfs2_fs_type); | 157 | unregister_filesystem(&gfs2_fs_type); |
diff --git a/fs/gfs2/meta_io.c b/fs/gfs2/meta_io.c index 09853620c951..8d6f13256b26 100644 --- a/fs/gfs2/meta_io.c +++ b/fs/gfs2/meta_io.c | |||
| @@ -19,7 +19,6 @@ | |||
| 19 | #include <linux/delay.h> | 19 | #include <linux/delay.h> |
| 20 | #include <linux/bio.h> | 20 | #include <linux/bio.h> |
| 21 | #include <linux/gfs2_ondisk.h> | 21 | #include <linux/gfs2_ondisk.h> |
| 22 | #include <linux/lm_interface.h> | ||
| 23 | 22 | ||
| 24 | #include "gfs2.h" | 23 | #include "gfs2.h" |
| 25 | #include "incore.h" | 24 | #include "incore.h" |
| @@ -90,27 +89,6 @@ void gfs2_aspace_put(struct inode *aspace) | |||
| 90 | } | 89 | } |
| 91 | 90 | ||
| 92 | /** | 91 | /** |
| 93 | * gfs2_meta_inval - Invalidate all buffers associated with a glock | ||
| 94 | * @gl: the glock | ||
| 95 | * | ||
| 96 | */ | ||
| 97 | |||
| 98 | void gfs2_meta_inval(struct gfs2_glock *gl) | ||
| 99 | { | ||
| 100 | struct gfs2_sbd *sdp = gl->gl_sbd; | ||
| 101 | struct inode *aspace = gl->gl_aspace; | ||
| 102 | struct address_space *mapping = gl->gl_aspace->i_mapping; | ||
| 103 | |||
| 104 | gfs2_assert_withdraw(sdp, !atomic_read(&gl->gl_ail_count)); | ||
| 105 | |||
| 106 | atomic_inc(&aspace->i_writecount); | ||
| 107 | truncate_inode_pages(mapping, 0); | ||
| 108 | atomic_dec(&aspace->i_writecount); | ||
| 109 | |||
| 110 | gfs2_assert_withdraw(sdp, !mapping->nrpages); | ||
| 111 | } | ||
| 112 | |||
| 113 | /** | ||
| 114 | * gfs2_meta_sync - Sync all buffers associated with a glock | 92 | * gfs2_meta_sync - Sync all buffers associated with a glock |
| 115 | * @gl: The glock | 93 | * @gl: The glock |
| 116 | * | 94 | * |
diff --git a/fs/gfs2/meta_io.h b/fs/gfs2/meta_io.h index b1a5f3674d43..de270c2f9b63 100644 --- a/fs/gfs2/meta_io.h +++ b/fs/gfs2/meta_io.h | |||
| @@ -40,7 +40,6 @@ static inline void gfs2_buffer_copy_tail(struct buffer_head *to_bh, | |||
| 40 | struct inode *gfs2_aspace_get(struct gfs2_sbd *sdp); | 40 | struct inode *gfs2_aspace_get(struct gfs2_sbd *sdp); |
| 41 | void gfs2_aspace_put(struct inode *aspace); | 41 | void gfs2_aspace_put(struct inode *aspace); |
| 42 | 42 | ||
| 43 | void gfs2_meta_inval(struct gfs2_glock *gl); | ||
| 44 | void gfs2_meta_sync(struct gfs2_glock *gl); | 43 | void gfs2_meta_sync(struct gfs2_glock *gl); |
| 45 | 44 | ||
| 46 | struct buffer_head *gfs2_meta_new(struct gfs2_glock *gl, u64 blkno); | 45 | struct buffer_head *gfs2_meta_new(struct gfs2_glock *gl, u64 blkno); |
diff --git a/fs/gfs2/mount.c b/fs/gfs2/mount.c index 3cb0a44ba023..f7e8527a21e0 100644 --- a/fs/gfs2/mount.c +++ b/fs/gfs2/mount.c | |||
| @@ -12,12 +12,11 @@ | |||
| 12 | #include <linux/completion.h> | 12 | #include <linux/completion.h> |
| 13 | #include <linux/buffer_head.h> | 13 | #include <linux/buffer_head.h> |
| 14 | #include <linux/gfs2_ondisk.h> | 14 | #include <linux/gfs2_ondisk.h> |
| 15 | #include <linux/lm_interface.h> | ||
| 16 | #include <linux/parser.h> | 15 | #include <linux/parser.h> |
| 17 | 16 | ||
| 18 | #include "gfs2.h" | 17 | #include "gfs2.h" |
| 19 | #include "incore.h" | 18 | #include "incore.h" |
| 20 | #include "mount.h" | 19 | #include "super.h" |
| 21 | #include "sys.h" | 20 | #include "sys.h" |
| 22 | #include "util.h" | 21 | #include "util.h" |
| 23 | 22 | ||
| @@ -37,11 +36,15 @@ enum { | |||
| 37 | Opt_quota_off, | 36 | Opt_quota_off, |
| 38 | Opt_quota_account, | 37 | Opt_quota_account, |
| 39 | Opt_quota_on, | 38 | Opt_quota_on, |
| 39 | Opt_quota, | ||
| 40 | Opt_noquota, | ||
| 40 | Opt_suiddir, | 41 | Opt_suiddir, |
| 41 | Opt_nosuiddir, | 42 | Opt_nosuiddir, |
| 42 | Opt_data_writeback, | 43 | Opt_data_writeback, |
| 43 | Opt_data_ordered, | 44 | Opt_data_ordered, |
| 44 | Opt_meta, | 45 | Opt_meta, |
| 46 | Opt_discard, | ||
| 47 | Opt_nodiscard, | ||
| 45 | Opt_err, | 48 | Opt_err, |
| 46 | }; | 49 | }; |
| 47 | 50 | ||
| @@ -61,11 +64,15 @@ static const match_table_t tokens = { | |||
| 61 | {Opt_quota_off, "quota=off"}, | 64 | {Opt_quota_off, "quota=off"}, |
| 62 | {Opt_quota_account, "quota=account"}, | 65 | {Opt_quota_account, "quota=account"}, |
| 63 | {Opt_quota_on, "quota=on"}, | 66 | {Opt_quota_on, "quota=on"}, |
| 67 | {Opt_quota, "quota"}, | ||
| 68 | {Opt_noquota, "noquota"}, | ||
| 64 | {Opt_suiddir, "suiddir"}, | 69 | {Opt_suiddir, "suiddir"}, |
| 65 | {Opt_nosuiddir, "nosuiddir"}, | 70 | {Opt_nosuiddir, "nosuiddir"}, |
| 66 | {Opt_data_writeback, "data=writeback"}, | 71 | {Opt_data_writeback, "data=writeback"}, |
| 67 | {Opt_data_ordered, "data=ordered"}, | 72 | {Opt_data_ordered, "data=ordered"}, |
| 68 | {Opt_meta, "meta"}, | 73 | {Opt_meta, "meta"}, |
| 74 | {Opt_discard, "discard"}, | ||
| 75 | {Opt_nodiscard, "nodiscard"}, | ||
| 69 | {Opt_err, NULL} | 76 | {Opt_err, NULL} |
| 70 | }; | 77 | }; |
| 71 | 78 | ||
| @@ -77,101 +84,46 @@ static const match_table_t tokens = { | |||
| 77 | * Return: errno | 84 | * Return: errno |
| 78 | */ | 85 | */ |
| 79 | 86 | ||
| 80 | int gfs2_mount_args(struct gfs2_sbd *sdp, char *data_arg, int remount) | 87 | int gfs2_mount_args(struct gfs2_sbd *sdp, struct gfs2_args *args, char *options) |
| 81 | { | 88 | { |
| 82 | struct gfs2_args *args = &sdp->sd_args; | 89 | char *o; |
| 83 | char *data = data_arg; | 90 | int token; |
| 84 | char *options, *o, *v; | 91 | substring_t tmp[MAX_OPT_ARGS]; |
| 85 | int error = 0; | ||
| 86 | |||
| 87 | if (!remount) { | ||
| 88 | /* Set some defaults */ | ||
| 89 | args->ar_quota = GFS2_QUOTA_DEFAULT; | ||
| 90 | args->ar_data = GFS2_DATA_DEFAULT; | ||
| 91 | } | ||
| 92 | 92 | ||
| 93 | /* Split the options into tokens with the "," character and | 93 | /* Split the options into tokens with the "," character and |
| 94 | process them */ | 94 | process them */ |
| 95 | 95 | ||
| 96 | for (options = data; (o = strsep(&options, ",")); ) { | 96 | while (1) { |
| 97 | int token; | 97 | o = strsep(&options, ","); |
| 98 | substring_t tmp[MAX_OPT_ARGS]; | 98 | if (o == NULL) |
| 99 | 99 | break; | |
| 100 | if (!*o) | 100 | if (*o == '\0') |
| 101 | continue; | 101 | continue; |
| 102 | 102 | ||
| 103 | token = match_token(o, tokens, tmp); | 103 | token = match_token(o, tokens, tmp); |
| 104 | switch (token) { | 104 | switch (token) { |
| 105 | case Opt_lockproto: | 105 | case Opt_lockproto: |
| 106 | v = match_strdup(&tmp[0]); | 106 | match_strlcpy(args->ar_lockproto, &tmp[0], |
| 107 | if (!v) { | 107 | GFS2_LOCKNAME_LEN); |
| 108 | fs_info(sdp, "no memory for lockproto\n"); | ||
| 109 | error = -ENOMEM; | ||
| 110 | goto out_error; | ||
| 111 | } | ||
| 112 | |||
| 113 | if (remount && strcmp(v, args->ar_lockproto)) { | ||
| 114 | kfree(v); | ||
| 115 | goto cant_remount; | ||
| 116 | } | ||
| 117 | |||
| 118 | strncpy(args->ar_lockproto, v, GFS2_LOCKNAME_LEN); | ||
| 119 | args->ar_lockproto[GFS2_LOCKNAME_LEN - 1] = 0; | ||
| 120 | kfree(v); | ||
| 121 | break; | 108 | break; |
| 122 | case Opt_locktable: | 109 | case Opt_locktable: |
| 123 | v = match_strdup(&tmp[0]); | 110 | match_strlcpy(args->ar_locktable, &tmp[0], |
| 124 | if (!v) { | 111 | GFS2_LOCKNAME_LEN); |
| 125 | fs_info(sdp, "no memory for locktable\n"); | ||
| 126 | error = -ENOMEM; | ||
| 127 | goto out_error; | ||
| 128 | } | ||
| 129 | |||
| 130 | if (remount && strcmp(v, args->ar_locktable)) { | ||
| 131 | kfree(v); | ||
| 132 | goto cant_remount; | ||
| 133 | } | ||
| 134 | |||
| 135 | strncpy(args->ar_locktable, v, GFS2_LOCKNAME_LEN); | ||
| 136 | args->ar_locktable[GFS2_LOCKNAME_LEN - 1] = 0; | ||
| 137 | kfree(v); | ||
| 138 | break; | 112 | break; |
| 139 | case Opt_hostdata: | 113 | case Opt_hostdata: |
| 140 | v = match_strdup(&tmp[0]); | 114 | match_strlcpy(args->ar_hostdata, &tmp[0], |
| 141 | if (!v) { | 115 | GFS2_LOCKNAME_LEN); |
| 142 | fs_info(sdp, "no memory for hostdata\n"); | ||
| 143 | error = -ENOMEM; | ||
| 144 | goto out_error; | ||
| 145 | } | ||
| 146 | |||
| 147 | if (remount && strcmp(v, args->ar_hostdata)) { | ||
| 148 | kfree(v); | ||
| 149 | goto cant_remount; | ||
| 150 | } | ||
| 151 | |||
| 152 | strncpy(args->ar_hostdata, v, GFS2_LOCKNAME_LEN); | ||
| 153 | args->ar_hostdata[GFS2_LOCKNAME_LEN - 1] = 0; | ||
| 154 | kfree(v); | ||
| 155 | break; | 116 | break; |
| 156 | case Opt_spectator: | 117 | case Opt_spectator: |
| 157 | if (remount && !args->ar_spectator) | ||
| 158 | goto cant_remount; | ||
| 159 | args->ar_spectator = 1; | 118 | args->ar_spectator = 1; |
| 160 | sdp->sd_vfs->s_flags |= MS_RDONLY; | ||
| 161 | break; | 119 | break; |
| 162 | case Opt_ignore_local_fs: | 120 | case Opt_ignore_local_fs: |
| 163 | if (remount && !args->ar_ignore_local_fs) | ||
| 164 | goto cant_remount; | ||
| 165 | args->ar_ignore_local_fs = 1; | 121 | args->ar_ignore_local_fs = 1; |
| 166 | break; | 122 | break; |
| 167 | case Opt_localflocks: | 123 | case Opt_localflocks: |
| 168 | if (remount && !args->ar_localflocks) | ||
| 169 | goto cant_remount; | ||
| 170 | args->ar_localflocks = 1; | 124 | args->ar_localflocks = 1; |
| 171 | break; | 125 | break; |
| 172 | case Opt_localcaching: | 126 | case Opt_localcaching: |
| 173 | if (remount && !args->ar_localcaching) | ||
| 174 | goto cant_remount; | ||
| 175 | args->ar_localcaching = 1; | 127 | args->ar_localcaching = 1; |
| 176 | break; | 128 | break; |
| 177 | case Opt_debug: | 129 | case Opt_debug: |
| @@ -181,25 +133,23 @@ int gfs2_mount_args(struct gfs2_sbd *sdp, char *data_arg, int remount) | |||
| 181 | args->ar_debug = 0; | 133 | args->ar_debug = 0; |
| 182 | break; | 134 | break; |
| 183 | case Opt_upgrade: | 135 | case Opt_upgrade: |
| 184 | if (remount && !args->ar_upgrade) | ||
| 185 | goto cant_remount; | ||
| 186 | args->ar_upgrade = 1; | 136 | args->ar_upgrade = 1; |
| 187 | break; | 137 | break; |
| 188 | case Opt_acl: | 138 | case Opt_acl: |
| 189 | args->ar_posix_acl = 1; | 139 | args->ar_posix_acl = 1; |
| 190 | sdp->sd_vfs->s_flags |= MS_POSIXACL; | ||
| 191 | break; | 140 | break; |
| 192 | case Opt_noacl: | 141 | case Opt_noacl: |
| 193 | args->ar_posix_acl = 0; | 142 | args->ar_posix_acl = 0; |
| 194 | sdp->sd_vfs->s_flags &= ~MS_POSIXACL; | ||
| 195 | break; | 143 | break; |
| 196 | case Opt_quota_off: | 144 | case Opt_quota_off: |
| 145 | case Opt_noquota: | ||
| 197 | args->ar_quota = GFS2_QUOTA_OFF; | 146 | args->ar_quota = GFS2_QUOTA_OFF; |
| 198 | break; | 147 | break; |
| 199 | case Opt_quota_account: | 148 | case Opt_quota_account: |
| 200 | args->ar_quota = GFS2_QUOTA_ACCOUNT; | 149 | args->ar_quota = GFS2_QUOTA_ACCOUNT; |
| 201 | break; | 150 | break; |
| 202 | case Opt_quota_on: | 151 | case Opt_quota_on: |
| 152 | case Opt_quota: | ||
| 203 | args->ar_quota = GFS2_QUOTA_ON; | 153 | args->ar_quota = GFS2_QUOTA_ON; |
| 204 | break; | 154 | break; |
| 205 | case Opt_suiddir: | 155 | case Opt_suiddir: |
| @@ -215,29 +165,21 @@ int gfs2_mount_args(struct gfs2_sbd *sdp, char *data_arg, int remount) | |||
| 215 | args->ar_data = GFS2_DATA_ORDERED; | 165 | args->ar_data = GFS2_DATA_ORDERED; |
| 216 | break; | 166 | break; |
| 217 | case Opt_meta: | 167 | case Opt_meta: |
| 218 | if (remount && args->ar_meta != 1) | ||
| 219 | goto cant_remount; | ||
| 220 | args->ar_meta = 1; | 168 | args->ar_meta = 1; |
| 221 | break; | 169 | break; |
| 170 | case Opt_discard: | ||
| 171 | args->ar_discard = 1; | ||
| 172 | break; | ||
| 173 | case Opt_nodiscard: | ||
| 174 | args->ar_discard = 0; | ||
| 175 | break; | ||
| 222 | case Opt_err: | 176 | case Opt_err: |
| 223 | default: | 177 | default: |
| 224 | fs_info(sdp, "unknown option: %s\n", o); | 178 | fs_info(sdp, "invalid mount option: %s\n", o); |
| 225 | error = -EINVAL; | 179 | return -EINVAL; |
| 226 | goto out_error; | ||
| 227 | } | 180 | } |
| 228 | } | 181 | } |
| 229 | 182 | ||
| 230 | out_error: | 183 | return 0; |
| 231 | if (error) | ||
| 232 | fs_info(sdp, "invalid mount option(s)\n"); | ||
| 233 | |||
| 234 | if (data != data_arg) | ||
| 235 | kfree(data); | ||
| 236 | |||
| 237 | return error; | ||
| 238 | |||
| 239 | cant_remount: | ||
| 240 | fs_info(sdp, "can't remount with option %s\n", o); | ||
| 241 | return -EINVAL; | ||
| 242 | } | 184 | } |
| 243 | 185 | ||
diff --git a/fs/gfs2/mount.h b/fs/gfs2/mount.h deleted file mode 100644 index 401288acfdf3..000000000000 --- a/fs/gfs2/mount.h +++ /dev/null | |||
| @@ -1,17 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. | ||
| 3 | * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved. | ||
| 4 | * | ||
| 5 | * This copyrighted material is made available to anyone wishing to use, | ||
| 6 | * modify, copy, or redistribute it subject to the terms and conditions | ||
| 7 | * of the GNU General Public License version 2. | ||
| 8 | */ | ||
| 9 | |||
| 10 | #ifndef __MOUNT_DOT_H__ | ||
| 11 | #define __MOUNT_DOT_H__ | ||
| 12 | |||
| 13 | struct gfs2_sbd; | ||
| 14 | |||
| 15 | int gfs2_mount_args(struct gfs2_sbd *sdp, char *data_arg, int remount); | ||
| 16 | |||
| 17 | #endif /* __MOUNT_DOT_H__ */ | ||
diff --git a/fs/gfs2/ops_address.c b/fs/gfs2/ops_address.c index 4ddab67867eb..a6dde1751e17 100644 --- a/fs/gfs2/ops_address.c +++ b/fs/gfs2/ops_address.c | |||
| @@ -19,7 +19,6 @@ | |||
| 19 | #include <linux/writeback.h> | 19 | #include <linux/writeback.h> |
| 20 | #include <linux/swap.h> | 20 | #include <linux/swap.h> |
| 21 | #include <linux/gfs2_ondisk.h> | 21 | #include <linux/gfs2_ondisk.h> |
| 22 | #include <linux/lm_interface.h> | ||
| 23 | #include <linux/backing-dev.h> | 22 | #include <linux/backing-dev.h> |
| 24 | 23 | ||
| 25 | #include "gfs2.h" | 24 | #include "gfs2.h" |
| @@ -442,6 +441,7 @@ static int stuffed_readpage(struct gfs2_inode *ip, struct page *page) | |||
| 442 | */ | 441 | */ |
| 443 | if (unlikely(page->index)) { | 442 | if (unlikely(page->index)) { |
| 444 | zero_user(page, 0, PAGE_CACHE_SIZE); | 443 | zero_user(page, 0, PAGE_CACHE_SIZE); |
| 444 | SetPageUptodate(page); | ||
| 445 | return 0; | 445 | return 0; |
| 446 | } | 446 | } |
| 447 | 447 | ||
| @@ -1096,6 +1096,7 @@ static const struct address_space_operations gfs2_writeback_aops = { | |||
| 1096 | .releasepage = gfs2_releasepage, | 1096 | .releasepage = gfs2_releasepage, |
| 1097 | .direct_IO = gfs2_direct_IO, | 1097 | .direct_IO = gfs2_direct_IO, |
| 1098 | .migratepage = buffer_migrate_page, | 1098 | .migratepage = buffer_migrate_page, |
| 1099 | .is_partially_uptodate = block_is_partially_uptodate, | ||
| 1099 | }; | 1100 | }; |
| 1100 | 1101 | ||
| 1101 | static const struct address_space_operations gfs2_ordered_aops = { | 1102 | static const struct address_space_operations gfs2_ordered_aops = { |
| @@ -1111,6 +1112,7 @@ static const struct address_space_operations gfs2_ordered_aops = { | |||
| 1111 | .releasepage = gfs2_releasepage, | 1112 | .releasepage = gfs2_releasepage, |
| 1112 | .direct_IO = gfs2_direct_IO, | 1113 | .direct_IO = gfs2_direct_IO, |
| 1113 | .migratepage = buffer_migrate_page, | 1114 | .migratepage = buffer_migrate_page, |
| 1115 | .is_partially_uptodate = block_is_partially_uptodate, | ||
| 1114 | }; | 1116 | }; |
| 1115 | 1117 | ||
| 1116 | static const struct address_space_operations gfs2_jdata_aops = { | 1118 | static const struct address_space_operations gfs2_jdata_aops = { |
| @@ -1125,6 +1127,7 @@ static const struct address_space_operations gfs2_jdata_aops = { | |||
| 1125 | .bmap = gfs2_bmap, | 1127 | .bmap = gfs2_bmap, |
| 1126 | .invalidatepage = gfs2_invalidatepage, | 1128 | .invalidatepage = gfs2_invalidatepage, |
| 1127 | .releasepage = gfs2_releasepage, | 1129 | .releasepage = gfs2_releasepage, |
| 1130 | .is_partially_uptodate = block_is_partially_uptodate, | ||
| 1128 | }; | 1131 | }; |
| 1129 | 1132 | ||
| 1130 | void gfs2_set_aops(struct inode *inode) | 1133 | void gfs2_set_aops(struct inode *inode) |
diff --git a/fs/gfs2/ops_dentry.c b/fs/gfs2/ops_dentry.c index c2ad36330ca3..5eb57b044382 100644 --- a/fs/gfs2/ops_dentry.c +++ b/fs/gfs2/ops_dentry.c | |||
| @@ -13,7 +13,6 @@ | |||
| 13 | #include <linux/buffer_head.h> | 13 | #include <linux/buffer_head.h> |
| 14 | #include <linux/gfs2_ondisk.h> | 14 | #include <linux/gfs2_ondisk.h> |
| 15 | #include <linux/crc32.h> | 15 | #include <linux/crc32.h> |
| 16 | #include <linux/lm_interface.h> | ||
| 17 | 16 | ||
| 18 | #include "gfs2.h" | 17 | #include "gfs2.h" |
| 19 | #include "incore.h" | 18 | #include "incore.h" |
diff --git a/fs/gfs2/ops_export.c b/fs/gfs2/ops_export.c index 7fdeb14ddd1a..9200ef221716 100644 --- a/fs/gfs2/ops_export.c +++ b/fs/gfs2/ops_export.c | |||
| @@ -14,7 +14,6 @@ | |||
| 14 | #include <linux/exportfs.h> | 14 | #include <linux/exportfs.h> |
| 15 | #include <linux/gfs2_ondisk.h> | 15 | #include <linux/gfs2_ondisk.h> |
| 16 | #include <linux/crc32.h> | 16 | #include <linux/crc32.h> |
| 17 | #include <linux/lm_interface.h> | ||
| 18 | 17 | ||
| 19 | #include "gfs2.h" | 18 | #include "gfs2.h" |
| 20 | #include "incore.h" | 19 | #include "incore.h" |
diff --git a/fs/gfs2/ops_file.c b/fs/gfs2/ops_file.c index 93fe41b67f97..3b9e8de3500b 100644 --- a/fs/gfs2/ops_file.c +++ b/fs/gfs2/ops_file.c | |||
| @@ -20,9 +20,10 @@ | |||
| 20 | #include <linux/gfs2_ondisk.h> | 20 | #include <linux/gfs2_ondisk.h> |
| 21 | #include <linux/ext2_fs.h> | 21 | #include <linux/ext2_fs.h> |
| 22 | #include <linux/crc32.h> | 22 | #include <linux/crc32.h> |
| 23 | #include <linux/lm_interface.h> | ||
| 24 | #include <linux/writeback.h> | 23 | #include <linux/writeback.h> |
| 25 | #include <asm/uaccess.h> | 24 | #include <asm/uaccess.h> |
| 25 | #include <linux/dlm.h> | ||
| 26 | #include <linux/dlm_plock.h> | ||
| 26 | 27 | ||
| 27 | #include "gfs2.h" | 28 | #include "gfs2.h" |
| 28 | #include "incore.h" | 29 | #include "incore.h" |
| @@ -354,7 +355,9 @@ static int gfs2_page_mkwrite(struct vm_area_struct *vma, struct page *page) | |||
| 354 | if (ret) | 355 | if (ret) |
| 355 | goto out; | 356 | goto out; |
| 356 | 357 | ||
| 358 | set_bit(GLF_DIRTY, &ip->i_gl->gl_flags); | ||
| 357 | set_bit(GIF_SW_PAGED, &ip->i_flags); | 359 | set_bit(GIF_SW_PAGED, &ip->i_flags); |
| 360 | |||
| 358 | ret = gfs2_write_alloc_required(ip, pos, PAGE_CACHE_SIZE, &alloc_required); | 361 | ret = gfs2_write_alloc_required(ip, pos, PAGE_CACHE_SIZE, &alloc_required); |
| 359 | if (ret || !alloc_required) | 362 | if (ret || !alloc_required) |
| 360 | goto out_unlock; | 363 | goto out_unlock; |
| @@ -560,57 +563,24 @@ static int gfs2_fsync(struct file *file, struct dentry *dentry, int datasync) | |||
| 560 | return ret; | 563 | return ret; |
| 561 | } | 564 | } |
| 562 | 565 | ||
| 566 | #ifdef CONFIG_GFS2_FS_LOCKING_DLM | ||
| 567 | |||
| 563 | /** | 568 | /** |
| 564 | * gfs2_setlease - acquire/release a file lease | 569 | * gfs2_setlease - acquire/release a file lease |
| 565 | * @file: the file pointer | 570 | * @file: the file pointer |
| 566 | * @arg: lease type | 571 | * @arg: lease type |
| 567 | * @fl: file lock | 572 | * @fl: file lock |
| 568 | * | 573 | * |
| 574 | * We don't currently have a way to enforce a lease across the whole | ||
| 575 | * cluster; until we do, disable leases (by just returning -EINVAL), | ||
| 576 | * unless the administrator has requested purely local locking. | ||
| 577 | * | ||
| 569 | * Returns: errno | 578 | * Returns: errno |
| 570 | */ | 579 | */ |
| 571 | 580 | ||
| 572 | static int gfs2_setlease(struct file *file, long arg, struct file_lock **fl) | 581 | static int gfs2_setlease(struct file *file, long arg, struct file_lock **fl) |
| 573 | { | 582 | { |
| 574 | struct gfs2_sbd *sdp = GFS2_SB(file->f_mapping->host); | 583 | return -EINVAL; |
| 575 | |||
| 576 | /* | ||
| 577 | * We don't currently have a way to enforce a lease across the whole | ||
| 578 | * cluster; until we do, disable leases (by just returning -EINVAL), | ||
| 579 | * unless the administrator has requested purely local locking. | ||
| 580 | */ | ||
| 581 | if (!sdp->sd_args.ar_localflocks) | ||
| 582 | return -EINVAL; | ||
| 583 | return generic_setlease(file, arg, fl); | ||
| 584 | } | ||
| 585 | |||
| 586 | static int gfs2_lm_plock_get(struct gfs2_sbd *sdp, struct lm_lockname *name, | ||
| 587 | struct file *file, struct file_lock *fl) | ||
| 588 | { | ||
| 589 | int error = -EIO; | ||
| 590 | if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags))) | ||
| 591 | error = sdp->sd_lockstruct.ls_ops->lm_plock_get( | ||
| 592 | sdp->sd_lockstruct.ls_lockspace, name, file, fl); | ||
| 593 | return error; | ||
| 594 | } | ||
| 595 | |||
| 596 | static int gfs2_lm_plock(struct gfs2_sbd *sdp, struct lm_lockname *name, | ||
| 597 | struct file *file, int cmd, struct file_lock *fl) | ||
| 598 | { | ||
| 599 | int error = -EIO; | ||
| 600 | if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags))) | ||
| 601 | error = sdp->sd_lockstruct.ls_ops->lm_plock( | ||
| 602 | sdp->sd_lockstruct.ls_lockspace, name, file, cmd, fl); | ||
| 603 | return error; | ||
| 604 | } | ||
| 605 | |||
| 606 | static int gfs2_lm_punlock(struct gfs2_sbd *sdp, struct lm_lockname *name, | ||
| 607 | struct file *file, struct file_lock *fl) | ||
| 608 | { | ||
| 609 | int error = -EIO; | ||
| 610 | if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags))) | ||
| 611 | error = sdp->sd_lockstruct.ls_ops->lm_punlock( | ||
| 612 | sdp->sd_lockstruct.ls_lockspace, name, file, fl); | ||
| 613 | return error; | ||
| 614 | } | 584 | } |
| 615 | 585 | ||
| 616 | /** | 586 | /** |
| @@ -626,9 +596,7 @@ static int gfs2_lock(struct file *file, int cmd, struct file_lock *fl) | |||
| 626 | { | 596 | { |
| 627 | struct gfs2_inode *ip = GFS2_I(file->f_mapping->host); | 597 | struct gfs2_inode *ip = GFS2_I(file->f_mapping->host); |
| 628 | struct gfs2_sbd *sdp = GFS2_SB(file->f_mapping->host); | 598 | struct gfs2_sbd *sdp = GFS2_SB(file->f_mapping->host); |
| 629 | struct lm_lockname name = | 599 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; |
| 630 | { .ln_number = ip->i_no_addr, | ||
| 631 | .ln_type = LM_TYPE_PLOCK }; | ||
| 632 | 600 | ||
| 633 | if (!(fl->fl_flags & FL_POSIX)) | 601 | if (!(fl->fl_flags & FL_POSIX)) |
| 634 | return -ENOLCK; | 602 | return -ENOLCK; |
| @@ -640,12 +608,14 @@ static int gfs2_lock(struct file *file, int cmd, struct file_lock *fl) | |||
| 640 | cmd = F_SETLK; | 608 | cmd = F_SETLK; |
| 641 | fl->fl_type = F_UNLCK; | 609 | fl->fl_type = F_UNLCK; |
| 642 | } | 610 | } |
| 611 | if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags))) | ||
| 612 | return -EIO; | ||
| 643 | if (IS_GETLK(cmd)) | 613 | if (IS_GETLK(cmd)) |
| 644 | return gfs2_lm_plock_get(sdp, &name, file, fl); | 614 | return dlm_posix_get(ls->ls_dlm, ip->i_no_addr, file, fl); |
| 645 | else if (fl->fl_type == F_UNLCK) | 615 | else if (fl->fl_type == F_UNLCK) |
| 646 | return gfs2_lm_punlock(sdp, &name, file, fl); | 616 | return dlm_posix_unlock(ls->ls_dlm, ip->i_no_addr, file, fl); |
| 647 | else | 617 | else |
| 648 | return gfs2_lm_plock(sdp, &name, file, cmd, fl); | 618 | return dlm_posix_lock(ls->ls_dlm, ip->i_no_addr, file, cmd, fl); |
| 649 | } | 619 | } |
| 650 | 620 | ||
| 651 | static int do_flock(struct file *file, int cmd, struct file_lock *fl) | 621 | static int do_flock(struct file *file, int cmd, struct file_lock *fl) |
| @@ -732,7 +702,7 @@ static int gfs2_flock(struct file *file, int cmd, struct file_lock *fl) | |||
| 732 | } | 702 | } |
| 733 | } | 703 | } |
| 734 | 704 | ||
| 735 | const struct file_operations gfs2_file_fops = { | 705 | const struct file_operations *gfs2_file_fops = &(const struct file_operations){ |
| 736 | .llseek = gfs2_llseek, | 706 | .llseek = gfs2_llseek, |
| 737 | .read = do_sync_read, | 707 | .read = do_sync_read, |
| 738 | .aio_read = generic_file_aio_read, | 708 | .aio_read = generic_file_aio_read, |
| @@ -750,7 +720,7 @@ const struct file_operations gfs2_file_fops = { | |||
| 750 | .setlease = gfs2_setlease, | 720 | .setlease = gfs2_setlease, |
| 751 | }; | 721 | }; |
| 752 | 722 | ||
| 753 | const struct file_operations gfs2_dir_fops = { | 723 | const struct file_operations *gfs2_dir_fops = &(const struct file_operations){ |
| 754 | .readdir = gfs2_readdir, | 724 | .readdir = gfs2_readdir, |
| 755 | .unlocked_ioctl = gfs2_ioctl, | 725 | .unlocked_ioctl = gfs2_ioctl, |
| 756 | .open = gfs2_open, | 726 | .open = gfs2_open, |
| @@ -760,7 +730,9 @@ const struct file_operations gfs2_dir_fops = { | |||
| 760 | .flock = gfs2_flock, | 730 | .flock = gfs2_flock, |
| 761 | }; | 731 | }; |
| 762 | 732 | ||
| 763 | const struct file_operations gfs2_file_fops_nolock = { | 733 | #endif /* CONFIG_GFS2_FS_LOCKING_DLM */ |
| 734 | |||
| 735 | const struct file_operations *gfs2_file_fops_nolock = &(const struct file_operations){ | ||
| 764 | .llseek = gfs2_llseek, | 736 | .llseek = gfs2_llseek, |
| 765 | .read = do_sync_read, | 737 | .read = do_sync_read, |
| 766 | .aio_read = generic_file_aio_read, | 738 | .aio_read = generic_file_aio_read, |
| @@ -773,10 +745,10 @@ const struct file_operations gfs2_file_fops_nolock = { | |||
| 773 | .fsync = gfs2_fsync, | 745 | .fsync = gfs2_fsync, |
| 774 | .splice_read = generic_file_splice_read, | 746 | .splice_read = generic_file_splice_read, |
| 775 | .splice_write = generic_file_splice_write, | 747 | .splice_write = generic_file_splice_write, |
| 776 | .setlease = gfs2_setlease, | 748 | .setlease = generic_setlease, |
| 777 | }; | 749 | }; |
| 778 | 750 | ||
| 779 | const struct file_operations gfs2_dir_fops_nolock = { | 751 | const struct file_operations *gfs2_dir_fops_nolock = &(const struct file_operations){ |
| 780 | .readdir = gfs2_readdir, | 752 | .readdir = gfs2_readdir, |
| 781 | .unlocked_ioctl = gfs2_ioctl, | 753 | .unlocked_ioctl = gfs2_ioctl, |
| 782 | .open = gfs2_open, | 754 | .open = gfs2_open, |
diff --git a/fs/gfs2/ops_fstype.c b/fs/gfs2/ops_fstype.c index f91eebdde581..51883b3ad89c 100644 --- a/fs/gfs2/ops_fstype.c +++ b/fs/gfs2/ops_fstype.c | |||
| @@ -17,7 +17,6 @@ | |||
| 17 | #include <linux/namei.h> | 17 | #include <linux/namei.h> |
| 18 | #include <linux/mount.h> | 18 | #include <linux/mount.h> |
| 19 | #include <linux/gfs2_ondisk.h> | 19 | #include <linux/gfs2_ondisk.h> |
| 20 | #include <linux/lm_interface.h> | ||
| 21 | 20 | ||
| 22 | #include "gfs2.h" | 21 | #include "gfs2.h" |
| 23 | #include "incore.h" | 22 | #include "incore.h" |
| @@ -25,7 +24,6 @@ | |||
| 25 | #include "glock.h" | 24 | #include "glock.h" |
| 26 | #include "glops.h" | 25 | #include "glops.h" |
| 27 | #include "inode.h" | 26 | #include "inode.h" |
| 28 | #include "mount.h" | ||
| 29 | #include "recovery.h" | 27 | #include "recovery.h" |
| 30 | #include "rgrp.h" | 28 | #include "rgrp.h" |
| 31 | #include "super.h" | 29 | #include "super.h" |
| @@ -64,7 +62,6 @@ static void gfs2_tune_init(struct gfs2_tune *gt) | |||
| 64 | gt->gt_quota_warn_period = 10; | 62 | gt->gt_quota_warn_period = 10; |
| 65 | gt->gt_quota_scale_num = 1; | 63 | gt->gt_quota_scale_num = 1; |
| 66 | gt->gt_quota_scale_den = 1; | 64 | gt->gt_quota_scale_den = 1; |
| 67 | gt->gt_quota_cache_secs = 300; | ||
| 68 | gt->gt_quota_quantum = 60; | 65 | gt->gt_quota_quantum = 60; |
| 69 | gt->gt_new_files_jdata = 0; | 66 | gt->gt_new_files_jdata = 0; |
| 70 | gt->gt_max_readahead = 1 << 18; | 67 | gt->gt_max_readahead = 1 << 18; |
| @@ -100,7 +97,6 @@ static struct gfs2_sbd *init_sbd(struct super_block *sb) | |||
| 100 | mutex_init(&sdp->sd_jindex_mutex); | 97 | mutex_init(&sdp->sd_jindex_mutex); |
| 101 | 98 | ||
| 102 | INIT_LIST_HEAD(&sdp->sd_quota_list); | 99 | INIT_LIST_HEAD(&sdp->sd_quota_list); |
| 103 | spin_lock_init(&sdp->sd_quota_spin); | ||
| 104 | mutex_init(&sdp->sd_quota_mutex); | 100 | mutex_init(&sdp->sd_quota_mutex); |
| 105 | init_waitqueue_head(&sdp->sd_quota_wait); | 101 | init_waitqueue_head(&sdp->sd_quota_wait); |
| 106 | INIT_LIST_HEAD(&sdp->sd_trunc_list); | 102 | INIT_LIST_HEAD(&sdp->sd_trunc_list); |
| @@ -238,6 +234,7 @@ static void gfs2_sb_in(struct gfs2_sb_host *sb, const void *buf) | |||
| 238 | 234 | ||
| 239 | memcpy(sb->sb_lockproto, str->sb_lockproto, GFS2_LOCKNAME_LEN); | 235 | memcpy(sb->sb_lockproto, str->sb_lockproto, GFS2_LOCKNAME_LEN); |
| 240 | memcpy(sb->sb_locktable, str->sb_locktable, GFS2_LOCKNAME_LEN); | 236 | memcpy(sb->sb_locktable, str->sb_locktable, GFS2_LOCKNAME_LEN); |
| 237 | memcpy(sb->sb_uuid, str->sb_uuid, 16); | ||
| 241 | } | 238 | } |
| 242 | 239 | ||
| 243 | /** | 240 | /** |
| @@ -299,15 +296,15 @@ static int gfs2_read_super(struct gfs2_sbd *sdp, sector_t sector) | |||
| 299 | __free_page(page); | 296 | __free_page(page); |
| 300 | return 0; | 297 | return 0; |
| 301 | } | 298 | } |
| 299 | |||
| 302 | /** | 300 | /** |
| 303 | * gfs2_read_sb - Read super block | 301 | * gfs2_read_sb - Read super block |
| 304 | * @sdp: The GFS2 superblock | 302 | * @sdp: The GFS2 superblock |
| 305 | * @gl: the glock for the superblock (assumed to be held) | ||
| 306 | * @silent: Don't print message if mount fails | 303 | * @silent: Don't print message if mount fails |
| 307 | * | 304 | * |
| 308 | */ | 305 | */ |
| 309 | 306 | ||
| 310 | static int gfs2_read_sb(struct gfs2_sbd *sdp, struct gfs2_glock *gl, int silent) | 307 | static int gfs2_read_sb(struct gfs2_sbd *sdp, int silent) |
| 311 | { | 308 | { |
| 312 | u32 hash_blocks, ind_blocks, leaf_blocks; | 309 | u32 hash_blocks, ind_blocks, leaf_blocks; |
| 313 | u32 tmp_blocks; | 310 | u32 tmp_blocks; |
| @@ -527,7 +524,7 @@ static int init_sb(struct gfs2_sbd *sdp, int silent) | |||
| 527 | return ret; | 524 | return ret; |
| 528 | } | 525 | } |
| 529 | 526 | ||
| 530 | ret = gfs2_read_sb(sdp, sb_gh.gh_gl, silent); | 527 | ret = gfs2_read_sb(sdp, silent); |
| 531 | if (ret) { | 528 | if (ret) { |
| 532 | fs_err(sdp, "can't read superblock: %d\n", ret); | 529 | fs_err(sdp, "can't read superblock: %d\n", ret); |
| 533 | goto out; | 530 | goto out; |
| @@ -630,13 +627,13 @@ static int map_journal_extents(struct gfs2_sbd *sdp) | |||
| 630 | return rc; | 627 | return rc; |
| 631 | } | 628 | } |
| 632 | 629 | ||
| 633 | static void gfs2_lm_others_may_mount(struct gfs2_sbd *sdp) | 630 | static void gfs2_others_may_mount(struct gfs2_sbd *sdp) |
| 634 | { | 631 | { |
| 635 | if (!sdp->sd_lockstruct.ls_ops->lm_others_may_mount) | 632 | char *message = "FIRSTMOUNT=Done"; |
| 636 | return; | 633 | char *envp[] = { message, NULL }; |
| 637 | if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags))) | 634 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; |
| 638 | sdp->sd_lockstruct.ls_ops->lm_others_may_mount( | 635 | ls->ls_first_done = 1; |
| 639 | sdp->sd_lockstruct.ls_lockspace); | 636 | kobject_uevent_env(&sdp->sd_kobj, KOBJ_CHANGE, envp); |
| 640 | } | 637 | } |
| 641 | 638 | ||
| 642 | /** | 639 | /** |
| @@ -796,7 +793,7 @@ static int init_journal(struct gfs2_sbd *sdp, int undo) | |||
| 796 | } | 793 | } |
| 797 | } | 794 | } |
| 798 | 795 | ||
| 799 | gfs2_lm_others_may_mount(sdp); | 796 | gfs2_others_may_mount(sdp); |
| 800 | } else if (!sdp->sd_args.ar_spectator) { | 797 | } else if (!sdp->sd_args.ar_spectator) { |
| 801 | error = gfs2_recover_journal(sdp->sd_jdesc); | 798 | error = gfs2_recover_journal(sdp->sd_jdesc); |
| 802 | if (error) { | 799 | if (error) { |
| @@ -1005,7 +1002,6 @@ static int init_threads(struct gfs2_sbd *sdp, int undo) | |||
| 1005 | goto fail_quotad; | 1002 | goto fail_quotad; |
| 1006 | 1003 | ||
| 1007 | sdp->sd_log_flush_time = jiffies; | 1004 | sdp->sd_log_flush_time = jiffies; |
| 1008 | sdp->sd_jindex_refresh_time = jiffies; | ||
| 1009 | 1005 | ||
| 1010 | p = kthread_run(gfs2_logd, sdp, "gfs2_logd"); | 1006 | p = kthread_run(gfs2_logd, sdp, "gfs2_logd"); |
| 1011 | error = IS_ERR(p); | 1007 | error = IS_ERR(p); |
| @@ -1033,6 +1029,17 @@ fail: | |||
| 1033 | return error; | 1029 | return error; |
| 1034 | } | 1030 | } |
| 1035 | 1031 | ||
| 1032 | static const match_table_t nolock_tokens = { | ||
| 1033 | { Opt_jid, "jid=%d\n", }, | ||
| 1034 | { Opt_err, NULL }, | ||
| 1035 | }; | ||
| 1036 | |||
| 1037 | static const struct lm_lockops nolock_ops = { | ||
| 1038 | .lm_proto_name = "lock_nolock", | ||
| 1039 | .lm_put_lock = kmem_cache_free, | ||
| 1040 | .lm_tokens = &nolock_tokens, | ||
| 1041 | }; | ||
| 1042 | |||
| 1036 | /** | 1043 | /** |
| 1037 | * gfs2_lm_mount - mount a locking protocol | 1044 | * gfs2_lm_mount - mount a locking protocol |
| 1038 | * @sdp: the filesystem | 1045 | * @sdp: the filesystem |
| @@ -1044,31 +1051,73 @@ fail: | |||
| 1044 | 1051 | ||
| 1045 | static int gfs2_lm_mount(struct gfs2_sbd *sdp, int silent) | 1052 | static int gfs2_lm_mount(struct gfs2_sbd *sdp, int silent) |
| 1046 | { | 1053 | { |
| 1047 | char *proto = sdp->sd_proto_name; | 1054 | const struct lm_lockops *lm; |
| 1048 | char *table = sdp->sd_table_name; | 1055 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; |
| 1049 | int flags = LM_MFLAG_CONV_NODROP; | 1056 | struct gfs2_args *args = &sdp->sd_args; |
| 1050 | int error; | 1057 | const char *proto = sdp->sd_proto_name; |
| 1058 | const char *table = sdp->sd_table_name; | ||
| 1059 | const char *fsname; | ||
| 1060 | char *o, *options; | ||
| 1061 | int ret; | ||
| 1051 | 1062 | ||
| 1052 | if (sdp->sd_args.ar_spectator) | 1063 | if (!strcmp("lock_nolock", proto)) { |
| 1053 | flags |= LM_MFLAG_SPECTATOR; | 1064 | lm = &nolock_ops; |
| 1065 | sdp->sd_args.ar_localflocks = 1; | ||
| 1066 | sdp->sd_args.ar_localcaching = 1; | ||
| 1067 | #ifdef CONFIG_GFS2_FS_LOCKING_DLM | ||
| 1068 | } else if (!strcmp("lock_dlm", proto)) { | ||
| 1069 | lm = &gfs2_dlm_ops; | ||
| 1070 | #endif | ||
| 1071 | } else { | ||
| 1072 | printk(KERN_INFO "GFS2: can't find protocol %s\n", proto); | ||
| 1073 | return -ENOENT; | ||
| 1074 | } | ||
| 1054 | 1075 | ||
| 1055 | fs_info(sdp, "Trying to join cluster \"%s\", \"%s\"\n", proto, table); | 1076 | fs_info(sdp, "Trying to join cluster \"%s\", \"%s\"\n", proto, table); |
| 1056 | 1077 | ||
| 1057 | error = gfs2_mount_lockproto(proto, table, sdp->sd_args.ar_hostdata, | 1078 | ls->ls_ops = lm; |
| 1058 | gfs2_glock_cb, sdp, | 1079 | ls->ls_first = 1; |
| 1059 | GFS2_MIN_LVB_SIZE, flags, | 1080 | ls->ls_id = 0; |
| 1060 | &sdp->sd_lockstruct, &sdp->sd_kobj); | ||
| 1061 | if (error) { | ||
| 1062 | fs_info(sdp, "can't mount proto=%s, table=%s, hostdata=%s\n", | ||
| 1063 | proto, table, sdp->sd_args.ar_hostdata); | ||
| 1064 | goto out; | ||
| 1065 | } | ||
| 1066 | 1081 | ||
| 1067 | if (gfs2_assert_warn(sdp, sdp->sd_lockstruct.ls_ops) || | 1082 | for (options = args->ar_hostdata; (o = strsep(&options, ":")); ) { |
| 1068 | gfs2_assert_warn(sdp, sdp->sd_lockstruct.ls_lvb_size >= | 1083 | substring_t tmp[MAX_OPT_ARGS]; |
| 1069 | GFS2_MIN_LVB_SIZE)) { | 1084 | int token, option; |
| 1070 | gfs2_unmount_lockproto(&sdp->sd_lockstruct); | 1085 | |
| 1071 | goto out; | 1086 | if (!o || !*o) |
| 1087 | continue; | ||
| 1088 | |||
| 1089 | token = match_token(o, *lm->lm_tokens, tmp); | ||
| 1090 | switch (token) { | ||
| 1091 | case Opt_jid: | ||
| 1092 | ret = match_int(&tmp[0], &option); | ||
| 1093 | if (ret || option < 0) | ||
| 1094 | goto hostdata_error; | ||
| 1095 | ls->ls_jid = option; | ||
| 1096 | break; | ||
| 1097 | case Opt_id: | ||
| 1098 | ret = match_int(&tmp[0], &option); | ||
| 1099 | if (ret) | ||
| 1100 | goto hostdata_error; | ||
| 1101 | ls->ls_id = option; | ||
| 1102 | break; | ||
| 1103 | case Opt_first: | ||
| 1104 | ret = match_int(&tmp[0], &option); | ||
| 1105 | if (ret || (option != 0 && option != 1)) | ||
| 1106 | goto hostdata_error; | ||
| 1107 | ls->ls_first = option; | ||
| 1108 | break; | ||
| 1109 | case Opt_nodir: | ||
| 1110 | ret = match_int(&tmp[0], &option); | ||
| 1111 | if (ret || (option != 0 && option != 1)) | ||
| 1112 | goto hostdata_error; | ||
| 1113 | ls->ls_nodir = option; | ||
| 1114 | break; | ||
| 1115 | case Opt_err: | ||
| 1116 | default: | ||
| 1117 | hostdata_error: | ||
| 1118 | fs_info(sdp, "unknown hostdata (%s)\n", o); | ||
| 1119 | return -EINVAL; | ||
| 1120 | } | ||
| 1072 | } | 1121 | } |
| 1073 | 1122 | ||
| 1074 | if (sdp->sd_args.ar_spectator) | 1123 | if (sdp->sd_args.ar_spectator) |
| @@ -1077,22 +1126,25 @@ static int gfs2_lm_mount(struct gfs2_sbd *sdp, int silent) | |||
| 1077 | snprintf(sdp->sd_fsname, GFS2_FSNAME_LEN, "%s.%u", table, | 1126 | snprintf(sdp->sd_fsname, GFS2_FSNAME_LEN, "%s.%u", table, |
| 1078 | sdp->sd_lockstruct.ls_jid); | 1127 | sdp->sd_lockstruct.ls_jid); |
| 1079 | 1128 | ||
| 1080 | fs_info(sdp, "Joined cluster. Now mounting FS...\n"); | 1129 | fsname = strchr(table, ':'); |
| 1081 | 1130 | if (fsname) | |
| 1082 | if ((sdp->sd_lockstruct.ls_flags & LM_LSFLAG_LOCAL) && | 1131 | fsname++; |
| 1083 | !sdp->sd_args.ar_ignore_local_fs) { | 1132 | if (lm->lm_mount == NULL) { |
| 1084 | sdp->sd_args.ar_localflocks = 1; | 1133 | fs_info(sdp, "Now mounting FS...\n"); |
| 1085 | sdp->sd_args.ar_localcaching = 1; | 1134 | return 0; |
| 1086 | } | 1135 | } |
| 1087 | 1136 | ret = lm->lm_mount(sdp, fsname); | |
| 1088 | out: | 1137 | if (ret == 0) |
| 1089 | return error; | 1138 | fs_info(sdp, "Joined cluster. Now mounting FS...\n"); |
| 1139 | return ret; | ||
| 1090 | } | 1140 | } |
| 1091 | 1141 | ||
| 1092 | void gfs2_lm_unmount(struct gfs2_sbd *sdp) | 1142 | void gfs2_lm_unmount(struct gfs2_sbd *sdp) |
| 1093 | { | 1143 | { |
| 1094 | if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags))) | 1144 | const struct lm_lockops *lm = sdp->sd_lockstruct.ls_ops; |
| 1095 | gfs2_unmount_lockproto(&sdp->sd_lockstruct); | 1145 | if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)) && |
| 1146 | lm->lm_unmount) | ||
| 1147 | lm->lm_unmount(sdp); | ||
| 1096 | } | 1148 | } |
| 1097 | 1149 | ||
| 1098 | /** | 1150 | /** |
| @@ -1116,12 +1168,20 @@ static int fill_super(struct super_block *sb, void *data, int silent) | |||
| 1116 | return -ENOMEM; | 1168 | return -ENOMEM; |
| 1117 | } | 1169 | } |
| 1118 | 1170 | ||
| 1119 | error = gfs2_mount_args(sdp, (char *)data, 0); | 1171 | sdp->sd_args.ar_quota = GFS2_QUOTA_DEFAULT; |
| 1172 | sdp->sd_args.ar_data = GFS2_DATA_DEFAULT; | ||
| 1173 | |||
| 1174 | error = gfs2_mount_args(sdp, &sdp->sd_args, data); | ||
| 1120 | if (error) { | 1175 | if (error) { |
| 1121 | printk(KERN_WARNING "GFS2: can't parse mount arguments\n"); | 1176 | printk(KERN_WARNING "GFS2: can't parse mount arguments\n"); |
| 1122 | goto fail; | 1177 | goto fail; |
| 1123 | } | 1178 | } |
| 1124 | 1179 | ||
| 1180 | if (sdp->sd_args.ar_spectator) | ||
| 1181 | sb->s_flags |= MS_RDONLY; | ||
| 1182 | if (sdp->sd_args.ar_posix_acl) | ||
| 1183 | sb->s_flags |= MS_POSIXACL; | ||
| 1184 | |||
| 1125 | sb->s_magic = GFS2_MAGIC; | 1185 | sb->s_magic = GFS2_MAGIC; |
| 1126 | sb->s_op = &gfs2_super_ops; | 1186 | sb->s_op = &gfs2_super_ops; |
| 1127 | sb->s_export_op = &gfs2_export_ops; | 1187 | sb->s_export_op = &gfs2_export_ops; |
| @@ -1199,6 +1259,8 @@ fail_sb: | |||
| 1199 | dput(sdp->sd_root_dir); | 1259 | dput(sdp->sd_root_dir); |
| 1200 | if (sdp->sd_master_dir) | 1260 | if (sdp->sd_master_dir) |
| 1201 | dput(sdp->sd_master_dir); | 1261 | dput(sdp->sd_master_dir); |
| 1262 | if (sb->s_root) | ||
| 1263 | dput(sb->s_root); | ||
| 1202 | sb->s_root = NULL; | 1264 | sb->s_root = NULL; |
| 1203 | fail_locking: | 1265 | fail_locking: |
| 1204 | init_locking(sdp, &mount_gh, UNDO); | 1266 | init_locking(sdp, &mount_gh, UNDO); |
diff --git a/fs/gfs2/ops_inode.c b/fs/gfs2/ops_inode.c index 49877546beb9..abd5429ae285 100644 --- a/fs/gfs2/ops_inode.c +++ b/fs/gfs2/ops_inode.c | |||
| @@ -18,7 +18,6 @@ | |||
| 18 | #include <linux/posix_acl.h> | 18 | #include <linux/posix_acl.h> |
| 19 | #include <linux/gfs2_ondisk.h> | 19 | #include <linux/gfs2_ondisk.h> |
| 20 | #include <linux/crc32.h> | 20 | #include <linux/crc32.h> |
| 21 | #include <linux/lm_interface.h> | ||
| 22 | #include <linux/fiemap.h> | 21 | #include <linux/fiemap.h> |
| 23 | #include <asm/uaccess.h> | 22 | #include <asm/uaccess.h> |
| 24 | 23 | ||
diff --git a/fs/gfs2/ops_super.c b/fs/gfs2/ops_super.c index 320323d03479..458019569dcb 100644 --- a/fs/gfs2/ops_super.c +++ b/fs/gfs2/ops_super.c | |||
| @@ -19,7 +19,6 @@ | |||
| 19 | #include <linux/delay.h> | 19 | #include <linux/delay.h> |
| 20 | #include <linux/gfs2_ondisk.h> | 20 | #include <linux/gfs2_ondisk.h> |
| 21 | #include <linux/crc32.h> | 21 | #include <linux/crc32.h> |
| 22 | #include <linux/lm_interface.h> | ||
| 23 | #include <linux/time.h> | 22 | #include <linux/time.h> |
| 24 | 23 | ||
| 25 | #include "gfs2.h" | 24 | #include "gfs2.h" |
| @@ -27,7 +26,6 @@ | |||
| 27 | #include "glock.h" | 26 | #include "glock.h" |
| 28 | #include "inode.h" | 27 | #include "inode.h" |
| 29 | #include "log.h" | 28 | #include "log.h" |
| 30 | #include "mount.h" | ||
| 31 | #include "quota.h" | 29 | #include "quota.h" |
| 32 | #include "recovery.h" | 30 | #include "recovery.h" |
| 33 | #include "rgrp.h" | 31 | #include "rgrp.h" |
| @@ -40,6 +38,8 @@ | |||
| 40 | #include "bmap.h" | 38 | #include "bmap.h" |
| 41 | #include "meta_io.h" | 39 | #include "meta_io.h" |
| 42 | 40 | ||
| 41 | #define args_neq(a1, a2, x) ((a1)->ar_##x != (a2)->ar_##x) | ||
| 42 | |||
| 43 | /** | 43 | /** |
| 44 | * gfs2_write_inode - Make sure the inode is stable on the disk | 44 | * gfs2_write_inode - Make sure the inode is stable on the disk |
| 45 | * @inode: The inode | 45 | * @inode: The inode |
| @@ -435,25 +435,45 @@ static int gfs2_statfs(struct dentry *dentry, struct kstatfs *buf) | |||
| 435 | static int gfs2_remount_fs(struct super_block *sb, int *flags, char *data) | 435 | static int gfs2_remount_fs(struct super_block *sb, int *flags, char *data) |
| 436 | { | 436 | { |
| 437 | struct gfs2_sbd *sdp = sb->s_fs_info; | 437 | struct gfs2_sbd *sdp = sb->s_fs_info; |
| 438 | struct gfs2_args args = sdp->sd_args; /* Default to current settings */ | ||
| 438 | int error; | 439 | int error; |
| 439 | 440 | ||
| 440 | error = gfs2_mount_args(sdp, data, 1); | 441 | error = gfs2_mount_args(sdp, &args, data); |
| 441 | if (error) | 442 | if (error) |
| 442 | return error; | 443 | return error; |
| 443 | 444 | ||
| 445 | /* Not allowed to change locking details */ | ||
| 446 | if (strcmp(args.ar_lockproto, sdp->sd_args.ar_lockproto) || | ||
| 447 | strcmp(args.ar_locktable, sdp->sd_args.ar_locktable) || | ||
| 448 | strcmp(args.ar_hostdata, sdp->sd_args.ar_hostdata)) | ||
| 449 | return -EINVAL; | ||
| 450 | |||
| 451 | /* Some flags must not be changed */ | ||
| 452 | if (args_neq(&args, &sdp->sd_args, spectator) || | ||
| 453 | args_neq(&args, &sdp->sd_args, ignore_local_fs) || | ||
| 454 | args_neq(&args, &sdp->sd_args, localflocks) || | ||
| 455 | args_neq(&args, &sdp->sd_args, localcaching) || | ||
| 456 | args_neq(&args, &sdp->sd_args, meta)) | ||
| 457 | return -EINVAL; | ||
| 458 | |||
| 444 | if (sdp->sd_args.ar_spectator) | 459 | if (sdp->sd_args.ar_spectator) |
| 445 | *flags |= MS_RDONLY; | 460 | *flags |= MS_RDONLY; |
| 446 | else { | 461 | |
| 447 | if (*flags & MS_RDONLY) { | 462 | if ((sb->s_flags ^ *flags) & MS_RDONLY) { |
| 448 | if (!(sb->s_flags & MS_RDONLY)) | 463 | if (*flags & MS_RDONLY) |
| 449 | error = gfs2_make_fs_ro(sdp); | 464 | error = gfs2_make_fs_ro(sdp); |
| 450 | } else if (!(*flags & MS_RDONLY) && | 465 | else |
| 451 | (sb->s_flags & MS_RDONLY)) { | ||
| 452 | error = gfs2_make_fs_rw(sdp); | 466 | error = gfs2_make_fs_rw(sdp); |
| 453 | } | 467 | if (error) |
| 468 | return error; | ||
| 454 | } | 469 | } |
| 455 | 470 | ||
| 456 | return error; | 471 | sdp->sd_args = args; |
| 472 | if (sdp->sd_args.ar_posix_acl) | ||
| 473 | sb->s_flags |= MS_POSIXACL; | ||
| 474 | else | ||
| 475 | sb->s_flags &= ~MS_POSIXACL; | ||
| 476 | return 0; | ||
| 457 | } | 477 | } |
| 458 | 478 | ||
| 459 | /** | 479 | /** |
| @@ -588,6 +608,8 @@ static int gfs2_show_options(struct seq_file *s, struct vfsmount *mnt) | |||
| 588 | } | 608 | } |
| 589 | seq_printf(s, ",data=%s", state); | 609 | seq_printf(s, ",data=%s", state); |
| 590 | } | 610 | } |
| 611 | if (args->ar_discard) | ||
| 612 | seq_printf(s, ",discard"); | ||
| 591 | 613 | ||
| 592 | return 0; | 614 | return 0; |
| 593 | } | 615 | } |
diff --git a/fs/gfs2/quota.c b/fs/gfs2/quota.c index b08d09696b3e..8d53f66b5bcc 100644 --- a/fs/gfs2/quota.c +++ b/fs/gfs2/quota.c | |||
| @@ -45,7 +45,6 @@ | |||
| 45 | #include <linux/fs.h> | 45 | #include <linux/fs.h> |
| 46 | #include <linux/bio.h> | 46 | #include <linux/bio.h> |
| 47 | #include <linux/gfs2_ondisk.h> | 47 | #include <linux/gfs2_ondisk.h> |
| 48 | #include <linux/lm_interface.h> | ||
| 49 | #include <linux/kthread.h> | 48 | #include <linux/kthread.h> |
| 50 | #include <linux/freezer.h> | 49 | #include <linux/freezer.h> |
| 51 | 50 | ||
| @@ -80,6 +79,51 @@ struct gfs2_quota_change_host { | |||
| 80 | u32 qc_id; | 79 | u32 qc_id; |
| 81 | }; | 80 | }; |
| 82 | 81 | ||
| 82 | static LIST_HEAD(qd_lru_list); | ||
| 83 | static atomic_t qd_lru_count = ATOMIC_INIT(0); | ||
| 84 | static spinlock_t qd_lru_lock = SPIN_LOCK_UNLOCKED; | ||
| 85 | |||
| 86 | int gfs2_shrink_qd_memory(int nr, gfp_t gfp_mask) | ||
| 87 | { | ||
| 88 | struct gfs2_quota_data *qd; | ||
| 89 | struct gfs2_sbd *sdp; | ||
| 90 | |||
| 91 | if (nr == 0) | ||
| 92 | goto out; | ||
| 93 | |||
| 94 | if (!(gfp_mask & __GFP_FS)) | ||
| 95 | return -1; | ||
| 96 | |||
| 97 | spin_lock(&qd_lru_lock); | ||
| 98 | while (nr && !list_empty(&qd_lru_list)) { | ||
| 99 | qd = list_entry(qd_lru_list.next, | ||
| 100 | struct gfs2_quota_data, qd_reclaim); | ||
| 101 | sdp = qd->qd_gl->gl_sbd; | ||
| 102 | |||
| 103 | /* Free from the filesystem-specific list */ | ||
| 104 | list_del(&qd->qd_list); | ||
| 105 | |||
| 106 | gfs2_assert_warn(sdp, !qd->qd_change); | ||
| 107 | gfs2_assert_warn(sdp, !qd->qd_slot_count); | ||
| 108 | gfs2_assert_warn(sdp, !qd->qd_bh_count); | ||
| 109 | |||
| 110 | gfs2_glock_put(qd->qd_gl); | ||
| 111 | atomic_dec(&sdp->sd_quota_count); | ||
| 112 | |||
| 113 | /* Delete it from the common reclaim list */ | ||
| 114 | list_del_init(&qd->qd_reclaim); | ||
| 115 | atomic_dec(&qd_lru_count); | ||
| 116 | spin_unlock(&qd_lru_lock); | ||
| 117 | kmem_cache_free(gfs2_quotad_cachep, qd); | ||
| 118 | spin_lock(&qd_lru_lock); | ||
| 119 | nr--; | ||
| 120 | } | ||
| 121 | spin_unlock(&qd_lru_lock); | ||
| 122 | |||
| 123 | out: | ||
| 124 | return (atomic_read(&qd_lru_count) * sysctl_vfs_cache_pressure) / 100; | ||
| 125 | } | ||
| 126 | |||
| 83 | static u64 qd2offset(struct gfs2_quota_data *qd) | 127 | static u64 qd2offset(struct gfs2_quota_data *qd) |
| 84 | { | 128 | { |
| 85 | u64 offset; | 129 | u64 offset; |
| @@ -100,22 +144,18 @@ static int qd_alloc(struct gfs2_sbd *sdp, int user, u32 id, | |||
| 100 | if (!qd) | 144 | if (!qd) |
| 101 | return -ENOMEM; | 145 | return -ENOMEM; |
| 102 | 146 | ||
| 103 | qd->qd_count = 1; | 147 | atomic_set(&qd->qd_count, 1); |
| 104 | qd->qd_id = id; | 148 | qd->qd_id = id; |
| 105 | if (user) | 149 | if (user) |
| 106 | set_bit(QDF_USER, &qd->qd_flags); | 150 | set_bit(QDF_USER, &qd->qd_flags); |
| 107 | qd->qd_slot = -1; | 151 | qd->qd_slot = -1; |
| 152 | INIT_LIST_HEAD(&qd->qd_reclaim); | ||
| 108 | 153 | ||
| 109 | error = gfs2_glock_get(sdp, 2 * (u64)id + !user, | 154 | error = gfs2_glock_get(sdp, 2 * (u64)id + !user, |
| 110 | &gfs2_quota_glops, CREATE, &qd->qd_gl); | 155 | &gfs2_quota_glops, CREATE, &qd->qd_gl); |
| 111 | if (error) | 156 | if (error) |
| 112 | goto fail; | 157 | goto fail; |
| 113 | 158 | ||
| 114 | error = gfs2_lvb_hold(qd->qd_gl); | ||
| 115 | gfs2_glock_put(qd->qd_gl); | ||
| 116 | if (error) | ||
| 117 | goto fail; | ||
| 118 | |||
| 119 | *qdp = qd; | 159 | *qdp = qd; |
| 120 | 160 | ||
| 121 | return 0; | 161 | return 0; |
| @@ -135,11 +175,17 @@ static int qd_get(struct gfs2_sbd *sdp, int user, u32 id, int create, | |||
| 135 | 175 | ||
| 136 | for (;;) { | 176 | for (;;) { |
| 137 | found = 0; | 177 | found = 0; |
| 138 | spin_lock(&sdp->sd_quota_spin); | 178 | spin_lock(&qd_lru_lock); |
| 139 | list_for_each_entry(qd, &sdp->sd_quota_list, qd_list) { | 179 | list_for_each_entry(qd, &sdp->sd_quota_list, qd_list) { |
| 140 | if (qd->qd_id == id && | 180 | if (qd->qd_id == id && |
| 141 | !test_bit(QDF_USER, &qd->qd_flags) == !user) { | 181 | !test_bit(QDF_USER, &qd->qd_flags) == !user) { |
| 142 | qd->qd_count++; | 182 | if (!atomic_read(&qd->qd_count) && |
| 183 | !list_empty(&qd->qd_reclaim)) { | ||
| 184 | /* Remove it from reclaim list */ | ||
| 185 | list_del_init(&qd->qd_reclaim); | ||
| 186 | atomic_dec(&qd_lru_count); | ||
| 187 | } | ||
| 188 | atomic_inc(&qd->qd_count); | ||
| 143 | found = 1; | 189 | found = 1; |
| 144 | break; | 190 | break; |
| 145 | } | 191 | } |
| @@ -155,11 +201,11 @@ static int qd_get(struct gfs2_sbd *sdp, int user, u32 id, int create, | |||
| 155 | new_qd = NULL; | 201 | new_qd = NULL; |
| 156 | } | 202 | } |
| 157 | 203 | ||
| 158 | spin_unlock(&sdp->sd_quota_spin); | 204 | spin_unlock(&qd_lru_lock); |
| 159 | 205 | ||
| 160 | if (qd || !create) { | 206 | if (qd || !create) { |
| 161 | if (new_qd) { | 207 | if (new_qd) { |
| 162 | gfs2_lvb_unhold(new_qd->qd_gl); | 208 | gfs2_glock_put(new_qd->qd_gl); |
| 163 | kmem_cache_free(gfs2_quotad_cachep, new_qd); | 209 | kmem_cache_free(gfs2_quotad_cachep, new_qd); |
| 164 | } | 210 | } |
| 165 | *qdp = qd; | 211 | *qdp = qd; |
| @@ -175,21 +221,18 @@ static int qd_get(struct gfs2_sbd *sdp, int user, u32 id, int create, | |||
| 175 | static void qd_hold(struct gfs2_quota_data *qd) | 221 | static void qd_hold(struct gfs2_quota_data *qd) |
| 176 | { | 222 | { |
| 177 | struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd; | 223 | struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd; |
| 178 | 224 | gfs2_assert(sdp, atomic_read(&qd->qd_count)); | |
| 179 | spin_lock(&sdp->sd_quota_spin); | 225 | atomic_inc(&qd->qd_count); |
| 180 | gfs2_assert(sdp, qd->qd_count); | ||
| 181 | qd->qd_count++; | ||
| 182 | spin_unlock(&sdp->sd_quota_spin); | ||
| 183 | } | 226 | } |
| 184 | 227 | ||
| 185 | static void qd_put(struct gfs2_quota_data *qd) | 228 | static void qd_put(struct gfs2_quota_data *qd) |
| 186 | { | 229 | { |
| 187 | struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd; | 230 | if (atomic_dec_and_lock(&qd->qd_count, &qd_lru_lock)) { |
| 188 | spin_lock(&sdp->sd_quota_spin); | 231 | /* Add to the reclaim list */ |
| 189 | gfs2_assert(sdp, qd->qd_count); | 232 | list_add_tail(&qd->qd_reclaim, &qd_lru_list); |
| 190 | if (!--qd->qd_count) | 233 | atomic_inc(&qd_lru_count); |
| 191 | qd->qd_last_touched = jiffies; | 234 | spin_unlock(&qd_lru_lock); |
| 192 | spin_unlock(&sdp->sd_quota_spin); | 235 | } |
| 193 | } | 236 | } |
| 194 | 237 | ||
| 195 | static int slot_get(struct gfs2_quota_data *qd) | 238 | static int slot_get(struct gfs2_quota_data *qd) |
| @@ -198,10 +241,10 @@ static int slot_get(struct gfs2_quota_data *qd) | |||
| 198 | unsigned int c, o = 0, b; | 241 | unsigned int c, o = 0, b; |
| 199 | unsigned char byte = 0; | 242 | unsigned char byte = 0; |
| 200 | 243 | ||
| 201 | spin_lock(&sdp->sd_quota_spin); | 244 | spin_lock(&qd_lru_lock); |
| 202 | 245 | ||
| 203 | if (qd->qd_slot_count++) { | 246 | if (qd->qd_slot_count++) { |
| 204 | spin_unlock(&sdp->sd_quota_spin); | 247 | spin_unlock(&qd_lru_lock); |
| 205 | return 0; | 248 | return 0; |
| 206 | } | 249 | } |
| 207 | 250 | ||
| @@ -225,13 +268,13 @@ found: | |||
| 225 | 268 | ||
| 226 | sdp->sd_quota_bitmap[c][o] |= 1 << b; | 269 | sdp->sd_quota_bitmap[c][o] |= 1 << b; |
| 227 | 270 | ||
| 228 | spin_unlock(&sdp->sd_quota_spin); | 271 | spin_unlock(&qd_lru_lock); |
| 229 | 272 | ||
| 230 | return 0; | 273 | return 0; |
| 231 | 274 | ||
| 232 | fail: | 275 | fail: |
| 233 | qd->qd_slot_count--; | 276 | qd->qd_slot_count--; |
| 234 | spin_unlock(&sdp->sd_quota_spin); | 277 | spin_unlock(&qd_lru_lock); |
| 235 | return -ENOSPC; | 278 | return -ENOSPC; |
| 236 | } | 279 | } |
| 237 | 280 | ||
| @@ -239,23 +282,23 @@ static void slot_hold(struct gfs2_quota_data *qd) | |||
| 239 | { | 282 | { |
| 240 | struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd; | 283 | struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd; |
| 241 | 284 | ||
| 242 | spin_lock(&sdp->sd_quota_spin); | 285 | spin_lock(&qd_lru_lock); |
| 243 | gfs2_assert(sdp, qd->qd_slot_count); | 286 | gfs2_assert(sdp, qd->qd_slot_count); |
| 244 | qd->qd_slot_count++; | 287 | qd->qd_slot_count++; |
| 245 | spin_unlock(&sdp->sd_quota_spin); | 288 | spin_unlock(&qd_lru_lock); |
| 246 | } | 289 | } |
| 247 | 290 | ||
| 248 | static void slot_put(struct gfs2_quota_data *qd) | 291 | static void slot_put(struct gfs2_quota_data *qd) |
| 249 | { | 292 | { |
| 250 | struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd; | 293 | struct gfs2_sbd *sdp = qd->qd_gl->gl_sbd; |
| 251 | 294 | ||
| 252 | spin_lock(&sdp->sd_quota_spin); | 295 | spin_lock(&qd_lru_lock); |
| 253 | gfs2_assert(sdp, qd->qd_slot_count); | 296 | gfs2_assert(sdp, qd->qd_slot_count); |
| 254 | if (!--qd->qd_slot_count) { | 297 | if (!--qd->qd_slot_count) { |
| 255 | gfs2_icbit_munge(sdp, sdp->sd_quota_bitmap, qd->qd_slot, 0); | 298 | gfs2_icbit_munge(sdp, sdp->sd_quota_bitmap, qd->qd_slot, 0); |
| 256 | qd->qd_slot = -1; | 299 | qd->qd_slot = -1; |
| 257 | } | 300 | } |
| 258 | spin_unlock(&sdp->sd_quota_spin); | 301 | spin_unlock(&qd_lru_lock); |
| 259 | } | 302 | } |
| 260 | 303 | ||
| 261 | static int bh_get(struct gfs2_quota_data *qd) | 304 | static int bh_get(struct gfs2_quota_data *qd) |
| @@ -330,7 +373,7 @@ static int qd_fish(struct gfs2_sbd *sdp, struct gfs2_quota_data **qdp) | |||
| 330 | if (sdp->sd_vfs->s_flags & MS_RDONLY) | 373 | if (sdp->sd_vfs->s_flags & MS_RDONLY) |
| 331 | return 0; | 374 | return 0; |
| 332 | 375 | ||
| 333 | spin_lock(&sdp->sd_quota_spin); | 376 | spin_lock(&qd_lru_lock); |
| 334 | 377 | ||
| 335 | list_for_each_entry(qd, &sdp->sd_quota_list, qd_list) { | 378 | list_for_each_entry(qd, &sdp->sd_quota_list, qd_list) { |
| 336 | if (test_bit(QDF_LOCKED, &qd->qd_flags) || | 379 | if (test_bit(QDF_LOCKED, &qd->qd_flags) || |
| @@ -341,8 +384,8 @@ static int qd_fish(struct gfs2_sbd *sdp, struct gfs2_quota_data **qdp) | |||
| 341 | list_move_tail(&qd->qd_list, &sdp->sd_quota_list); | 384 | list_move_tail(&qd->qd_list, &sdp->sd_quota_list); |
| 342 | 385 | ||
| 343 | set_bit(QDF_LOCKED, &qd->qd_flags); | 386 | set_bit(QDF_LOCKED, &qd->qd_flags); |
| 344 | gfs2_assert_warn(sdp, qd->qd_count); | 387 | gfs2_assert_warn(sdp, atomic_read(&qd->qd_count)); |
| 345 | qd->qd_count++; | 388 | atomic_inc(&qd->qd_count); |
| 346 | qd->qd_change_sync = qd->qd_change; | 389 | qd->qd_change_sync = qd->qd_change; |
| 347 | gfs2_assert_warn(sdp, qd->qd_slot_count); | 390 | gfs2_assert_warn(sdp, qd->qd_slot_count); |
| 348 | qd->qd_slot_count++; | 391 | qd->qd_slot_count++; |
| @@ -354,7 +397,7 @@ static int qd_fish(struct gfs2_sbd *sdp, struct gfs2_quota_data **qdp) | |||
| 354 | if (!found) | 397 | if (!found) |
| 355 | qd = NULL; | 398 | qd = NULL; |
| 356 | 399 | ||
| 357 | spin_unlock(&sdp->sd_quota_spin); | 400 | spin_unlock(&qd_lru_lock); |
| 358 | 401 | ||
| 359 | if (qd) { | 402 | if (qd) { |
| 360 | gfs2_assert_warn(sdp, qd->qd_change_sync); | 403 | gfs2_assert_warn(sdp, qd->qd_change_sync); |
| @@ -379,24 +422,24 @@ static int qd_trylock(struct gfs2_quota_data *qd) | |||
| 379 | if (sdp->sd_vfs->s_flags & MS_RDONLY) | 422 | if (sdp->sd_vfs->s_flags & MS_RDONLY) |
| 380 | return 0; | 423 | return 0; |
| 381 | 424 | ||
| 382 | spin_lock(&sdp->sd_quota_spin); | 425 | spin_lock(&qd_lru_lock); |
| 383 | 426 | ||
| 384 | if (test_bit(QDF_LOCKED, &qd->qd_flags) || | 427 | if (test_bit(QDF_LOCKED, &qd->qd_flags) || |
| 385 | !test_bit(QDF_CHANGE, &qd->qd_flags)) { | 428 | !test_bit(QDF_CHANGE, &qd->qd_flags)) { |
| 386 | spin_unlock(&sdp->sd_quota_spin); | 429 | spin_unlock(&qd_lru_lock); |
| 387 | return 0; | 430 | return 0; |
| 388 | } | 431 | } |
| 389 | 432 | ||
| 390 | list_move_tail(&qd->qd_list, &sdp->sd_quota_list); | 433 | list_move_tail(&qd->qd_list, &sdp->sd_quota_list); |
| 391 | 434 | ||
| 392 | set_bit(QDF_LOCKED, &qd->qd_flags); | 435 | set_bit(QDF_LOCKED, &qd->qd_flags); |
| 393 | gfs2_assert_warn(sdp, qd->qd_count); | 436 | gfs2_assert_warn(sdp, atomic_read(&qd->qd_count)); |
| 394 | qd->qd_count++; | 437 | atomic_inc(&qd->qd_count); |
| 395 | qd->qd_change_sync = qd->qd_change; | 438 | qd->qd_change_sync = qd->qd_change; |
| 396 | gfs2_assert_warn(sdp, qd->qd_slot_count); | 439 | gfs2_assert_warn(sdp, qd->qd_slot_count); |
| 397 | qd->qd_slot_count++; | 440 | qd->qd_slot_count++; |
| 398 | 441 | ||
| 399 | spin_unlock(&sdp->sd_quota_spin); | 442 | spin_unlock(&qd_lru_lock); |
| 400 | 443 | ||
| 401 | gfs2_assert_warn(sdp, qd->qd_change_sync); | 444 | gfs2_assert_warn(sdp, qd->qd_change_sync); |
| 402 | if (bh_get(qd)) { | 445 | if (bh_get(qd)) { |
| @@ -556,9 +599,9 @@ static void do_qc(struct gfs2_quota_data *qd, s64 change) | |||
| 556 | x = be64_to_cpu(qc->qc_change) + change; | 599 | x = be64_to_cpu(qc->qc_change) + change; |
| 557 | qc->qc_change = cpu_to_be64(x); | 600 | qc->qc_change = cpu_to_be64(x); |
| 558 | 601 | ||
| 559 | spin_lock(&sdp->sd_quota_spin); | 602 | spin_lock(&qd_lru_lock); |
| 560 | qd->qd_change = x; | 603 | qd->qd_change = x; |
| 561 | spin_unlock(&sdp->sd_quota_spin); | 604 | spin_unlock(&qd_lru_lock); |
| 562 | 605 | ||
| 563 | if (!x) { | 606 | if (!x) { |
| 564 | gfs2_assert_warn(sdp, test_bit(QDF_CHANGE, &qd->qd_flags)); | 607 | gfs2_assert_warn(sdp, test_bit(QDF_CHANGE, &qd->qd_flags)); |
| @@ -802,8 +845,8 @@ restart: | |||
| 802 | loff_t pos; | 845 | loff_t pos; |
| 803 | gfs2_glock_dq_uninit(q_gh); | 846 | gfs2_glock_dq_uninit(q_gh); |
| 804 | error = gfs2_glock_nq_init(qd->qd_gl, | 847 | error = gfs2_glock_nq_init(qd->qd_gl, |
| 805 | LM_ST_EXCLUSIVE, GL_NOCACHE, | 848 | LM_ST_EXCLUSIVE, GL_NOCACHE, |
| 806 | q_gh); | 849 | q_gh); |
| 807 | if (error) | 850 | if (error) |
| 808 | return error; | 851 | return error; |
| 809 | 852 | ||
| @@ -820,7 +863,6 @@ restart: | |||
| 820 | 863 | ||
| 821 | gfs2_glock_dq_uninit(&i_gh); | 864 | gfs2_glock_dq_uninit(&i_gh); |
| 822 | 865 | ||
| 823 | |||
| 824 | gfs2_quota_in(&q, buf); | 866 | gfs2_quota_in(&q, buf); |
| 825 | qlvb = (struct gfs2_quota_lvb *)qd->qd_gl->gl_lvb; | 867 | qlvb = (struct gfs2_quota_lvb *)qd->qd_gl->gl_lvb; |
| 826 | qlvb->qb_magic = cpu_to_be32(GFS2_MAGIC); | 868 | qlvb->qb_magic = cpu_to_be32(GFS2_MAGIC); |
| @@ -890,9 +932,9 @@ static int need_sync(struct gfs2_quota_data *qd) | |||
| 890 | if (!qd->qd_qb.qb_limit) | 932 | if (!qd->qd_qb.qb_limit) |
| 891 | return 0; | 933 | return 0; |
| 892 | 934 | ||
| 893 | spin_lock(&sdp->sd_quota_spin); | 935 | spin_lock(&qd_lru_lock); |
| 894 | value = qd->qd_change; | 936 | value = qd->qd_change; |
| 895 | spin_unlock(&sdp->sd_quota_spin); | 937 | spin_unlock(&qd_lru_lock); |
| 896 | 938 | ||
| 897 | spin_lock(>->gt_spin); | 939 | spin_lock(>->gt_spin); |
| 898 | num = gt->gt_quota_scale_num; | 940 | num = gt->gt_quota_scale_num; |
| @@ -985,9 +1027,9 @@ int gfs2_quota_check(struct gfs2_inode *ip, u32 uid, u32 gid) | |||
| 985 | continue; | 1027 | continue; |
| 986 | 1028 | ||
| 987 | value = (s64)be64_to_cpu(qd->qd_qb.qb_value); | 1029 | value = (s64)be64_to_cpu(qd->qd_qb.qb_value); |
| 988 | spin_lock(&sdp->sd_quota_spin); | 1030 | spin_lock(&qd_lru_lock); |
| 989 | value += qd->qd_change; | 1031 | value += qd->qd_change; |
| 990 | spin_unlock(&sdp->sd_quota_spin); | 1032 | spin_unlock(&qd_lru_lock); |
| 991 | 1033 | ||
| 992 | if (be64_to_cpu(qd->qd_qb.qb_limit) && (s64)be64_to_cpu(qd->qd_qb.qb_limit) < value) { | 1034 | if (be64_to_cpu(qd->qd_qb.qb_limit) && (s64)be64_to_cpu(qd->qd_qb.qb_limit) < value) { |
| 993 | print_message(qd, "exceeded"); | 1035 | print_message(qd, "exceeded"); |
| @@ -1171,13 +1213,12 @@ int gfs2_quota_init(struct gfs2_sbd *sdp) | |||
| 1171 | qd->qd_change = qc.qc_change; | 1213 | qd->qd_change = qc.qc_change; |
| 1172 | qd->qd_slot = slot; | 1214 | qd->qd_slot = slot; |
| 1173 | qd->qd_slot_count = 1; | 1215 | qd->qd_slot_count = 1; |
| 1174 | qd->qd_last_touched = jiffies; | ||
| 1175 | 1216 | ||
| 1176 | spin_lock(&sdp->sd_quota_spin); | 1217 | spin_lock(&qd_lru_lock); |
| 1177 | gfs2_icbit_munge(sdp, sdp->sd_quota_bitmap, slot, 1); | 1218 | gfs2_icbit_munge(sdp, sdp->sd_quota_bitmap, slot, 1); |
| 1178 | list_add(&qd->qd_list, &sdp->sd_quota_list); | 1219 | list_add(&qd->qd_list, &sdp->sd_quota_list); |
| 1179 | atomic_inc(&sdp->sd_quota_count); | 1220 | atomic_inc(&sdp->sd_quota_count); |
| 1180 | spin_unlock(&sdp->sd_quota_spin); | 1221 | spin_unlock(&qd_lru_lock); |
| 1181 | 1222 | ||
| 1182 | found++; | 1223 | found++; |
| 1183 | } | 1224 | } |
| @@ -1197,73 +1238,48 @@ fail: | |||
| 1197 | return error; | 1238 | return error; |
| 1198 | } | 1239 | } |
| 1199 | 1240 | ||
| 1200 | static void gfs2_quota_scan(struct gfs2_sbd *sdp) | ||
| 1201 | { | ||
| 1202 | struct gfs2_quota_data *qd, *safe; | ||
| 1203 | LIST_HEAD(dead); | ||
| 1204 | |||
| 1205 | spin_lock(&sdp->sd_quota_spin); | ||
| 1206 | list_for_each_entry_safe(qd, safe, &sdp->sd_quota_list, qd_list) { | ||
| 1207 | if (!qd->qd_count && | ||
| 1208 | time_after_eq(jiffies, qd->qd_last_touched + | ||
| 1209 | gfs2_tune_get(sdp, gt_quota_cache_secs) * HZ)) { | ||
| 1210 | list_move(&qd->qd_list, &dead); | ||
| 1211 | gfs2_assert_warn(sdp, | ||
| 1212 | atomic_read(&sdp->sd_quota_count) > 0); | ||
| 1213 | atomic_dec(&sdp->sd_quota_count); | ||
| 1214 | } | ||
| 1215 | } | ||
| 1216 | spin_unlock(&sdp->sd_quota_spin); | ||
| 1217 | |||
| 1218 | while (!list_empty(&dead)) { | ||
| 1219 | qd = list_entry(dead.next, struct gfs2_quota_data, qd_list); | ||
| 1220 | list_del(&qd->qd_list); | ||
| 1221 | |||
| 1222 | gfs2_assert_warn(sdp, !qd->qd_change); | ||
| 1223 | gfs2_assert_warn(sdp, !qd->qd_slot_count); | ||
| 1224 | gfs2_assert_warn(sdp, !qd->qd_bh_count); | ||
| 1225 | |||
| 1226 | gfs2_lvb_unhold(qd->qd_gl); | ||
| 1227 | kmem_cache_free(gfs2_quotad_cachep, qd); | ||
| 1228 | } | ||
| 1229 | } | ||
| 1230 | |||
| 1231 | void gfs2_quota_cleanup(struct gfs2_sbd *sdp) | 1241 | void gfs2_quota_cleanup(struct gfs2_sbd *sdp) |
| 1232 | { | 1242 | { |
| 1233 | struct list_head *head = &sdp->sd_quota_list; | 1243 | struct list_head *head = &sdp->sd_quota_list; |
| 1234 | struct gfs2_quota_data *qd; | 1244 | struct gfs2_quota_data *qd; |
| 1235 | unsigned int x; | 1245 | unsigned int x; |
| 1236 | 1246 | ||
| 1237 | spin_lock(&sdp->sd_quota_spin); | 1247 | spin_lock(&qd_lru_lock); |
| 1238 | while (!list_empty(head)) { | 1248 | while (!list_empty(head)) { |
| 1239 | qd = list_entry(head->prev, struct gfs2_quota_data, qd_list); | 1249 | qd = list_entry(head->prev, struct gfs2_quota_data, qd_list); |
| 1240 | 1250 | ||
| 1241 | if (qd->qd_count > 1 || | 1251 | if (atomic_read(&qd->qd_count) > 1 || |
| 1242 | (qd->qd_count && !test_bit(QDF_CHANGE, &qd->qd_flags))) { | 1252 | (atomic_read(&qd->qd_count) && |
| 1253 | !test_bit(QDF_CHANGE, &qd->qd_flags))) { | ||
| 1243 | list_move(&qd->qd_list, head); | 1254 | list_move(&qd->qd_list, head); |
| 1244 | spin_unlock(&sdp->sd_quota_spin); | 1255 | spin_unlock(&qd_lru_lock); |
| 1245 | schedule(); | 1256 | schedule(); |
| 1246 | spin_lock(&sdp->sd_quota_spin); | 1257 | spin_lock(&qd_lru_lock); |
| 1247 | continue; | 1258 | continue; |
| 1248 | } | 1259 | } |
| 1249 | 1260 | ||
| 1250 | list_del(&qd->qd_list); | 1261 | list_del(&qd->qd_list); |
| 1262 | /* Also remove if this qd exists in the reclaim list */ | ||
| 1263 | if (!list_empty(&qd->qd_reclaim)) { | ||
| 1264 | list_del_init(&qd->qd_reclaim); | ||
| 1265 | atomic_dec(&qd_lru_count); | ||
| 1266 | } | ||
| 1251 | atomic_dec(&sdp->sd_quota_count); | 1267 | atomic_dec(&sdp->sd_quota_count); |
| 1252 | spin_unlock(&sdp->sd_quota_spin); | 1268 | spin_unlock(&qd_lru_lock); |
| 1253 | 1269 | ||
| 1254 | if (!qd->qd_count) { | 1270 | if (!atomic_read(&qd->qd_count)) { |
| 1255 | gfs2_assert_warn(sdp, !qd->qd_change); | 1271 | gfs2_assert_warn(sdp, !qd->qd_change); |
| 1256 | gfs2_assert_warn(sdp, !qd->qd_slot_count); | 1272 | gfs2_assert_warn(sdp, !qd->qd_slot_count); |
| 1257 | } else | 1273 | } else |
| 1258 | gfs2_assert_warn(sdp, qd->qd_slot_count == 1); | 1274 | gfs2_assert_warn(sdp, qd->qd_slot_count == 1); |
| 1259 | gfs2_assert_warn(sdp, !qd->qd_bh_count); | 1275 | gfs2_assert_warn(sdp, !qd->qd_bh_count); |
| 1260 | 1276 | ||
| 1261 | gfs2_lvb_unhold(qd->qd_gl); | 1277 | gfs2_glock_put(qd->qd_gl); |
| 1262 | kmem_cache_free(gfs2_quotad_cachep, qd); | 1278 | kmem_cache_free(gfs2_quotad_cachep, qd); |
| 1263 | 1279 | ||
| 1264 | spin_lock(&sdp->sd_quota_spin); | 1280 | spin_lock(&qd_lru_lock); |
| 1265 | } | 1281 | } |
| 1266 | spin_unlock(&sdp->sd_quota_spin); | 1282 | spin_unlock(&qd_lru_lock); |
| 1267 | 1283 | ||
| 1268 | gfs2_assert_warn(sdp, !atomic_read(&sdp->sd_quota_count)); | 1284 | gfs2_assert_warn(sdp, !atomic_read(&sdp->sd_quota_count)); |
| 1269 | 1285 | ||
| @@ -1341,9 +1357,6 @@ int gfs2_quotad(void *data) | |||
| 1341 | quotad_check_timeo(sdp, "sync", gfs2_quota_sync, t, | 1357 | quotad_check_timeo(sdp, "sync", gfs2_quota_sync, t, |
| 1342 | "ad_timeo, &tune->gt_quota_quantum); | 1358 | "ad_timeo, &tune->gt_quota_quantum); |
| 1343 | 1359 | ||
| 1344 | /* FIXME: This should be turned into a shrinker */ | ||
| 1345 | gfs2_quota_scan(sdp); | ||
| 1346 | |||
| 1347 | /* Check for & recover partially truncated inodes */ | 1360 | /* Check for & recover partially truncated inodes */ |
| 1348 | quotad_check_trunc_list(sdp); | 1361 | quotad_check_trunc_list(sdp); |
| 1349 | 1362 | ||
diff --git a/fs/gfs2/quota.h b/fs/gfs2/quota.h index cec9032be97d..0fa5fa63d0e8 100644 --- a/fs/gfs2/quota.h +++ b/fs/gfs2/quota.h | |||
| @@ -49,4 +49,6 @@ static inline int gfs2_quota_lock_check(struct gfs2_inode *ip) | |||
| 49 | return ret; | 49 | return ret; |
| 50 | } | 50 | } |
| 51 | 51 | ||
| 52 | extern int gfs2_shrink_qd_memory(int nr, gfp_t gfp_mask); | ||
| 53 | |||
| 52 | #endif /* __QUOTA_DOT_H__ */ | 54 | #endif /* __QUOTA_DOT_H__ */ |
diff --git a/fs/gfs2/recovery.c b/fs/gfs2/recovery.c index efd09c3d2b26..247e8f7d6b3d 100644 --- a/fs/gfs2/recovery.c +++ b/fs/gfs2/recovery.c | |||
| @@ -13,7 +13,6 @@ | |||
| 13 | #include <linux/buffer_head.h> | 13 | #include <linux/buffer_head.h> |
| 14 | #include <linux/gfs2_ondisk.h> | 14 | #include <linux/gfs2_ondisk.h> |
| 15 | #include <linux/crc32.h> | 15 | #include <linux/crc32.h> |
| 16 | #include <linux/lm_interface.h> | ||
| 17 | #include <linux/kthread.h> | 16 | #include <linux/kthread.h> |
| 18 | #include <linux/freezer.h> | 17 | #include <linux/freezer.h> |
| 19 | 18 | ||
| @@ -427,20 +426,23 @@ static int clean_journal(struct gfs2_jdesc *jd, struct gfs2_log_header_host *hea | |||
| 427 | } | 426 | } |
| 428 | 427 | ||
| 429 | 428 | ||
| 430 | static void gfs2_lm_recovery_done(struct gfs2_sbd *sdp, unsigned int jid, | 429 | static void gfs2_recovery_done(struct gfs2_sbd *sdp, unsigned int jid, |
| 431 | unsigned int message) | 430 | unsigned int message) |
| 432 | { | 431 | { |
| 433 | if (!sdp->sd_lockstruct.ls_ops->lm_recovery_done) | 432 | char env_jid[20]; |
| 434 | return; | 433 | char env_status[20]; |
| 435 | 434 | char *envp[] = { env_jid, env_status, NULL }; | |
| 436 | if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags))) | 435 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; |
| 437 | sdp->sd_lockstruct.ls_ops->lm_recovery_done( | 436 | ls->ls_recover_jid_done = jid; |
| 438 | sdp->sd_lockstruct.ls_lockspace, jid, message); | 437 | ls->ls_recover_jid_status = message; |
| 438 | sprintf(env_jid, "JID=%d", jid); | ||
| 439 | sprintf(env_status, "RECOVERY=%s", | ||
| 440 | message == LM_RD_SUCCESS ? "Done" : "Failed"); | ||
| 441 | kobject_uevent_env(&sdp->sd_kobj, KOBJ_CHANGE, envp); | ||
| 439 | } | 442 | } |
| 440 | 443 | ||
| 441 | |||
| 442 | /** | 444 | /** |
| 443 | * gfs2_recover_journal - recovery a given journal | 445 | * gfs2_recover_journal - recover a given journal |
| 444 | * @jd: the struct gfs2_jdesc describing the journal | 446 | * @jd: the struct gfs2_jdesc describing the journal |
| 445 | * | 447 | * |
| 446 | * Acquire the journal's lock, check to see if the journal is clean, and | 448 | * Acquire the journal's lock, check to see if the journal is clean, and |
| @@ -561,7 +563,7 @@ int gfs2_recover_journal(struct gfs2_jdesc *jd) | |||
| 561 | if (jd->jd_jid != sdp->sd_lockstruct.ls_jid) | 563 | if (jd->jd_jid != sdp->sd_lockstruct.ls_jid) |
| 562 | gfs2_glock_dq_uninit(&ji_gh); | 564 | gfs2_glock_dq_uninit(&ji_gh); |
| 563 | 565 | ||
| 564 | gfs2_lm_recovery_done(sdp, jd->jd_jid, LM_RD_SUCCESS); | 566 | gfs2_recovery_done(sdp, jd->jd_jid, LM_RD_SUCCESS); |
| 565 | 567 | ||
| 566 | if (jd->jd_jid != sdp->sd_lockstruct.ls_jid) | 568 | if (jd->jd_jid != sdp->sd_lockstruct.ls_jid) |
| 567 | gfs2_glock_dq_uninit(&j_gh); | 569 | gfs2_glock_dq_uninit(&j_gh); |
| @@ -581,7 +583,7 @@ fail_gunlock_j: | |||
| 581 | fs_info(sdp, "jid=%u: %s\n", jd->jd_jid, (error) ? "Failed" : "Done"); | 583 | fs_info(sdp, "jid=%u: %s\n", jd->jd_jid, (error) ? "Failed" : "Done"); |
| 582 | 584 | ||
| 583 | fail: | 585 | fail: |
| 584 | gfs2_lm_recovery_done(sdp, jd->jd_jid, LM_RD_GAVEUP); | 586 | gfs2_recovery_done(sdp, jd->jd_jid, LM_RD_GAVEUP); |
| 585 | return error; | 587 | return error; |
| 586 | } | 588 | } |
| 587 | 589 | ||
diff --git a/fs/gfs2/rgrp.c b/fs/gfs2/rgrp.c index 8b01c635d925..f03d024038ea 100644 --- a/fs/gfs2/rgrp.c +++ b/fs/gfs2/rgrp.c | |||
| @@ -13,8 +13,8 @@ | |||
| 13 | #include <linux/buffer_head.h> | 13 | #include <linux/buffer_head.h> |
| 14 | #include <linux/fs.h> | 14 | #include <linux/fs.h> |
| 15 | #include <linux/gfs2_ondisk.h> | 15 | #include <linux/gfs2_ondisk.h> |
| 16 | #include <linux/lm_interface.h> | ||
| 17 | #include <linux/prefetch.h> | 16 | #include <linux/prefetch.h> |
| 17 | #include <linux/blkdev.h> | ||
| 18 | 18 | ||
| 19 | #include "gfs2.h" | 19 | #include "gfs2.h" |
| 20 | #include "incore.h" | 20 | #include "incore.h" |
| @@ -132,81 +132,90 @@ static inline unsigned char gfs2_testbit(struct gfs2_rgrpd *rgd, | |||
| 132 | } | 132 | } |
| 133 | 133 | ||
| 134 | /** | 134 | /** |
| 135 | * gfs2_bit_search | ||
| 136 | * @ptr: Pointer to bitmap data | ||
| 137 | * @mask: Mask to use (normally 0x55555.... but adjusted for search start) | ||
| 138 | * @state: The state we are searching for | ||
| 139 | * | ||
| 140 | * We xor the bitmap data with a patter which is the bitwise opposite | ||
| 141 | * of what we are looking for, this gives rise to a pattern of ones | ||
| 142 | * wherever there is a match. Since we have two bits per entry, we | ||
| 143 | * take this pattern, shift it down by one place and then and it with | ||
| 144 | * the original. All the even bit positions (0,2,4, etc) then represent | ||
| 145 | * successful matches, so we mask with 0x55555..... to remove the unwanted | ||
| 146 | * odd bit positions. | ||
| 147 | * | ||
| 148 | * This allows searching of a whole u64 at once (32 blocks) with a | ||
| 149 | * single test (on 64 bit arches). | ||
| 150 | */ | ||
| 151 | |||
| 152 | static inline u64 gfs2_bit_search(const __le64 *ptr, u64 mask, u8 state) | ||
| 153 | { | ||
| 154 | u64 tmp; | ||
| 155 | static const u64 search[] = { | ||
| 156 | [0] = 0xffffffffffffffffULL, | ||
| 157 | [1] = 0xaaaaaaaaaaaaaaaaULL, | ||
| 158 | [2] = 0x5555555555555555ULL, | ||
| 159 | [3] = 0x0000000000000000ULL, | ||
| 160 | }; | ||
| 161 | tmp = le64_to_cpu(*ptr) ^ search[state]; | ||
| 162 | tmp &= (tmp >> 1); | ||
| 163 | tmp &= mask; | ||
| 164 | return tmp; | ||
| 165 | } | ||
| 166 | |||
| 167 | /** | ||
| 135 | * gfs2_bitfit - Search an rgrp's bitmap buffer to find a bit-pair representing | 168 | * gfs2_bitfit - Search an rgrp's bitmap buffer to find a bit-pair representing |
| 136 | * a block in a given allocation state. | 169 | * a block in a given allocation state. |
| 137 | * @buffer: the buffer that holds the bitmaps | 170 | * @buffer: the buffer that holds the bitmaps |
| 138 | * @buflen: the length (in bytes) of the buffer | 171 | * @len: the length (in bytes) of the buffer |
| 139 | * @goal: start search at this block's bit-pair (within @buffer) | 172 | * @goal: start search at this block's bit-pair (within @buffer) |
| 140 | * @old_state: GFS2_BLKST_XXX the state of the block we're looking for. | 173 | * @state: GFS2_BLKST_XXX the state of the block we're looking for. |
| 141 | * | 174 | * |
| 142 | * Scope of @goal and returned block number is only within this bitmap buffer, | 175 | * Scope of @goal and returned block number is only within this bitmap buffer, |
| 143 | * not entire rgrp or filesystem. @buffer will be offset from the actual | 176 | * not entire rgrp or filesystem. @buffer will be offset from the actual |
| 144 | * beginning of a bitmap block buffer, skipping any header structures. | 177 | * beginning of a bitmap block buffer, skipping any header structures, but |
| 178 | * headers are always a multiple of 64 bits long so that the buffer is | ||
| 179 | * always aligned to a 64 bit boundary. | ||
| 180 | * | ||
| 181 | * The size of the buffer is in bytes, but is it assumed that it is | ||
| 182 | * always ok to to read a complete multiple of 64 bits at the end | ||
| 183 | * of the block in case the end is no aligned to a natural boundary. | ||
| 145 | * | 184 | * |
| 146 | * Return: the block number (bitmap buffer scope) that was found | 185 | * Return: the block number (bitmap buffer scope) that was found |
| 147 | */ | 186 | */ |
| 148 | 187 | ||
| 149 | static u32 gfs2_bitfit(const u8 *buffer, unsigned int buflen, u32 goal, | 188 | static u32 gfs2_bitfit(const u8 *buf, const unsigned int len, |
| 150 | u8 old_state) | 189 | u32 goal, u8 state) |
| 151 | { | 190 | { |
| 152 | const u8 *byte, *start, *end; | 191 | u32 spoint = (goal << 1) & ((8*sizeof(u64)) - 1); |
| 153 | int bit, startbit; | 192 | const __le64 *ptr = ((__le64 *)buf) + (goal >> 5); |
| 154 | u32 g1, g2, misaligned; | 193 | const __le64 *end = (__le64 *)(buf + ALIGN(len, sizeof(u64))); |
| 155 | unsigned long *plong; | 194 | u64 tmp; |
| 156 | unsigned long lskipval; | 195 | u64 mask = 0x5555555555555555ULL; |
| 157 | 196 | u32 bit; | |
| 158 | lskipval = (old_state & GFS2_BLKST_USED) ? LBITSKIP00 : LBITSKIP55; | 197 | |
| 159 | g1 = (goal / GFS2_NBBY); | 198 | BUG_ON(state > 3); |
| 160 | start = buffer + g1; | 199 | |
| 161 | byte = start; | 200 | /* Mask off bits we don't care about at the start of the search */ |
| 162 | end = buffer + buflen; | 201 | mask <<= spoint; |
| 163 | g2 = ALIGN(g1, sizeof(unsigned long)); | 202 | tmp = gfs2_bit_search(ptr, mask, state); |
| 164 | plong = (unsigned long *)(buffer + g2); | 203 | ptr++; |
| 165 | startbit = bit = (goal % GFS2_NBBY) * GFS2_BIT_SIZE; | 204 | while(tmp == 0 && ptr < end) { |
| 166 | misaligned = g2 - g1; | 205 | tmp = gfs2_bit_search(ptr, 0x5555555555555555ULL, state); |
| 167 | if (!misaligned) | 206 | ptr++; |
| 168 | goto ulong_aligned; | ||
| 169 | /* parse the bitmap a byte at a time */ | ||
| 170 | misaligned: | ||
| 171 | while (byte < end) { | ||
| 172 | if (((*byte >> bit) & GFS2_BIT_MASK) == old_state) { | ||
| 173 | return goal + | ||
| 174 | (((byte - start) * GFS2_NBBY) + | ||
| 175 | ((bit - startbit) >> 1)); | ||
| 176 | } | ||
| 177 | bit += GFS2_BIT_SIZE; | ||
| 178 | if (bit >= GFS2_NBBY * GFS2_BIT_SIZE) { | ||
| 179 | bit = 0; | ||
| 180 | byte++; | ||
| 181 | misaligned--; | ||
| 182 | if (!misaligned) { | ||
| 183 | plong = (unsigned long *)byte; | ||
| 184 | goto ulong_aligned; | ||
| 185 | } | ||
| 186 | } | ||
| 187 | } | ||
| 188 | return BFITNOENT; | ||
| 189 | |||
| 190 | /* parse the bitmap a unsigned long at a time */ | ||
| 191 | ulong_aligned: | ||
| 192 | /* Stop at "end - 1" or else prefetch can go past the end and segfault. | ||
| 193 | We could "if" it but we'd lose some of the performance gained. | ||
| 194 | This way will only slow down searching the very last 4/8 bytes | ||
| 195 | depending on architecture. I've experimented with several ways | ||
| 196 | of writing this section such as using an else before the goto | ||
| 197 | but this one seems to be the fastest. */ | ||
| 198 | while ((unsigned char *)plong < end - sizeof(unsigned long)) { | ||
| 199 | prefetch(plong + 1); | ||
| 200 | if (((*plong) & LBITMASK) != lskipval) | ||
| 201 | break; | ||
| 202 | plong++; | ||
| 203 | } | ||
| 204 | if ((unsigned char *)plong < end) { | ||
| 205 | byte = (const u8 *)plong; | ||
| 206 | misaligned += sizeof(unsigned long) - 1; | ||
| 207 | goto misaligned; | ||
| 208 | } | 207 | } |
| 209 | return BFITNOENT; | 208 | /* Mask off any bits which are more than len bytes from the start */ |
| 209 | if (ptr == end && (len & (sizeof(u64) - 1))) | ||
| 210 | tmp &= (((u64)~0) >> (64 - 8*(len & (sizeof(u64) - 1)))); | ||
| 211 | /* Didn't find anything, so return */ | ||
| 212 | if (tmp == 0) | ||
| 213 | return BFITNOENT; | ||
| 214 | ptr--; | ||
| 215 | bit = fls64(tmp); | ||
| 216 | bit--; /* fls64 always adds one to the bit count */ | ||
| 217 | bit /= 2; /* two bits per entry in the bitmap */ | ||
| 218 | return (((const unsigned char *)ptr - buf) * GFS2_NBBY) + bit; | ||
| 210 | } | 219 | } |
| 211 | 220 | ||
| 212 | /** | 221 | /** |
| @@ -831,6 +840,58 @@ void gfs2_rgrp_bh_put(struct gfs2_rgrpd *rgd) | |||
| 831 | spin_unlock(&sdp->sd_rindex_spin); | 840 | spin_unlock(&sdp->sd_rindex_spin); |
| 832 | } | 841 | } |
| 833 | 842 | ||
| 843 | static void gfs2_rgrp_send_discards(struct gfs2_sbd *sdp, u64 offset, | ||
| 844 | const struct gfs2_bitmap *bi) | ||
| 845 | { | ||
| 846 | struct super_block *sb = sdp->sd_vfs; | ||
| 847 | struct block_device *bdev = sb->s_bdev; | ||
| 848 | const unsigned int sects_per_blk = sdp->sd_sb.sb_bsize / | ||
| 849 | bdev_hardsect_size(sb->s_bdev); | ||
| 850 | u64 blk; | ||
| 851 | sector_t start = 0; | ||
| 852 | sector_t nr_sects = 0; | ||
| 853 | int rv; | ||
| 854 | unsigned int x; | ||
| 855 | |||
| 856 | for (x = 0; x < bi->bi_len; x++) { | ||
| 857 | const u8 *orig = bi->bi_bh->b_data + bi->bi_offset + x; | ||
| 858 | const u8 *clone = bi->bi_clone + bi->bi_offset + x; | ||
| 859 | u8 diff = ~(*orig | (*orig >> 1)) & (*clone | (*clone >> 1)); | ||
| 860 | diff &= 0x55; | ||
| 861 | if (diff == 0) | ||
| 862 | continue; | ||
| 863 | blk = offset + ((bi->bi_start + x) * GFS2_NBBY); | ||
| 864 | blk *= sects_per_blk; /* convert to sectors */ | ||
| 865 | while(diff) { | ||
| 866 | if (diff & 1) { | ||
| 867 | if (nr_sects == 0) | ||
| 868 | goto start_new_extent; | ||
| 869 | if ((start + nr_sects) != blk) { | ||
| 870 | rv = blkdev_issue_discard(bdev, start, | ||
| 871 | nr_sects, GFP_NOFS); | ||
| 872 | if (rv) | ||
| 873 | goto fail; | ||
| 874 | nr_sects = 0; | ||
| 875 | start_new_extent: | ||
| 876 | start = blk; | ||
| 877 | } | ||
| 878 | nr_sects += sects_per_blk; | ||
| 879 | } | ||
| 880 | diff >>= 2; | ||
| 881 | blk += sects_per_blk; | ||
| 882 | } | ||
| 883 | } | ||
| 884 | if (nr_sects) { | ||
| 885 | rv = blkdev_issue_discard(bdev, start, nr_sects, GFP_NOFS); | ||
| 886 | if (rv) | ||
| 887 | goto fail; | ||
| 888 | } | ||
| 889 | return; | ||
| 890 | fail: | ||
| 891 | fs_warn(sdp, "error %d on discard request, turning discards off for this filesystem", rv); | ||
| 892 | sdp->sd_args.ar_discard = 0; | ||
| 893 | } | ||
| 894 | |||
| 834 | void gfs2_rgrp_repolish_clones(struct gfs2_rgrpd *rgd) | 895 | void gfs2_rgrp_repolish_clones(struct gfs2_rgrpd *rgd) |
| 835 | { | 896 | { |
| 836 | struct gfs2_sbd *sdp = rgd->rd_sbd; | 897 | struct gfs2_sbd *sdp = rgd->rd_sbd; |
| @@ -841,6 +902,8 @@ void gfs2_rgrp_repolish_clones(struct gfs2_rgrpd *rgd) | |||
| 841 | struct gfs2_bitmap *bi = rgd->rd_bits + x; | 902 | struct gfs2_bitmap *bi = rgd->rd_bits + x; |
| 842 | if (!bi->bi_clone) | 903 | if (!bi->bi_clone) |
| 843 | continue; | 904 | continue; |
| 905 | if (sdp->sd_args.ar_discard) | ||
| 906 | gfs2_rgrp_send_discards(sdp, rgd->rd_data0, bi); | ||
| 844 | memcpy(bi->bi_clone + bi->bi_offset, | 907 | memcpy(bi->bi_clone + bi->bi_offset, |
| 845 | bi->bi_bh->b_data + bi->bi_offset, bi->bi_len); | 908 | bi->bi_bh->b_data + bi->bi_offset, bi->bi_len); |
| 846 | } | 909 | } |
diff --git a/fs/gfs2/super.c b/fs/gfs2/super.c index 141b781f2fcc..601913e0a482 100644 --- a/fs/gfs2/super.c +++ b/fs/gfs2/super.c | |||
| @@ -15,7 +15,6 @@ | |||
| 15 | #include <linux/crc32.h> | 15 | #include <linux/crc32.h> |
| 16 | #include <linux/gfs2_ondisk.h> | 16 | #include <linux/gfs2_ondisk.h> |
| 17 | #include <linux/bio.h> | 17 | #include <linux/bio.h> |
| 18 | #include <linux/lm_interface.h> | ||
| 19 | 18 | ||
| 20 | #include "gfs2.h" | 19 | #include "gfs2.h" |
| 21 | #include "incore.h" | 20 | #include "incore.h" |
| @@ -339,7 +338,6 @@ static int gfs2_lock_fs_check_clean(struct gfs2_sbd *sdp, | |||
| 339 | struct gfs2_holder *t_gh) | 338 | struct gfs2_holder *t_gh) |
| 340 | { | 339 | { |
| 341 | struct gfs2_inode *ip; | 340 | struct gfs2_inode *ip; |
| 342 | struct gfs2_holder ji_gh; | ||
| 343 | struct gfs2_jdesc *jd; | 341 | struct gfs2_jdesc *jd; |
| 344 | struct lfcc *lfcc; | 342 | struct lfcc *lfcc; |
| 345 | LIST_HEAD(list); | 343 | LIST_HEAD(list); |
| @@ -387,7 +385,6 @@ out: | |||
| 387 | gfs2_glock_dq_uninit(&lfcc->gh); | 385 | gfs2_glock_dq_uninit(&lfcc->gh); |
| 388 | kfree(lfcc); | 386 | kfree(lfcc); |
| 389 | } | 387 | } |
| 390 | gfs2_glock_dq_uninit(&ji_gh); | ||
| 391 | return error; | 388 | return error; |
| 392 | } | 389 | } |
| 393 | 390 | ||
diff --git a/fs/gfs2/super.h b/fs/gfs2/super.h index f6b8b00ad881..91abdbedcc86 100644 --- a/fs/gfs2/super.h +++ b/fs/gfs2/super.h | |||
| @@ -14,7 +14,7 @@ | |||
| 14 | #include <linux/dcache.h> | 14 | #include <linux/dcache.h> |
| 15 | #include "incore.h" | 15 | #include "incore.h" |
| 16 | 16 | ||
| 17 | void gfs2_lm_unmount(struct gfs2_sbd *sdp); | 17 | extern void gfs2_lm_unmount(struct gfs2_sbd *sdp); |
| 18 | 18 | ||
| 19 | static inline unsigned int gfs2_jindex_size(struct gfs2_sbd *sdp) | 19 | static inline unsigned int gfs2_jindex_size(struct gfs2_sbd *sdp) |
| 20 | { | 20 | { |
| @@ -27,21 +27,23 @@ static inline unsigned int gfs2_jindex_size(struct gfs2_sbd *sdp) | |||
| 27 | 27 | ||
| 28 | void gfs2_jindex_free(struct gfs2_sbd *sdp); | 28 | void gfs2_jindex_free(struct gfs2_sbd *sdp); |
| 29 | 29 | ||
| 30 | struct gfs2_jdesc *gfs2_jdesc_find(struct gfs2_sbd *sdp, unsigned int jid); | 30 | extern int gfs2_mount_args(struct gfs2_sbd *sdp, struct gfs2_args *args, char *data); |
| 31 | int gfs2_jdesc_check(struct gfs2_jdesc *jd); | ||
| 32 | 31 | ||
| 33 | int gfs2_lookup_in_master_dir(struct gfs2_sbd *sdp, char *filename, | 32 | extern struct gfs2_jdesc *gfs2_jdesc_find(struct gfs2_sbd *sdp, unsigned int jid); |
| 34 | struct gfs2_inode **ipp); | 33 | extern int gfs2_jdesc_check(struct gfs2_jdesc *jd); |
| 35 | 34 | ||
| 36 | int gfs2_make_fs_rw(struct gfs2_sbd *sdp); | 35 | extern int gfs2_lookup_in_master_dir(struct gfs2_sbd *sdp, char *filename, |
| 36 | struct gfs2_inode **ipp); | ||
| 37 | 37 | ||
| 38 | int gfs2_statfs_init(struct gfs2_sbd *sdp); | 38 | extern int gfs2_make_fs_rw(struct gfs2_sbd *sdp); |
| 39 | void gfs2_statfs_change(struct gfs2_sbd *sdp, | ||
| 40 | s64 total, s64 free, s64 dinodes); | ||
| 41 | int gfs2_statfs_sync(struct gfs2_sbd *sdp); | ||
| 42 | 39 | ||
| 43 | int gfs2_freeze_fs(struct gfs2_sbd *sdp); | 40 | extern int gfs2_statfs_init(struct gfs2_sbd *sdp); |
| 44 | void gfs2_unfreeze_fs(struct gfs2_sbd *sdp); | 41 | extern void gfs2_statfs_change(struct gfs2_sbd *sdp, s64 total, s64 free, |
| 42 | s64 dinodes); | ||
| 43 | extern int gfs2_statfs_sync(struct gfs2_sbd *sdp); | ||
| 44 | |||
| 45 | extern int gfs2_freeze_fs(struct gfs2_sbd *sdp); | ||
| 46 | extern void gfs2_unfreeze_fs(struct gfs2_sbd *sdp); | ||
| 45 | 47 | ||
| 46 | extern struct file_system_type gfs2_fs_type; | 48 | extern struct file_system_type gfs2_fs_type; |
| 47 | extern struct file_system_type gfs2meta_fs_type; | 49 | extern struct file_system_type gfs2meta_fs_type; |
diff --git a/fs/gfs2/sys.c b/fs/gfs2/sys.c index 26c1fa777a95..7655f5025fec 100644 --- a/fs/gfs2/sys.c +++ b/fs/gfs2/sys.c | |||
| @@ -14,9 +14,8 @@ | |||
| 14 | #include <linux/buffer_head.h> | 14 | #include <linux/buffer_head.h> |
| 15 | #include <linux/module.h> | 15 | #include <linux/module.h> |
| 16 | #include <linux/kobject.h> | 16 | #include <linux/kobject.h> |
| 17 | #include <linux/gfs2_ondisk.h> | ||
| 18 | #include <linux/lm_interface.h> | ||
| 19 | #include <asm/uaccess.h> | 17 | #include <asm/uaccess.h> |
| 18 | #include <linux/gfs2_ondisk.h> | ||
| 20 | 19 | ||
| 21 | #include "gfs2.h" | 20 | #include "gfs2.h" |
| 22 | #include "incore.h" | 21 | #include "incore.h" |
| @@ -25,6 +24,7 @@ | |||
| 25 | #include "glock.h" | 24 | #include "glock.h" |
| 26 | #include "quota.h" | 25 | #include "quota.h" |
| 27 | #include "util.h" | 26 | #include "util.h" |
| 27 | #include "glops.h" | ||
| 28 | 28 | ||
| 29 | static ssize_t id_show(struct gfs2_sbd *sdp, char *buf) | 29 | static ssize_t id_show(struct gfs2_sbd *sdp, char *buf) |
| 30 | { | 30 | { |
| @@ -37,6 +37,30 @@ static ssize_t fsname_show(struct gfs2_sbd *sdp, char *buf) | |||
| 37 | return snprintf(buf, PAGE_SIZE, "%s\n", sdp->sd_fsname); | 37 | return snprintf(buf, PAGE_SIZE, "%s\n", sdp->sd_fsname); |
| 38 | } | 38 | } |
| 39 | 39 | ||
| 40 | static int gfs2_uuid_valid(const u8 *uuid) | ||
| 41 | { | ||
| 42 | int i; | ||
| 43 | |||
| 44 | for (i = 0; i < 16; i++) { | ||
| 45 | if (uuid[i]) | ||
| 46 | return 1; | ||
| 47 | } | ||
| 48 | return 0; | ||
| 49 | } | ||
| 50 | |||
| 51 | static ssize_t uuid_show(struct gfs2_sbd *sdp, char *buf) | ||
| 52 | { | ||
| 53 | const u8 *uuid = sdp->sd_sb.sb_uuid; | ||
| 54 | buf[0] = '\0'; | ||
| 55 | if (!gfs2_uuid_valid(uuid)) | ||
| 56 | return 0; | ||
| 57 | return snprintf(buf, PAGE_SIZE, "%02X%02X%02X%02X-%02X%02X-" | ||
| 58 | "%02X%02X-%02X%02X-%02X%02X%02X%02X%02X%02X\n", | ||
| 59 | uuid[0], uuid[1], uuid[2], uuid[3], uuid[4], uuid[5], | ||
| 60 | uuid[6], uuid[7], uuid[8], uuid[9], uuid[10], uuid[11], | ||
| 61 | uuid[12], uuid[13], uuid[14], uuid[15]); | ||
| 62 | } | ||
| 63 | |||
| 40 | static ssize_t freeze_show(struct gfs2_sbd *sdp, char *buf) | 64 | static ssize_t freeze_show(struct gfs2_sbd *sdp, char *buf) |
| 41 | { | 65 | { |
| 42 | unsigned int count; | 66 | unsigned int count; |
| @@ -148,6 +172,46 @@ static ssize_t quota_refresh_group_store(struct gfs2_sbd *sdp, const char *buf, | |||
| 148 | return len; | 172 | return len; |
| 149 | } | 173 | } |
| 150 | 174 | ||
| 175 | static ssize_t demote_rq_store(struct gfs2_sbd *sdp, const char *buf, size_t len) | ||
| 176 | { | ||
| 177 | struct gfs2_glock *gl; | ||
| 178 | const struct gfs2_glock_operations *glops; | ||
| 179 | unsigned int glmode; | ||
| 180 | unsigned int gltype; | ||
| 181 | unsigned long long glnum; | ||
| 182 | char mode[16]; | ||
| 183 | int rv; | ||
| 184 | |||
| 185 | if (!capable(CAP_SYS_ADMIN)) | ||
| 186 | return -EACCES; | ||
| 187 | |||
| 188 | rv = sscanf(buf, "%u:%llu %15s", &gltype, &glnum, | ||
| 189 | mode); | ||
| 190 | if (rv != 3) | ||
| 191 | return -EINVAL; | ||
| 192 | |||
| 193 | if (strcmp(mode, "EX") == 0) | ||
| 194 | glmode = LM_ST_UNLOCKED; | ||
| 195 | else if ((strcmp(mode, "CW") == 0) || (strcmp(mode, "DF") == 0)) | ||
| 196 | glmode = LM_ST_DEFERRED; | ||
| 197 | else if ((strcmp(mode, "PR") == 0) || (strcmp(mode, "SH") == 0)) | ||
| 198 | glmode = LM_ST_SHARED; | ||
| 199 | else | ||
| 200 | return -EINVAL; | ||
| 201 | |||
| 202 | if (gltype > LM_TYPE_JOURNAL) | ||
| 203 | return -EINVAL; | ||
| 204 | glops = gfs2_glops_list[gltype]; | ||
| 205 | if (glops == NULL) | ||
| 206 | return -EINVAL; | ||
| 207 | rv = gfs2_glock_get(sdp, glnum, glops, 0, &gl); | ||
| 208 | if (rv) | ||
| 209 | return rv; | ||
| 210 | gfs2_glock_cb(gl, glmode); | ||
| 211 | gfs2_glock_put(gl); | ||
| 212 | return len; | ||
| 213 | } | ||
| 214 | |||
| 151 | struct gfs2_attr { | 215 | struct gfs2_attr { |
| 152 | struct attribute attr; | 216 | struct attribute attr; |
| 153 | ssize_t (*show)(struct gfs2_sbd *, char *); | 217 | ssize_t (*show)(struct gfs2_sbd *, char *); |
| @@ -159,22 +223,26 @@ static struct gfs2_attr gfs2_attr_##name = __ATTR(name, mode, show, store) | |||
| 159 | 223 | ||
| 160 | GFS2_ATTR(id, 0444, id_show, NULL); | 224 | GFS2_ATTR(id, 0444, id_show, NULL); |
| 161 | GFS2_ATTR(fsname, 0444, fsname_show, NULL); | 225 | GFS2_ATTR(fsname, 0444, fsname_show, NULL); |
| 226 | GFS2_ATTR(uuid, 0444, uuid_show, NULL); | ||
| 162 | GFS2_ATTR(freeze, 0644, freeze_show, freeze_store); | 227 | GFS2_ATTR(freeze, 0644, freeze_show, freeze_store); |
| 163 | GFS2_ATTR(withdraw, 0644, withdraw_show, withdraw_store); | 228 | GFS2_ATTR(withdraw, 0644, withdraw_show, withdraw_store); |
| 164 | GFS2_ATTR(statfs_sync, 0200, NULL, statfs_sync_store); | 229 | GFS2_ATTR(statfs_sync, 0200, NULL, statfs_sync_store); |
| 165 | GFS2_ATTR(quota_sync, 0200, NULL, quota_sync_store); | 230 | GFS2_ATTR(quota_sync, 0200, NULL, quota_sync_store); |
| 166 | GFS2_ATTR(quota_refresh_user, 0200, NULL, quota_refresh_user_store); | 231 | GFS2_ATTR(quota_refresh_user, 0200, NULL, quota_refresh_user_store); |
| 167 | GFS2_ATTR(quota_refresh_group, 0200, NULL, quota_refresh_group_store); | 232 | GFS2_ATTR(quota_refresh_group, 0200, NULL, quota_refresh_group_store); |
| 233 | GFS2_ATTR(demote_rq, 0200, NULL, demote_rq_store); | ||
| 168 | 234 | ||
| 169 | static struct attribute *gfs2_attrs[] = { | 235 | static struct attribute *gfs2_attrs[] = { |
| 170 | &gfs2_attr_id.attr, | 236 | &gfs2_attr_id.attr, |
| 171 | &gfs2_attr_fsname.attr, | 237 | &gfs2_attr_fsname.attr, |
| 238 | &gfs2_attr_uuid.attr, | ||
| 172 | &gfs2_attr_freeze.attr, | 239 | &gfs2_attr_freeze.attr, |
| 173 | &gfs2_attr_withdraw.attr, | 240 | &gfs2_attr_withdraw.attr, |
| 174 | &gfs2_attr_statfs_sync.attr, | 241 | &gfs2_attr_statfs_sync.attr, |
| 175 | &gfs2_attr_quota_sync.attr, | 242 | &gfs2_attr_quota_sync.attr, |
| 176 | &gfs2_attr_quota_refresh_user.attr, | 243 | &gfs2_attr_quota_refresh_user.attr, |
| 177 | &gfs2_attr_quota_refresh_group.attr, | 244 | &gfs2_attr_quota_refresh_group.attr, |
| 245 | &gfs2_attr_demote_rq.attr, | ||
| 178 | NULL, | 246 | NULL, |
| 179 | }; | 247 | }; |
| 180 | 248 | ||
| @@ -224,14 +292,145 @@ static struct lockstruct_attr lockstruct_attr_##name = __ATTR_RO(name) | |||
| 224 | 292 | ||
| 225 | LOCKSTRUCT_ATTR(jid, "%u\n"); | 293 | LOCKSTRUCT_ATTR(jid, "%u\n"); |
| 226 | LOCKSTRUCT_ATTR(first, "%u\n"); | 294 | LOCKSTRUCT_ATTR(first, "%u\n"); |
| 227 | LOCKSTRUCT_ATTR(lvb_size, "%u\n"); | ||
| 228 | LOCKSTRUCT_ATTR(flags, "%d\n"); | ||
| 229 | 295 | ||
| 230 | static struct attribute *lockstruct_attrs[] = { | 296 | static struct attribute *lockstruct_attrs[] = { |
| 231 | &lockstruct_attr_jid.attr, | 297 | &lockstruct_attr_jid.attr, |
| 232 | &lockstruct_attr_first.attr, | 298 | &lockstruct_attr_first.attr, |
| 233 | &lockstruct_attr_lvb_size.attr, | 299 | NULL, |
| 234 | &lockstruct_attr_flags.attr, | 300 | }; |
| 301 | |||
| 302 | /* | ||
| 303 | * lock_module. Originally from lock_dlm | ||
| 304 | */ | ||
| 305 | |||
| 306 | static ssize_t proto_name_show(struct gfs2_sbd *sdp, char *buf) | ||
| 307 | { | ||
| 308 | const struct lm_lockops *ops = sdp->sd_lockstruct.ls_ops; | ||
| 309 | return sprintf(buf, "%s\n", ops->lm_proto_name); | ||
| 310 | } | ||
| 311 | |||
| 312 | static ssize_t block_show(struct gfs2_sbd *sdp, char *buf) | ||
| 313 | { | ||
| 314 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; | ||
| 315 | ssize_t ret; | ||
| 316 | int val = 0; | ||
| 317 | |||
| 318 | if (test_bit(DFL_BLOCK_LOCKS, &ls->ls_flags)) | ||
| 319 | val = 1; | ||
| 320 | ret = sprintf(buf, "%d\n", val); | ||
| 321 | return ret; | ||
| 322 | } | ||
| 323 | |||
| 324 | static ssize_t block_store(struct gfs2_sbd *sdp, const char *buf, size_t len) | ||
| 325 | { | ||
| 326 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; | ||
| 327 | ssize_t ret = len; | ||
| 328 | int val; | ||
| 329 | |||
| 330 | val = simple_strtol(buf, NULL, 0); | ||
| 331 | |||
| 332 | if (val == 1) | ||
| 333 | set_bit(DFL_BLOCK_LOCKS, &ls->ls_flags); | ||
| 334 | else if (val == 0) { | ||
| 335 | clear_bit(DFL_BLOCK_LOCKS, &ls->ls_flags); | ||
| 336 | smp_mb__after_clear_bit(); | ||
| 337 | gfs2_glock_thaw(sdp); | ||
| 338 | } else { | ||
| 339 | ret = -EINVAL; | ||
| 340 | } | ||
| 341 | return ret; | ||
| 342 | } | ||
| 343 | |||
| 344 | static ssize_t lkid_show(struct gfs2_sbd *sdp, char *buf) | ||
| 345 | { | ||
| 346 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; | ||
| 347 | return sprintf(buf, "%u\n", ls->ls_id); | ||
| 348 | } | ||
| 349 | |||
| 350 | static ssize_t lkfirst_show(struct gfs2_sbd *sdp, char *buf) | ||
| 351 | { | ||
| 352 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; | ||
| 353 | return sprintf(buf, "%d\n", ls->ls_first); | ||
| 354 | } | ||
| 355 | |||
| 356 | static ssize_t first_done_show(struct gfs2_sbd *sdp, char *buf) | ||
| 357 | { | ||
| 358 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; | ||
| 359 | return sprintf(buf, "%d\n", ls->ls_first_done); | ||
| 360 | } | ||
| 361 | |||
| 362 | static ssize_t recover_show(struct gfs2_sbd *sdp, char *buf) | ||
| 363 | { | ||
| 364 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; | ||
| 365 | return sprintf(buf, "%d\n", ls->ls_recover_jid); | ||
| 366 | } | ||
| 367 | |||
| 368 | static void gfs2_jdesc_make_dirty(struct gfs2_sbd *sdp, unsigned int jid) | ||
| 369 | { | ||
| 370 | struct gfs2_jdesc *jd; | ||
| 371 | |||
| 372 | spin_lock(&sdp->sd_jindex_spin); | ||
| 373 | list_for_each_entry(jd, &sdp->sd_jindex_list, jd_list) { | ||
| 374 | if (jd->jd_jid != jid) | ||
| 375 | continue; | ||
| 376 | jd->jd_dirty = 1; | ||
| 377 | break; | ||
| 378 | } | ||
| 379 | spin_unlock(&sdp->sd_jindex_spin); | ||
| 380 | } | ||
| 381 | |||
| 382 | static ssize_t recover_store(struct gfs2_sbd *sdp, const char *buf, size_t len) | ||
| 383 | { | ||
| 384 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; | ||
| 385 | ls->ls_recover_jid = simple_strtol(buf, NULL, 0); | ||
| 386 | gfs2_jdesc_make_dirty(sdp, ls->ls_recover_jid); | ||
| 387 | if (sdp->sd_recoverd_process) | ||
| 388 | wake_up_process(sdp->sd_recoverd_process); | ||
| 389 | return len; | ||
| 390 | } | ||
| 391 | |||
| 392 | static ssize_t recover_done_show(struct gfs2_sbd *sdp, char *buf) | ||
| 393 | { | ||
| 394 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; | ||
| 395 | return sprintf(buf, "%d\n", ls->ls_recover_jid_done); | ||
| 396 | } | ||
| 397 | |||
| 398 | static ssize_t recover_status_show(struct gfs2_sbd *sdp, char *buf) | ||
| 399 | { | ||
| 400 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; | ||
| 401 | return sprintf(buf, "%d\n", ls->ls_recover_jid_status); | ||
| 402 | } | ||
| 403 | |||
| 404 | struct gdlm_attr { | ||
| 405 | struct attribute attr; | ||
| 406 | ssize_t (*show)(struct gfs2_sbd *sdp, char *); | ||
| 407 | ssize_t (*store)(struct gfs2_sbd *sdp, const char *, size_t); | ||
| 408 | }; | ||
| 409 | |||
| 410 | #define GDLM_ATTR(_name,_mode,_show,_store) \ | ||
| 411 | static struct gdlm_attr gdlm_attr_##_name = __ATTR(_name,_mode,_show,_store) | ||
| 412 | |||
| 413 | GDLM_ATTR(proto_name, 0444, proto_name_show, NULL); | ||
| 414 | GDLM_ATTR(block, 0644, block_show, block_store); | ||
| 415 | GDLM_ATTR(withdraw, 0644, withdraw_show, withdraw_store); | ||
| 416 | GDLM_ATTR(id, 0444, lkid_show, NULL); | ||
| 417 | GDLM_ATTR(first, 0444, lkfirst_show, NULL); | ||
| 418 | GDLM_ATTR(first_done, 0444, first_done_show, NULL); | ||
| 419 | GDLM_ATTR(recover, 0644, recover_show, recover_store); | ||
| 420 | GDLM_ATTR(recover_done, 0444, recover_done_show, NULL); | ||
| 421 | GDLM_ATTR(recover_status, 0444, recover_status_show, NULL); | ||
| 422 | |||
| 423 | static struct attribute *lock_module_attrs[] = { | ||
| 424 | &gdlm_attr_proto_name.attr, | ||
| 425 | &gdlm_attr_block.attr, | ||
| 426 | &gdlm_attr_withdraw.attr, | ||
| 427 | &gdlm_attr_id.attr, | ||
| 428 | &lockstruct_attr_jid.attr, | ||
| 429 | &gdlm_attr_first.attr, | ||
| 430 | &gdlm_attr_first_done.attr, | ||
| 431 | &gdlm_attr_recover.attr, | ||
| 432 | &gdlm_attr_recover_done.attr, | ||
| 433 | &gdlm_attr_recover_status.attr, | ||
| 235 | NULL, | 434 | NULL, |
| 236 | }; | 435 | }; |
| 237 | 436 | ||
| @@ -373,7 +572,6 @@ TUNE_ATTR(complain_secs, 0); | |||
| 373 | TUNE_ATTR(statfs_slow, 0); | 572 | TUNE_ATTR(statfs_slow, 0); |
| 374 | TUNE_ATTR(new_files_jdata, 0); | 573 | TUNE_ATTR(new_files_jdata, 0); |
| 375 | TUNE_ATTR(quota_simul_sync, 1); | 574 | TUNE_ATTR(quota_simul_sync, 1); |
| 376 | TUNE_ATTR(quota_cache_secs, 1); | ||
| 377 | TUNE_ATTR(stall_secs, 1); | 575 | TUNE_ATTR(stall_secs, 1); |
| 378 | TUNE_ATTR(statfs_quantum, 1); | 576 | TUNE_ATTR(statfs_quantum, 1); |
| 379 | TUNE_ATTR_DAEMON(recoverd_secs, recoverd_process); | 577 | TUNE_ATTR_DAEMON(recoverd_secs, recoverd_process); |
| @@ -389,7 +587,6 @@ static struct attribute *tune_attrs[] = { | |||
| 389 | &tune_attr_complain_secs.attr, | 587 | &tune_attr_complain_secs.attr, |
| 390 | &tune_attr_statfs_slow.attr, | 588 | &tune_attr_statfs_slow.attr, |
| 391 | &tune_attr_quota_simul_sync.attr, | 589 | &tune_attr_quota_simul_sync.attr, |
| 392 | &tune_attr_quota_cache_secs.attr, | ||
| 393 | &tune_attr_stall_secs.attr, | 590 | &tune_attr_stall_secs.attr, |
| 394 | &tune_attr_statfs_quantum.attr, | 591 | &tune_attr_statfs_quantum.attr, |
| 395 | &tune_attr_recoverd_secs.attr, | 592 | &tune_attr_recoverd_secs.attr, |
| @@ -414,6 +611,11 @@ static struct attribute_group tune_group = { | |||
| 414 | .attrs = tune_attrs, | 611 | .attrs = tune_attrs, |
| 415 | }; | 612 | }; |
| 416 | 613 | ||
| 614 | static struct attribute_group lock_module_group = { | ||
| 615 | .name = "lock_module", | ||
| 616 | .attrs = lock_module_attrs, | ||
| 617 | }; | ||
| 618 | |||
| 417 | int gfs2_sys_fs_add(struct gfs2_sbd *sdp) | 619 | int gfs2_sys_fs_add(struct gfs2_sbd *sdp) |
| 418 | { | 620 | { |
| 419 | int error; | 621 | int error; |
| @@ -436,9 +638,15 @@ int gfs2_sys_fs_add(struct gfs2_sbd *sdp) | |||
| 436 | if (error) | 638 | if (error) |
| 437 | goto fail_args; | 639 | goto fail_args; |
| 438 | 640 | ||
| 641 | error = sysfs_create_group(&sdp->sd_kobj, &lock_module_group); | ||
| 642 | if (error) | ||
| 643 | goto fail_tune; | ||
| 644 | |||
| 439 | kobject_uevent(&sdp->sd_kobj, KOBJ_ADD); | 645 | kobject_uevent(&sdp->sd_kobj, KOBJ_ADD); |
| 440 | return 0; | 646 | return 0; |
| 441 | 647 | ||
| 648 | fail_tune: | ||
| 649 | sysfs_remove_group(&sdp->sd_kobj, &tune_group); | ||
| 442 | fail_args: | 650 | fail_args: |
| 443 | sysfs_remove_group(&sdp->sd_kobj, &args_group); | 651 | sysfs_remove_group(&sdp->sd_kobj, &args_group); |
| 444 | fail_lockstruct: | 652 | fail_lockstruct: |
| @@ -455,15 +663,27 @@ void gfs2_sys_fs_del(struct gfs2_sbd *sdp) | |||
| 455 | sysfs_remove_group(&sdp->sd_kobj, &tune_group); | 663 | sysfs_remove_group(&sdp->sd_kobj, &tune_group); |
| 456 | sysfs_remove_group(&sdp->sd_kobj, &args_group); | 664 | sysfs_remove_group(&sdp->sd_kobj, &args_group); |
| 457 | sysfs_remove_group(&sdp->sd_kobj, &lockstruct_group); | 665 | sysfs_remove_group(&sdp->sd_kobj, &lockstruct_group); |
| 666 | sysfs_remove_group(&sdp->sd_kobj, &lock_module_group); | ||
| 458 | kobject_put(&sdp->sd_kobj); | 667 | kobject_put(&sdp->sd_kobj); |
| 459 | } | 668 | } |
| 460 | 669 | ||
| 670 | |||
| 461 | static int gfs2_uevent(struct kset *kset, struct kobject *kobj, | 671 | static int gfs2_uevent(struct kset *kset, struct kobject *kobj, |
| 462 | struct kobj_uevent_env *env) | 672 | struct kobj_uevent_env *env) |
| 463 | { | 673 | { |
| 464 | struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj); | 674 | struct gfs2_sbd *sdp = container_of(kobj, struct gfs2_sbd, sd_kobj); |
| 675 | const u8 *uuid = sdp->sd_sb.sb_uuid; | ||
| 676 | |||
| 465 | add_uevent_var(env, "LOCKTABLE=%s", sdp->sd_table_name); | 677 | add_uevent_var(env, "LOCKTABLE=%s", sdp->sd_table_name); |
| 466 | add_uevent_var(env, "LOCKPROTO=%s", sdp->sd_proto_name); | 678 | add_uevent_var(env, "LOCKPROTO=%s", sdp->sd_proto_name); |
| 679 | if (gfs2_uuid_valid(uuid)) { | ||
| 680 | add_uevent_var(env, "UUID=%02X%02X%02X%02X-%02X%02X-%02X%02X-" | ||
| 681 | "%02X%02X-%02X%02X%02X%02X%02X%02X", | ||
| 682 | uuid[0], uuid[1], uuid[2], uuid[3], uuid[4], | ||
| 683 | uuid[5], uuid[6], uuid[7], uuid[8], uuid[9], | ||
| 684 | uuid[10], uuid[11], uuid[12], uuid[13], | ||
| 685 | uuid[14], uuid[15]); | ||
| 686 | } | ||
| 467 | return 0; | 687 | return 0; |
| 468 | } | 688 | } |
| 469 | 689 | ||
diff --git a/fs/gfs2/trans.c b/fs/gfs2/trans.c index f677b8a83f0c..053752d4b27f 100644 --- a/fs/gfs2/trans.c +++ b/fs/gfs2/trans.c | |||
| @@ -12,9 +12,8 @@ | |||
| 12 | #include <linux/spinlock.h> | 12 | #include <linux/spinlock.h> |
| 13 | #include <linux/completion.h> | 13 | #include <linux/completion.h> |
| 14 | #include <linux/buffer_head.h> | 14 | #include <linux/buffer_head.h> |
| 15 | #include <linux/gfs2_ondisk.h> | ||
| 16 | #include <linux/kallsyms.h> | 15 | #include <linux/kallsyms.h> |
| 17 | #include <linux/lm_interface.h> | 16 | #include <linux/gfs2_ondisk.h> |
| 18 | 17 | ||
| 19 | #include "gfs2.h" | 18 | #include "gfs2.h" |
| 20 | #include "incore.h" | 19 | #include "incore.h" |
| @@ -88,9 +87,11 @@ void gfs2_trans_end(struct gfs2_sbd *sdp) | |||
| 88 | 87 | ||
| 89 | if (!tr->tr_touched) { | 88 | if (!tr->tr_touched) { |
| 90 | gfs2_log_release(sdp, tr->tr_reserved); | 89 | gfs2_log_release(sdp, tr->tr_reserved); |
| 91 | gfs2_glock_dq(&tr->tr_t_gh); | 90 | if (tr->tr_t_gh.gh_gl) { |
| 92 | gfs2_holder_uninit(&tr->tr_t_gh); | 91 | gfs2_glock_dq(&tr->tr_t_gh); |
| 93 | kfree(tr); | 92 | gfs2_holder_uninit(&tr->tr_t_gh); |
| 93 | kfree(tr); | ||
| 94 | } | ||
| 94 | return; | 95 | return; |
| 95 | } | 96 | } |
| 96 | 97 | ||
| @@ -106,9 +107,11 @@ void gfs2_trans_end(struct gfs2_sbd *sdp) | |||
| 106 | } | 107 | } |
| 107 | 108 | ||
| 108 | gfs2_log_commit(sdp, tr); | 109 | gfs2_log_commit(sdp, tr); |
| 109 | gfs2_glock_dq(&tr->tr_t_gh); | 110 | if (tr->tr_t_gh.gh_gl) { |
| 110 | gfs2_holder_uninit(&tr->tr_t_gh); | 111 | gfs2_glock_dq(&tr->tr_t_gh); |
| 111 | kfree(tr); | 112 | gfs2_holder_uninit(&tr->tr_t_gh); |
| 113 | kfree(tr); | ||
| 114 | } | ||
| 112 | 115 | ||
| 113 | if (sdp->sd_vfs->s_flags & MS_SYNCHRONOUS) | 116 | if (sdp->sd_vfs->s_flags & MS_SYNCHRONOUS) |
| 114 | gfs2_log_flush(sdp, NULL); | 117 | gfs2_log_flush(sdp, NULL); |
diff --git a/fs/gfs2/util.c b/fs/gfs2/util.c index 374f50e95496..9d12b1118ba0 100644 --- a/fs/gfs2/util.c +++ b/fs/gfs2/util.c | |||
| @@ -13,7 +13,6 @@ | |||
| 13 | #include <linux/buffer_head.h> | 13 | #include <linux/buffer_head.h> |
| 14 | #include <linux/crc32.h> | 14 | #include <linux/crc32.h> |
| 15 | #include <linux/gfs2_ondisk.h> | 15 | #include <linux/gfs2_ondisk.h> |
| 16 | #include <linux/lm_interface.h> | ||
| 17 | #include <asm/uaccess.h> | 16 | #include <asm/uaccess.h> |
| 18 | 17 | ||
| 19 | #include "gfs2.h" | 18 | #include "gfs2.h" |
| @@ -35,6 +34,8 @@ void gfs2_assert_i(struct gfs2_sbd *sdp) | |||
| 35 | 34 | ||
| 36 | int gfs2_lm_withdraw(struct gfs2_sbd *sdp, char *fmt, ...) | 35 | int gfs2_lm_withdraw(struct gfs2_sbd *sdp, char *fmt, ...) |
| 37 | { | 36 | { |
| 37 | struct lm_lockstruct *ls = &sdp->sd_lockstruct; | ||
| 38 | const struct lm_lockops *lm = ls->ls_ops; | ||
| 38 | va_list args; | 39 | va_list args; |
| 39 | 40 | ||
| 40 | if (test_and_set_bit(SDF_SHUTDOWN, &sdp->sd_flags)) | 41 | if (test_and_set_bit(SDF_SHUTDOWN, &sdp->sd_flags)) |
| @@ -47,8 +48,12 @@ int gfs2_lm_withdraw(struct gfs2_sbd *sdp, char *fmt, ...) | |||
| 47 | fs_err(sdp, "about to withdraw this file system\n"); | 48 | fs_err(sdp, "about to withdraw this file system\n"); |
| 48 | BUG_ON(sdp->sd_args.ar_debug); | 49 | BUG_ON(sdp->sd_args.ar_debug); |
| 49 | 50 | ||
| 50 | fs_err(sdp, "telling LM to withdraw\n"); | 51 | kobject_uevent(&sdp->sd_kobj, KOBJ_OFFLINE); |
| 51 | gfs2_withdraw_lockproto(&sdp->sd_lockstruct); | 52 | |
| 53 | if (lm->lm_unmount) { | ||
| 54 | fs_err(sdp, "telling LM to unmount\n"); | ||
| 55 | lm->lm_unmount(sdp); | ||
| 56 | } | ||
| 52 | fs_err(sdp, "withdrawn\n"); | 57 | fs_err(sdp, "withdrawn\n"); |
| 53 | dump_stack(); | 58 | dump_stack(); |
| 54 | 59 | ||
diff --git a/fs/inode.c b/fs/inode.c index 826fb0b9d1c3..643ac43e5a5c 100644 --- a/fs/inode.c +++ b/fs/inode.c | |||
| @@ -17,6 +17,7 @@ | |||
| 17 | #include <linux/hash.h> | 17 | #include <linux/hash.h> |
| 18 | #include <linux/swap.h> | 18 | #include <linux/swap.h> |
| 19 | #include <linux/security.h> | 19 | #include <linux/security.h> |
| 20 | #include <linux/ima.h> | ||
| 20 | #include <linux/pagemap.h> | 21 | #include <linux/pagemap.h> |
| 21 | #include <linux/cdev.h> | 22 | #include <linux/cdev.h> |
| 22 | #include <linux/bootmem.h> | 23 | #include <linux/bootmem.h> |
| @@ -147,13 +148,13 @@ struct inode *inode_init_always(struct super_block *sb, struct inode *inode) | |||
| 147 | inode->i_cdev = NULL; | 148 | inode->i_cdev = NULL; |
| 148 | inode->i_rdev = 0; | 149 | inode->i_rdev = 0; |
| 149 | inode->dirtied_when = 0; | 150 | inode->dirtied_when = 0; |
| 150 | if (security_inode_alloc(inode)) { | 151 | |
| 151 | if (inode->i_sb->s_op->destroy_inode) | 152 | if (security_inode_alloc(inode)) |
| 152 | inode->i_sb->s_op->destroy_inode(inode); | 153 | goto out_free_inode; |
| 153 | else | 154 | |
| 154 | kmem_cache_free(inode_cachep, (inode)); | 155 | /* allocate and initialize an i_integrity */ |
| 155 | return NULL; | 156 | if (ima_inode_alloc(inode)) |
| 156 | } | 157 | goto out_free_security; |
| 157 | 158 | ||
| 158 | spin_lock_init(&inode->i_lock); | 159 | spin_lock_init(&inode->i_lock); |
| 159 | lockdep_set_class(&inode->i_lock, &sb->s_type->i_lock_key); | 160 | lockdep_set_class(&inode->i_lock, &sb->s_type->i_lock_key); |
| @@ -189,6 +190,15 @@ struct inode *inode_init_always(struct super_block *sb, struct inode *inode) | |||
| 189 | inode->i_mapping = mapping; | 190 | inode->i_mapping = mapping; |
| 190 | 191 | ||
| 191 | return inode; | 192 | return inode; |
| 193 | |||
| 194 | out_free_security: | ||
| 195 | security_inode_free(inode); | ||
| 196 | out_free_inode: | ||
| 197 | if (inode->i_sb->s_op->destroy_inode) | ||
| 198 | inode->i_sb->s_op->destroy_inode(inode); | ||
| 199 | else | ||
| 200 | kmem_cache_free(inode_cachep, (inode)); | ||
| 201 | return NULL; | ||
| 192 | } | 202 | } |
| 193 | EXPORT_SYMBOL(inode_init_always); | 203 | EXPORT_SYMBOL(inode_init_always); |
| 194 | 204 | ||
| @@ -1290,6 +1300,40 @@ sector_t bmap(struct inode * inode, sector_t block) | |||
| 1290 | } | 1300 | } |
| 1291 | EXPORT_SYMBOL(bmap); | 1301 | EXPORT_SYMBOL(bmap); |
| 1292 | 1302 | ||
| 1303 | /* | ||
| 1304 | * With relative atime, only update atime if the previous atime is | ||
| 1305 | * earlier than either the ctime or mtime or if at least a day has | ||
| 1306 | * passed since the last atime update. | ||
| 1307 | */ | ||
| 1308 | static int relatime_need_update(struct vfsmount *mnt, struct inode *inode, | ||
| 1309 | struct timespec now) | ||
| 1310 | { | ||
| 1311 | |||
| 1312 | if (!(mnt->mnt_flags & MNT_RELATIME)) | ||
| 1313 | return 1; | ||
| 1314 | /* | ||
| 1315 | * Is mtime younger than atime? If yes, update atime: | ||
| 1316 | */ | ||
| 1317 | if (timespec_compare(&inode->i_mtime, &inode->i_atime) >= 0) | ||
| 1318 | return 1; | ||
| 1319 | /* | ||
| 1320 | * Is ctime younger than atime? If yes, update atime: | ||
| 1321 | */ | ||
| 1322 | if (timespec_compare(&inode->i_ctime, &inode->i_atime) >= 0) | ||
| 1323 | return 1; | ||
| 1324 | |||
| 1325 | /* | ||
| 1326 | * Is the previous atime value older than a day? If yes, | ||
| 1327 | * update atime: | ||
| 1328 | */ | ||
| 1329 | if ((long)(now.tv_sec - inode->i_atime.tv_sec) >= 24*60*60) | ||
| 1330 | return 1; | ||
| 1331 | /* | ||
| 1332 | * Good, we can skip the atime update: | ||
| 1333 | */ | ||
| 1334 | return 0; | ||
| 1335 | } | ||
| 1336 | |||
| 1293 | /** | 1337 | /** |
| 1294 | * touch_atime - update the access time | 1338 | * touch_atime - update the access time |
| 1295 | * @mnt: mount the inode is accessed on | 1339 | * @mnt: mount the inode is accessed on |
| @@ -1317,17 +1361,12 @@ void touch_atime(struct vfsmount *mnt, struct dentry *dentry) | |||
| 1317 | goto out; | 1361 | goto out; |
| 1318 | if ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode)) | 1362 | if ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode)) |
| 1319 | goto out; | 1363 | goto out; |
| 1320 | if (mnt->mnt_flags & MNT_RELATIME) { | ||
| 1321 | /* | ||
| 1322 | * With relative atime, only update atime if the previous | ||
| 1323 | * atime is earlier than either the ctime or mtime. | ||
| 1324 | */ | ||
| 1325 | if (timespec_compare(&inode->i_mtime, &inode->i_atime) < 0 && | ||
| 1326 | timespec_compare(&inode->i_ctime, &inode->i_atime) < 0) | ||
| 1327 | goto out; | ||
| 1328 | } | ||
| 1329 | 1364 | ||
| 1330 | now = current_fs_time(inode->i_sb); | 1365 | now = current_fs_time(inode->i_sb); |
| 1366 | |||
| 1367 | if (!relatime_need_update(mnt, inode, now)) | ||
| 1368 | goto out; | ||
| 1369 | |||
| 1331 | if (timespec_equal(&inode->i_atime, &now)) | 1370 | if (timespec_equal(&inode->i_atime, &now)) |
| 1332 | goto out; | 1371 | goto out; |
| 1333 | 1372 | ||
diff --git a/fs/namei.c b/fs/namei.c index bbc15c237558..199317642ad6 100644 --- a/fs/namei.c +++ b/fs/namei.c | |||
| @@ -24,6 +24,7 @@ | |||
| 24 | #include <linux/fsnotify.h> | 24 | #include <linux/fsnotify.h> |
| 25 | #include <linux/personality.h> | 25 | #include <linux/personality.h> |
| 26 | #include <linux/security.h> | 26 | #include <linux/security.h> |
| 27 | #include <linux/ima.h> | ||
| 27 | #include <linux/syscalls.h> | 28 | #include <linux/syscalls.h> |
| 28 | #include <linux/mount.h> | 29 | #include <linux/mount.h> |
| 29 | #include <linux/audit.h> | 30 | #include <linux/audit.h> |
| @@ -850,6 +851,8 @@ static int __link_path_walk(const char *name, struct nameidata *nd) | |||
| 850 | if (err == -EAGAIN) | 851 | if (err == -EAGAIN) |
| 851 | err = inode_permission(nd->path.dentry->d_inode, | 852 | err = inode_permission(nd->path.dentry->d_inode, |
| 852 | MAY_EXEC); | 853 | MAY_EXEC); |
| 854 | if (!err) | ||
| 855 | err = ima_path_check(&nd->path, MAY_EXEC); | ||
| 853 | if (err) | 856 | if (err) |
| 854 | break; | 857 | break; |
| 855 | 858 | ||
| @@ -1509,6 +1512,11 @@ int may_open(struct path *path, int acc_mode, int flag) | |||
| 1509 | error = inode_permission(inode, acc_mode); | 1512 | error = inode_permission(inode, acc_mode); |
| 1510 | if (error) | 1513 | if (error) |
| 1511 | return error; | 1514 | return error; |
| 1515 | |||
| 1516 | error = ima_path_check(path, | ||
| 1517 | acc_mode & (MAY_READ | MAY_WRITE | MAY_EXEC)); | ||
| 1518 | if (error) | ||
| 1519 | return error; | ||
| 1512 | /* | 1520 | /* |
| 1513 | * An append-only file must be opened in append mode for writing. | 1521 | * An append-only file must be opened in append mode for writing. |
| 1514 | */ | 1522 | */ |
diff --git a/fs/namespace.c b/fs/namespace.c index 06f8e63f6cb1..f0e753097353 100644 --- a/fs/namespace.c +++ b/fs/namespace.c | |||
| @@ -780,6 +780,7 @@ static void show_mnt_opts(struct seq_file *m, struct vfsmount *mnt) | |||
| 780 | { MNT_NOATIME, ",noatime" }, | 780 | { MNT_NOATIME, ",noatime" }, |
| 781 | { MNT_NODIRATIME, ",nodiratime" }, | 781 | { MNT_NODIRATIME, ",nodiratime" }, |
| 782 | { MNT_RELATIME, ",relatime" }, | 782 | { MNT_RELATIME, ",relatime" }, |
| 783 | { MNT_STRICTATIME, ",strictatime" }, | ||
| 783 | { 0, NULL } | 784 | { 0, NULL } |
| 784 | }; | 785 | }; |
| 785 | const struct proc_fs_info *fs_infop; | 786 | const struct proc_fs_info *fs_infop; |
| @@ -1919,6 +1920,9 @@ long do_mount(char *dev_name, char *dir_name, char *type_page, | |||
| 1919 | if (data_page) | 1920 | if (data_page) |
| 1920 | ((char *)data_page)[PAGE_SIZE - 1] = 0; | 1921 | ((char *)data_page)[PAGE_SIZE - 1] = 0; |
| 1921 | 1922 | ||
| 1923 | /* Default to relatime */ | ||
| 1924 | mnt_flags |= MNT_RELATIME; | ||
| 1925 | |||
| 1922 | /* Separate the per-mountpoint flags */ | 1926 | /* Separate the per-mountpoint flags */ |
| 1923 | if (flags & MS_NOSUID) | 1927 | if (flags & MS_NOSUID) |
| 1924 | mnt_flags |= MNT_NOSUID; | 1928 | mnt_flags |= MNT_NOSUID; |
| @@ -1930,13 +1934,14 @@ long do_mount(char *dev_name, char *dir_name, char *type_page, | |||
| 1930 | mnt_flags |= MNT_NOATIME; | 1934 | mnt_flags |= MNT_NOATIME; |
| 1931 | if (flags & MS_NODIRATIME) | 1935 | if (flags & MS_NODIRATIME) |
| 1932 | mnt_flags |= MNT_NODIRATIME; | 1936 | mnt_flags |= MNT_NODIRATIME; |
| 1933 | if (flags & MS_RELATIME) | 1937 | if (flags & MS_STRICTATIME) |
| 1934 | mnt_flags |= MNT_RELATIME; | 1938 | mnt_flags &= ~(MNT_RELATIME | MNT_NOATIME); |
| 1935 | if (flags & MS_RDONLY) | 1939 | if (flags & MS_RDONLY) |
| 1936 | mnt_flags |= MNT_READONLY; | 1940 | mnt_flags |= MNT_READONLY; |
| 1937 | 1941 | ||
| 1938 | flags &= ~(MS_NOSUID | MS_NOEXEC | MS_NODEV | MS_ACTIVE | | 1942 | flags &= ~(MS_NOSUID | MS_NOEXEC | MS_NODEV | MS_ACTIVE | |
| 1939 | MS_NOATIME | MS_NODIRATIME | MS_RELATIME| MS_KERNMOUNT); | 1943 | MS_NOATIME | MS_NODIRATIME | MS_RELATIME| MS_KERNMOUNT | |
| 1944 | MS_STRICTATIME); | ||
| 1940 | 1945 | ||
| 1941 | /* ... and get the mountpoint */ | 1946 | /* ... and get the mountpoint */ |
| 1942 | retval = kern_path(dir_name, LOOKUP_FOLLOW, &path); | 1947 | retval = kern_path(dir_name, LOOKUP_FOLLOW, &path); |
