Author: tuexen
Date: Sun Nov 14 14:37:20 2010
New Revision: 215301
URL: http://svn.freebsd.org/changeset/base/215301

Log:
  Simplify sctp_delayed_cksum() a bit.
  
  MFC after: 3 days.

Modified:
  head/sys/netinet/sctp_crc32.c

Modified: head/sys/netinet/sctp_crc32.c
==============================================================================
--- head/sys/netinet/sctp_crc32.c       Sun Nov 14 14:25:04 2010        
(r215300)
+++ head/sys/netinet/sctp_crc32.c       Sun Nov 14 14:37:20 2010        
(r215301)
@@ -124,18 +124,16 @@ sctp_delayed_cksum(struct mbuf *m, uint3
 #if defined(SCTP_WITH_NO_CSUM)
        panic("sctp_delayed_cksum() called when using no SCTP CRC.");
 #else
-       struct ip *ip;
        uint32_t checksum;
 
-       ip = mtod(m, struct ip *);
        checksum = sctp_calculate_cksum(m, offset);
        SCTP_STAT_DECR(sctps_sendhwcrc);
        SCTP_STAT_INCR(sctps_sendswcrc);
        offset += offsetof(struct sctphdr, checksum);
 
        if (offset + sizeof(uint32_t) > (uint32_t) (m->m_len)) {
-               printf("delayed m_pullup, m->len: %d  off: %d  p: %d\n",
-                   (uint32_t) m->m_len, offset, ip->ip_p);
+               printf("sctp_delayed_cksum(): m->len: %d,  off: %d.\n",
+                   (uint32_t) m->m_len, offset);
                /*
                 * XXX this shouldn't happen, but if it does, the correct
                 * behavior may be to insert the checksum in the appropriate
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to