From: Julia Lawall Date: Sun, 9 Nov 2014 09:06:34 +0000 (+0100) Subject: staging: lustre: libcfs: remove final uses of the GOTO macro X-Git-Tag: firefly_0821_release~176^2~2665^2~237 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b4f0065ed344c57370e506e5464fafb66cd27990;p=firefly-linux-kernel-4.4.55.git staging: lustre: libcfs: remove final uses of the GOTO macro Remove the goto logging function, as it is no longer used. Signed-off-by: Julia Lawall Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/lustre/lustre/libcfs/debug.c b/drivers/staging/lustre/lustre/libcfs/debug.c index 2c15a9e7332f..859129d8ddc8 100644 --- a/drivers/staging/lustre/lustre/libcfs/debug.c +++ b/drivers/staging/lustre/lustre/libcfs/debug.c @@ -460,11 +460,3 @@ void libcfs_debug_set_level(unsigned int debug_level) } EXPORT_SYMBOL(libcfs_debug_set_level); - -void libcfs_log_goto(struct libcfs_debug_msg_data *msgdata, const char *label, - long_ptr_t rc) -{ - libcfs_debug_msg(msgdata, "Process leaving via %s (rc=%lu : %ld : %#lx)\n", - label, (ulong_ptr_t)rc, rc, rc); -} -EXPORT_SYMBOL(libcfs_log_goto);