diff options
author | Roland Dreier <roland@digitalvampire.org> | 2007-05-03 00:33:45 -0400 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2007-05-03 00:33:45 -0400 |
commit | 796e5661f6b6be1600b3ab47c61ce61cf3e7a353 (patch) | |
tree | a7d4b6df0eef48d1b3a06b11b6705eb597a360b1 /fs/cifs/file.c | |
parent | 0b2365f826f40d6e966365299d4e9dcc7ef4e93f (diff) |
[CIFS] Change semaphore to mutex for cifs lock_sem
Originally at http://lkml.org/lkml/2006/9/2/86
The recent change to "allow Windows blocking locks to be cancelled via a
CANCEL_LOCK call" introduced a new semaphore in struct cifsFileInfo,
lock_sem. However, semaphores used as mutexes are deprecated these days,
and there's no reason to add a new one to the kernel. Therefore, convert
lock_sem to a struct mutex (and also fix one indentation glitch on one of
the lines changed anyway).
Signed-off-by: Roland Dreier <roland@digitalvampire.org>
Signed-off-by: Jan Engelhardt <jengelh@gmx.de>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/file.c')
-rw-r--r-- | fs/cifs/file.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/fs/cifs/file.c b/fs/cifs/file.c index 467cf89c039f..b570530f97bf 100644 --- a/fs/cifs/file.c +++ b/fs/cifs/file.c | |||
@@ -48,7 +48,7 @@ static inline struct cifsFileInfo *cifs_init_private( | |||
48 | private_data->netfid = netfid; | 48 | private_data->netfid = netfid; |
49 | private_data->pid = current->tgid; | 49 | private_data->pid = current->tgid; |
50 | init_MUTEX(&private_data->fh_sem); | 50 | init_MUTEX(&private_data->fh_sem); |
51 | init_MUTEX(&private_data->lock_sem); | 51 | mutex_init(&private_data->lock_mutex); |
52 | INIT_LIST_HEAD(&private_data->llist); | 52 | INIT_LIST_HEAD(&private_data->llist); |
53 | private_data->pfile = file; /* needed for writepage */ | 53 | private_data->pfile = file; /* needed for writepage */ |
54 | private_data->pInode = inode; | 54 | private_data->pInode = inode; |
@@ -511,12 +511,12 @@ int cifs_close(struct inode *inode, struct file *file) | |||
511 | 511 | ||
512 | /* Delete any outstanding lock records. | 512 | /* Delete any outstanding lock records. |
513 | We'll lose them when the file is closed anyway. */ | 513 | We'll lose them when the file is closed anyway. */ |
514 | down(&pSMBFile->lock_sem); | 514 | mutex_lock(&pSMBFile->lock_mutex); |
515 | list_for_each_entry_safe(li, tmp, &pSMBFile->llist, llist) { | 515 | list_for_each_entry_safe(li, tmp, &pSMBFile->llist, llist) { |
516 | list_del(&li->llist); | 516 | list_del(&li->llist); |
517 | kfree(li); | 517 | kfree(li); |
518 | } | 518 | } |
519 | up(&pSMBFile->lock_sem); | 519 | mutex_unlock(&pSMBFile->lock_mutex); |
520 | 520 | ||
521 | write_lock(&GlobalSMBSeslock); | 521 | write_lock(&GlobalSMBSeslock); |
522 | list_del(&pSMBFile->flist); | 522 | list_del(&pSMBFile->flist); |
@@ -601,9 +601,9 @@ static int store_file_lock(struct cifsFileInfo *fid, __u64 len, | |||
601 | li->offset = offset; | 601 | li->offset = offset; |
602 | li->length = len; | 602 | li->length = len; |
603 | li->type = lockType; | 603 | li->type = lockType; |
604 | down(&fid->lock_sem); | 604 | mutex_lock(&fid->lock_mutex); |
605 | list_add(&li->llist, &fid->llist); | 605 | list_add(&li->llist, &fid->llist); |
606 | up(&fid->lock_sem); | 606 | mutex_unlock(&fid->lock_mutex); |
607 | return 0; | 607 | return 0; |
608 | } | 608 | } |
609 | 609 | ||
@@ -760,7 +760,7 @@ int cifs_lock(struct file *file, int cmd, struct file_lock *pfLock) | |||
760 | struct cifsLockInfo *li, *tmp; | 760 | struct cifsLockInfo *li, *tmp; |
761 | 761 | ||
762 | rc = 0; | 762 | rc = 0; |
763 | down(&fid->lock_sem); | 763 | mutex_lock(&fid->lock_mutex); |
764 | list_for_each_entry_safe(li, tmp, &fid->llist, llist) { | 764 | list_for_each_entry_safe(li, tmp, &fid->llist, llist) { |
765 | if (pfLock->fl_start <= li->offset && | 765 | if (pfLock->fl_start <= li->offset && |
766 | length >= li->length) { | 766 | length >= li->length) { |
@@ -774,7 +774,7 @@ int cifs_lock(struct file *file, int cmd, struct file_lock *pfLock) | |||
774 | kfree(li); | 774 | kfree(li); |
775 | } | 775 | } |
776 | } | 776 | } |
777 | up(&fid->lock_sem); | 777 | mutex_unlock(&fid->lock_mutex); |
778 | } | 778 | } |
779 | } | 779 | } |
780 | 780 | ||