aboutsummaryrefslogtreecommitdiffstats
path: root/fs/dlm
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-07-30 18:59:57 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-08-05 13:35:49 -0400
commitf368ed6088ae9c1fbe1c897bb5f215ce5e63fa1e (patch)
treea9ed27128f04f21ed0f205ec94a1ad0dbf746bb4 /fs/dlm
parent379e4f756b915bcc35958365e5d1326b3b54efce (diff)
char: make misc_deregister a void function
With well over 200+ users of this api, there are a mere 12 users that actually checked the return value of this function. And all of them really didn't do anything with that information as the system or module was shutting down no matter what. So stop pretending like it matters, and just return void from misc_deregister(). If something goes wrong in the call, you will get a WARNING splat in the syslog so you know how to fix up your driver. Other than that, there's nothing that can go wrong. Cc: Alasdair Kergon <agk@redhat.com> Cc: Neil Brown <neilb@suse.com> Cc: Oleg Drokin <oleg.drokin@intel.com> Cc: Andreas Dilger <andreas.dilger@intel.com> Cc: "Michael S. Tsirkin" <mst@redhat.com> Cc: Wim Van Sebroeck <wim@iguana.be> Cc: Christine Caulfield <ccaulfie@redhat.com> Cc: David Teigland <teigland@redhat.com> Cc: Mark Fasheh <mfasheh@suse.com> Acked-by: Joel Becker <jlbec@evilplan.org> Acked-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Acked-by: Alessandro Zummo <a.zummo@towertech.it> Acked-by: Mike Snitzer <snitzer@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs/dlm')
-rw-r--r--fs/dlm/plock.c3
-rw-r--r--fs/dlm/user.c9
2 files changed, 4 insertions, 8 deletions
diff --git a/fs/dlm/plock.c b/fs/dlm/plock.c
index e0ab3a93eeff..5532f097f6da 100644
--- a/fs/dlm/plock.c
+++ b/fs/dlm/plock.c
@@ -509,7 +509,6 @@ int dlm_plock_init(void)
509 509
510void dlm_plock_exit(void) 510void dlm_plock_exit(void)
511{ 511{
512 if (misc_deregister(&plock_dev_misc) < 0) 512 misc_deregister(&plock_dev_misc);
513 log_print("dlm_plock_exit: misc_deregister failed");
514} 513}
515 514
diff --git a/fs/dlm/user.c b/fs/dlm/user.c
index fb85f32e9eca..75ecc0d3bc85 100644
--- a/fs/dlm/user.c
+++ b/fs/dlm/user.c
@@ -362,18 +362,15 @@ fail:
362 362
363int dlm_device_deregister(struct dlm_ls *ls) 363int dlm_device_deregister(struct dlm_ls *ls)
364{ 364{
365 int error;
366
367 /* The device is not registered. This happens when the lockspace 365 /* The device is not registered. This happens when the lockspace
368 was never used from userspace, or when device_create_lockspace() 366 was never used from userspace, or when device_create_lockspace()
369 calls dlm_release_lockspace() after the register fails. */ 367 calls dlm_release_lockspace() after the register fails. */
370 if (!ls->ls_device.name) 368 if (!ls->ls_device.name)
371 return 0; 369 return 0;
372 370
373 error = misc_deregister(&ls->ls_device); 371 misc_deregister(&ls->ls_device);
374 if (!error) 372 kfree(ls->ls_device.name);
375 kfree(ls->ls_device.name); 373 return 0;
376 return error;
377} 374}
378 375
379static int device_user_purge(struct dlm_user_proc *proc, 376static int device_user_purge(struct dlm_user_proc *proc,