From owner-cvs-all@FreeBSD.ORG Thu Feb 22 19:10:48 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5B57216A484; Thu, 22 Feb 2007 19:10:48 +0000 (UTC) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 4C9B413C46B; Thu, 22 Feb 2007 19:10:48 +0000 (UTC) (envelope-from luigi@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 l1MJAmBX064253; Thu, 22 Feb 2007 19:10:48 GMT (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l1MJAmL6064252; Thu, 22 Feb 2007 19:10:48 GMT (envelope-from luigi) Message-Id: <200702221910.l1MJAmL6064252@repoman.freebsd.org> From: Luigi Rizzo Date: Thu, 22 Feb 2007 19:10:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_6 Cc: Subject: cvs commit: src/share/man/man9 firmware.9 src/sys/kern subr_firmware.c src/sys/sys firmware.h src/sys/tools fw_stub.awk src/sys/dev/isp isp_freebsd.h src/sys/dev/iwi if_iwi.c if_iwireg.h if_iwivar.h 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: Thu, 22 Feb 2007 19:10:48 -0000 luigi 2007-02-22 19:10:48 UTC FreeBSD src repository Modified files: (Branch: RELENG_6) share/man/man9 firmware.9 sys/kern subr_firmware.c sys/sys firmware.h sys/tools fw_stub.awk sys/dev/isp isp_freebsd.h sys/dev/iwi if_iwi.c if_iwireg.h if_iwivar.h Log: MFC: sync firmware(9) and iwi(4) with the version in HEAD (the changes are related and this is why the MFC is done together). In detail: firmware(9): Cleanup and document the implementation of firmware(9) based on a version that i posted earlier on the -current mailing list, and subsequent feedback received. See the commit log luigi 2007-02-15 17:21:31 UTC The core of the change is just in sys/firmware.h and kern/subr_firmware.c, while other files are just adaptation of the clients to the ABI change (const-ification of some parameters and hiding of internal info, so this is fully compatible at the binary level). Note that in RELENG_6 sys/arm/xscale/ixp425, sys/dev/ipw and sys/dev/mxge do not exist or have not been updated to use firmware(9). iwi(4) + add debugging code IWI_LOCK_CHECK() to print (under sysctl debug.iwi) missing locks; + make sure that iwi_ioctl() wait until the previous iwi_cmd() terminates. Revision Changes Path 1.2.2.3 +189 -38 src/share/man/man9/firmware.9 1.79.2.7 +1 -1 src/sys/dev/isp/isp_freebsd.h 1.8.2.13 +145 -92 src/sys/dev/iwi/if_iwi.c 1.2.2.5 +9 -1 src/sys/dev/iwi/if_iwireg.h 1.4.2.3 +20 -1 src/sys/dev/iwi/if_iwivar.h 1.1.2.5 +283 -129 src/sys/kern/subr_firmware.c 1.1.2.2 +15 -12 src/sys/sys/firmware.h 1.2.2.3 +1 -1 src/sys/tools/fw_stub.awk