diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2008-04-10 02:12:03 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-04-10 02:12:03 -0700 |
commit | 9284d6c704b5cfc7f2eb44f81255b4762bcfe4c5 (patch) | |
tree | fbe859f42417af49dc408af084d4fb92a88f23e3 | |
parent | 3db8ce35c37b62d27e7656fe5e7d2d2865002045 (diff) | |
download | op-kernel-dev-9284d6c704b5cfc7f2eb44f81255b4762bcfe4c5.zip op-kernel-dev-9284d6c704b5cfc7f2eb44f81255b4762bcfe4c5.tar.gz |
iucv: get rid of in_atomic() use.
This BUG_ON is not needed, since all (debug) checks are also done
in smp_call_function() which gets called by this function.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Ursula Braun <braunu@de.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/iucv/iucv.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/iucv/iucv.c b/net/iucv/iucv.c index d764f4c..a65e69e 100644 --- a/net/iucv/iucv.c +++ b/net/iucv/iucv.c @@ -795,7 +795,6 @@ int iucv_path_connect(struct iucv_path *path, struct iucv_handler *handler, union iucv_param *parm; int rc; - BUG_ON(in_atomic()); spin_lock_bh(&iucv_table_lock); iucv_cleanup_queue(); parm = iucv_param[smp_processor_id()]; |