From owner-cvs-src-old@FreeBSD.ORG Thu Oct 21 16:21:15 2010 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B512E1065670 for ; Thu, 21 Oct 2010 16:21:15 +0000 (UTC) (envelope-from pluknet@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id A34D18FC18 for ; Thu, 21 Oct 2010 16:21:15 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id o9LGLFXq087292 for ; Thu, 21 Oct 2010 16:21:15 GMT (envelope-from pluknet@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id o9LGLFqd087291 for cvs-src-old@freebsd.org; Thu, 21 Oct 2010 16:21:15 GMT (envelope-from pluknet@repoman.freebsd.org) Message-Id: <201010211621.o9LGLFqd087291@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to pluknet@repoman.freebsd.org using -f From: Sergey Kandaurov Date: Thu, 21 Oct 2010 16:20:48 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net if.c if.h src/sys/sys sockio.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Oct 2010 16:21:15 -0000 pluknet 2010-10-21 16:20:48 UTC FreeBSD src repository Modified files: sys/net if.c if.h sys/sys sockio.h Log: SVN rev 214136 on 2010-10-21 16:20:48Z by pluknet Reshuffle SIOCGIFCONF32 handler from r155224. - move all the chunks into one file, which allows to hide SIOCGIFCONF32 global definition as well. - replace __amd64__ with proper COMPAT_FREEBSD32 around. - handle 32bit capacity before going into the handler itself instead of doing internal 32bit specific changes within it (e.g. as it's done for SIOCGDEFIFACE32_IN6). - use explicitely sized types for ABI compat. Approved by: kib (mentor) MFC after: 2 weeks Revision Changes Path 1.390 +29 -17 src/sys/net/if.c 1.127 +0 -10 src/sys/net/if.h 1.39 +0 -3 src/sys/sys/sockio.h