diff options
Diffstat (limited to 'include/net/sctp/sctp.h')
-rw-r--r-- | include/net/sctp/sctp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/sctp/sctp.h b/include/net/sctp/sctp.h index fa6cde578a1d..65946bc43d00 100644 --- a/include/net/sctp/sctp.h +++ b/include/net/sctp/sctp.h | |||
@@ -269,7 +269,7 @@ enum { | |||
269 | #define SCTP_MIB_MAX __SCTP_MIB_MAX | 269 | #define SCTP_MIB_MAX __SCTP_MIB_MAX |
270 | struct sctp_mib { | 270 | struct sctp_mib { |
271 | unsigned long mibs[SCTP_MIB_MAX]; | 271 | unsigned long mibs[SCTP_MIB_MAX]; |
272 | } __SNMP_MIB_ALIGN__; | 272 | }; |
273 | 273 | ||
274 | 274 | ||
275 | /* Print debugging messages. */ | 275 | /* Print debugging messages. */ |
@@ -547,7 +547,7 @@ for (pos = chunk->subh.fwdtsn_hdr->skip;\ | |||
547 | #define WORD_ROUND(s) (((s)+3)&~3) | 547 | #define WORD_ROUND(s) (((s)+3)&~3) |
548 | 548 | ||
549 | /* Make a new instance of type. */ | 549 | /* Make a new instance of type. */ |
550 | #define t_new(type, flags) (type *)kmalloc(sizeof(type), flags) | 550 | #define t_new(type, flags) (type *)kzalloc(sizeof(type), flags) |
551 | 551 | ||
552 | /* Compare two timevals. */ | 552 | /* Compare two timevals. */ |
553 | #define tv_lt(s, t) \ | 553 | #define tv_lt(s, t) \ |