Path: blob/main/sys/contrib/vchiq/interface/vchiq_arm/vchiq_killable.h
48383 views
/**1* Copyright (c) 2010-2012 Broadcom. All rights reserved.2*3* Redistribution and use in source and binary forms, with or without4* modification, are permitted provided that the following conditions5* are met:6* 1. Redistributions of source code must retain the above copyright7* notice, this list of conditions, and the following disclaimer,8* without modification.9* 2. Redistributions in binary form must reproduce the above copyright10* notice, this list of conditions and the following disclaimer in the11* documentation and/or other materials provided with the distribution.12* 3. The names of the above-listed copyright holders may not be used13* to endorse or promote products derived from this software without14* specific prior written permission.15*16* ALTERNATIVELY, this software may be distributed under the terms of the17* GNU General Public License ("GPL") version 2, as published by the Free18* Software Foundation.19*20* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS21* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,22* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR23* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR24* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,25* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,26* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR27* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF28* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING29* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS30* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.31*/3233#ifndef VCHIQ_KILLABLE_H34#define VCHIQ_KILLABLE_H3536#ifdef notyet37#include <linux/mutex.h>38#include <linux/semaphore.h>3940#define SHUTDOWN_SIGS (sigmask(SIGKILL) | sigmask(SIGINT) | sigmask(SIGQUIT) | sigmask(SIGTRAP) | sigmask(SIGSTOP) | sigmask(SIGCONT))4142static inline int __must_check down_interruptible_killable(struct semaphore *sem)43{44/* Allow interception of killable signals only. We don't want to be interrupted by harmless signals like SIGALRM */45int ret;46sigset_t blocked, oldset;47siginitsetinv(&blocked, SHUTDOWN_SIGS);48sigprocmask(SIG_SETMASK, &blocked, &oldset);49ret = down_interruptible(sem);50sigprocmask(SIG_SETMASK, &oldset, NULL);51return ret;52}53#define down_interruptible down_interruptible_killable545556static inline int __must_check mutex_lock_interruptible_killable(struct mutex *lock)57{58/* Allow interception of killable signals only. We don't want to be interrupted by harmless signals like SIGALRM */59int ret;60sigset_t blocked, oldset;61siginitsetinv(&blocked, SHUTDOWN_SIGS);62sigprocmask(SIG_SETMASK, &blocked, &oldset);63ret = mutex_lock_interruptible(lock);64sigprocmask(SIG_SETMASK, &oldset, NULL);65return ret;66}67#define mutex_lock_interruptible mutex_lock_interruptible_killable6869#endif7071#endif727374