From: "Ilpo_Järvinen" <[EMAIL PROTECTED]> Date: Thu, 31 May 2007 19:31:21 +0300 (EEST)
> (i.e, how does it show up in oops if tcp_verify_left_out looks like this): > > #define tcp_verify_left_out(tp) BUG_ON(...) > > ...does it still point to the tcp.h line xxxx then or to the > tcp_sync_left_out(tp) @ line yyyy in tcp_input.c? ...I'll test that > later on by myself in case you don't know the answer. Yes a define would make the BUG appear in the function it gets used in. Depending upon the configuration and the implementation of BUG() the same might happen for inline functions too. For example, if the BUG() is configured in non-verbose mode and is implemented using a trap instruction or __builtin_trap(). But you cannot depend upon this universally of course. - To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html