2019-05-27 06:55:05 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Do sleep inside a spin-lock
|
|
|
|
* Copyright (c) 1999 by Takashi Iwai <tiwai@suse.de>
|
|
|
|
*/
|
|
|
|
|
2011-09-22 13:34:58 +00:00
|
|
|
#include <linux/export.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <sound/core.h>
|
|
|
|
#include "seq_lock.h"
|
|
|
|
|
|
|
|
/* wait until all locks are released */
|
|
|
|
void snd_use_lock_sync_helper(snd_use_lock_t *lockp, const char *file, int line)
|
|
|
|
{
|
2017-04-09 08:41:27 +00:00
|
|
|
int warn_count = 5 * HZ;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (atomic_read(lockp) < 0) {
|
2014-02-04 17:24:34 +00:00
|
|
|
pr_warn("ALSA: seq_lock: lock trouble [counter = %d] in %s:%d\n", atomic_read(lockp), file, line);
|
2005-04-16 22:20:36 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
while (atomic_read(lockp) > 0) {
|
2017-04-09 08:41:27 +00:00
|
|
|
if (warn_count-- == 0)
|
|
|
|
pr_warn("ALSA: seq_lock: waiting [%d left] in %s:%d\n", atomic_read(lockp), file, line);
|
2005-10-24 13:02:37 +00:00
|
|
|
schedule_timeout_uninterruptible(1);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
2006-04-28 13:13:39 +00:00
|
|
|
EXPORT_SYMBOL(snd_use_lock_sync_helper);
|