This message generated a parse failure. Raw output follows here. Please use 'back' to navigate. From devnull@lkml.org Mon Jan 30 08:46:47 2023 Received: from spaans.ds9a.nl (adsl-xs4all.ds9a.nl [213.84.159.51]) by kylie.puddingonline.com (8.11.6/8.11.6) with SMTP id g8INVdX01358 for ; Thu, 19 Sep 2002 01:31:40 +0200 Received: (qmail 25217 invoked from network); 18 Sep 2002 08:58:51 -0000 Received: from unknown (HELO spaans.ds9a.nl) (3ffe:8280:10:360:202:44ff:fe2a:a1dd) by mayo.ipv6.ds9a.nl with SMTP; 18 Sep 2002 08:58:51 -0000 Received: (qmail 6946 invoked by uid 1000); 17 Sep 2002 21:47:35 -0000 Received: (maildatabase); juh Received: (qmail 11731 invoked by alias); 3 Sep 2002 22:18:10 -0000 Received: (qmail 11728 invoked from network); 3 Sep 2002 22:18:09 -0000 Received: from unknown (HELO dipsaus.ds9a.tudelft.nl) (3ffe:8280:10:360:2a0:cff:fe14:9dde) by mayo.ipv6.ds9a.nl with SMTP; 3 Sep 2002 22:18:09 -0000 Received: (qmail 7179 invoked from network); 3 Sep 2002 22:18:08 -0000 Received: from unknown (HELO vger.kernel.org) (::ffff:209.116.70.75) by adsl-xs4all.ds9a.nl with SMTP; 3 Sep 2002 22:18:08 -0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id ; Tue, 3 Sep 2002 18:10:35 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id ; Tue, 3 Sep 2002 18:10:35 -0400 Received: from e31.co.us.ibm.com ([32.97.110.129]:59838 "EHLO e31.co.us.ibm.com") by vger.kernel.org with ESMTP id ; Tue, 3 Sep 2002 18:10:32 -0400 Received: from westrelay02.boulder.ibm.com (westrelay02.boulder.ibm.com [9.17.194.23]) by e31.co.us.ibm.com (8.12.2/8.12.2) with ESMTP id g83MF1lj035670; Tue, 3 Sep 2002 18:15:01 -0400 Received: from plars.austin.ibm.com (plars.austin.ibm.com [9.53.216.72]) by westrelay02.boulder.ibm.com (8.12.3/NCO/VER6.4) with ESMTP id g83MF0NX255804; Tue, 3 Sep 2002 16:15:01 -0600 Subject: Re: __func__ in 2.5.33? From: Paul Larson To: rasmus@jaquet.dk Cc: lkml Content-Type: multipart/mixed; boundary="=-mXEXJrThjzccSlk2lSmc" X-Mailer: Ximian Evolution 1.0.5 Date: 03 Sep 2002 17:03:42 -0500 Message-Id: <1031090622.23823.15.camel@plars.austin.ibm.com> Mime-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org X-Spam-Status: No, hits=-5.1 required=6.0 tests=SUBJ_ENDS_IN_Q_MARK,UNIFIED_PATCH version=2.31 X-Spam-Level: Lines: 70 --=-mXEXJrThjzccSlk2lSmc Content-Type: text/plain Content-Transfer-Encoding: 7bit I posted this a few days ago, but I don't think it's been picked up yet. -Paul Larson --=-mXEXJrThjzccSlk2lSmc Content-Disposition: inline Content-Description: Forwarded message - [TRIVIAL][PATCH] fix __FUNCTION__ pasting in sx.c Content-Type: message/rfc822 Subject: [TRIVIAL][PATCH] fix __FUNCTION__ pasting in sx.c From: Paul Larson To: Trivial Patch Monkey , lkml Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Ximian Evolution 1.0.5 Date: 29 Aug 2002 15:49:14 -0500 Message-Id: <1030654155.7151.1.camel@plars.austin.ibm.com> Mime-Version: 1.0 Trivial fix for __FUNCTION__ pasting in sx.c against current bk tree. -Paul Larson # This is a BitKeeper generated patch for the following project: # Project Name: Linux kernel tree # This patch format is intended for GNU patch command version 2.5 or higher. # This patch includes the following deltas: # ChangeSet 1.557 -> 1.558 # drivers/char/sx.c 1.10 -> 1.11 # # The following is the BitKeeper ChangeSet Log # -------------------------------------------- # 02/08/29 plars@austin.ibm.com 1.558 # fix __FUNCTION__ pasting in sx.c # -------------------------------------------- # diff -Nru a/drivers/char/sx.c b/drivers/char/sx.c --- a/drivers/char/sx.c Thu Aug 29 15:43:20 2002 +++ b/drivers/char/sx.c Thu Aug 29 15:43:20 2002 @@ -405,11 +405,11 @@ -#define func_enter() sx_dprintk (SX_DEBUG_FLOW, "sx: enter " __FUNCTION__ "\n") -#define func_exit() sx_dprintk (SX_DEBUG_FLOW, "sx: exit " __FUNCTION__ "\n") +#define func_enter() sx_dprintk (SX_DEBUG_FLOW, "sx: enter %s\n", __FUNCTION__) +#define func_exit() sx_dprintk (SX_DEBUG_FLOW, "sx: exit %s\n", __FUNCTION__) -#define func_enter2() sx_dprintk (SX_DEBUG_FLOW, "sx: enter " __FUNCTION__ \ - "(port %d)\n", port->line) +#define func_enter2() sx_dprintk (SX_DEBUG_FLOW, "sx: enter %s (port %d)\n", \ + __FUNCTION__, port->line) --=-mXEXJrThjzccSlk2lSmc-- - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/