diff options
Diffstat (limited to 'net/sctp/chunk.c')
| -rw-r--r-- | net/sctp/chunk.c | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/net/sctp/chunk.c b/net/sctp/chunk.c index 69ce21e3716f..5780565f5b7d 100644 --- a/net/sctp/chunk.c +++ b/net/sctp/chunk.c @@ -66,7 +66,7 @@ static void sctp_datamsg_init(struct sctp_datamsg *msg)  }  /* Allocate and initialize datamsg. */ -SCTP_STATIC struct sctp_datamsg *sctp_datamsg_new(gfp_t gfp) +static struct sctp_datamsg *sctp_datamsg_new(gfp_t gfp)  {  	struct sctp_datamsg *msg;  	msg = kmalloc(sizeof(struct sctp_datamsg), gfp); @@ -193,8 +193,9 @@ struct sctp_datamsg *sctp_datamsg_from_user(struct sctp_association *asoc,  		msg->expires_at = jiffies +  				    msecs_to_jiffies(sinfo->sinfo_timetolive);  		msg->can_abandon = 1; -		SCTP_DEBUG_PRINTK("%s: msg:%p expires_at: %ld jiffies:%ld\n", -				  __func__, msg, msg->expires_at, jiffies); + +		pr_debug("%s: msg:%p expires_at:%ld jiffies:%ld\n", __func__, +			 msg, msg->expires_at, jiffies);  	}  	/* This is the biggest possible DATA chunk that can fit into  | 
