From owner-cvs-src-old@FreeBSD.ORG Mon May 24 07:04:52 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 7D9A2106566B for ; Mon, 24 May 2010 07:04:52 +0000 (UTC) (envelope-from wkoszek@FreeBSD.org) Received: from repoman.freebsd.org (unknown [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 6A2E18FC0C for ; Mon, 24 May 2010 07:04:52 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id o4O74qvh090410 for ; Mon, 24 May 2010 07:04:52 GMT (envelope-from wkoszek@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id o4O74q0B090409 for cvs-src-old@freebsd.org; Mon, 24 May 2010 07:04:52 GMT (envelope-from wkoszek@repoman.freebsd.org) Message-Id: <201005240704.o4O74q0B090409@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to wkoszek@repoman.freebsd.org using -f From: "Wojciech A. Koszek" Date: Mon, 24 May 2010 07:04:00 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/compat/linux linux_ioctl.c linux_ioctl.h src/sys/modules/linux Makefile src/sys/sys param.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: Mon, 24 May 2010 07:04:52 -0000 wkoszek 2010-05-24 07:04:00 UTC FreeBSD src repository Modified files: sys/compat/linux linux_ioctl.c linux_ioctl.h sys/modules/linux Makefile sys/sys param.h Log: SVN rev 208486 on 2010-05-24 07:04:00Z by wkoszek Bring USB fixes for linux(4). Intention of this commit is to let us take a full advantage of libusb(8) ported to Linux. This decreases a possibility of getting any collisions within ioctl() "command" space, especially with relation to LINUX_SNDCTL_SEQ... stuff. Basically, we provide commands, that will be mapped in the kernel to correct ones and forward those to the USB layer. Port enabling functionality brought with this patch is here: http://www.freebsd.org/cgi/query-pr.cgi?pr=146895 Bump __FreeBSD_version to catch, since which version installing a port makes sense. This patch should bring no regressions. So far, only i386 is tested. Tested by: thompsa@ Reviewed by: thompsa@ OKed by: netchild@ Revision Changes Path 1.165 +111 -11 src/sys/compat/linux/linux_ioctl.c 1.31 +36 -3 src/sys/compat/linux/linux_ioctl.h 1.82 +1 -1 src/sys/modules/linux/Makefile 1.451 +1 -1 src/sys/sys/param.h