From owner-cvs-all@FreeBSD.ORG Sun Nov 5 13:25:19 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C6B216A4F1; Sun, 5 Nov 2006 13:25:19 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59F9D43D7D; Sun, 5 Nov 2006 13:25:18 +0000 (GMT) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id kA5DPI23074518; Sun, 5 Nov 2006 13:25:18 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id kA5DPIkb074516; Sun, 5 Nov 2006 13:25:18 GMT (envelope-from rrs) Message-Id: <200611051325.kA5DPIkb074516@repoman.freebsd.org> From: Randall Stewart Date: Sun, 5 Nov 2006 13:25:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet sctp_bsd_addr.c sctp_crc32.c sctp_indata.c sctp_input.c sctp_output.c sctp_pcb.c sctp_structs.h sctp_uio.h sctputil.c sctputil.h src/sys/netinet6 sctp6_usrreq.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Nov 2006 13:25:19 -0000 rrs 2006-11-05 13:25:18 UTC FreeBSD src repository Modified files: sys/netinet sctp_bsd_addr.c sctp_crc32.c sctp_indata.c sctp_input.c sctp_output.c sctp_pcb.c sctp_structs.h sctp_uio.h sctputil.c sctputil.h sys/netinet6 sctp6_usrreq.c Log: Tons of fixes to get all the 64bit issues removed. This also moves two 16 bit int's to become 32 bit values so we do not have to use atomic_add_16. Most of the changes are %p, casts and other various nasty's that were in the orignal code base. With this commit my machine will now do a build universe.. however I as yet have not tested on a 64bit machine .. it may not work :-( Revision Changes Path 1.2 +7 -7 src/sys/netinet/sctp_bsd_addr.c 1.3 +1 -1 src/sys/netinet/sctp_crc32.c 1.2 +4 -4 src/sys/netinet/sctp_indata.c 1.4 +7 -5 src/sys/netinet/sctp_input.c 1.2 +9 -9 src/sys/netinet/sctp_output.c 1.4 +8 -8 src/sys/netinet/sctp_pcb.c 1.2 +5 -4 src/sys/netinet/sctp_structs.h 1.2 +8 -8 src/sys/netinet/sctp_uio.h 1.3 +35 -21 src/sys/netinet/sctputil.c 1.2 +2 -2 src/sys/netinet/sctputil.h 1.3 +5 -4 src/sys/netinet6/sctp6_usrreq.c