From owner-p4-projects@FreeBSD.ORG Wed Feb 7 11:30:59 2007 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 1BDD116A402; Wed, 7 Feb 2007 11:30:45 +0000 (UTC) X-Original-To: perforce@freebsd.org Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8DEB216A400 for ; Wed, 7 Feb 2007 11:30:42 +0000 (UTC) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 7D43713C481 for ; Wed, 7 Feb 2007 11:30:42 +0000 (UTC) (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id l17BUgF5058501 for ; Wed, 7 Feb 2007 11:30:42 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id l17BUgb1058495 for perforce@freebsd.org; Wed, 7 Feb 2007 11:30:42 GMT (envelope-from bb+lists.freebsd.perforce@cyrus.watson.org) Date: Wed, 7 Feb 2007 11:30:42 GMT Message-Id: <200702071130.l17BUgb1058495@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to bb+lists.freebsd.perforce@cyrus.watson.org using -f From: Robert Watson To: Perforce Change Reviews Cc: Subject: PERFORCE change 114171 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Feb 2007 11:31:00 -0000 http://perforce.freebsd.org/chv.cgi?CH=114171 Change 114171 by rwatson@rwatson_cinnamon on 2007/02/07 11:30:40 Alphabetize zerocopy ioctls, renumber, fix white space. WARNING: this changes the ABI (ioctl numbers) of the zerocopy API and requires libraries and applications directly consuming the BPF zerocopy API to be rebuilt. I.e., libpcap and direct BPF consumers, but not libpcap consumers. Affected files ... .. //depot/projects/zcopybpf/src/sys/net/bpf.h#11 edit Differences ... ==== //depot/projects/zcopybpf/src/sys/net/bpf.h#11 (text+ko) ==== @@ -152,8 +152,9 @@ #define BIOCGETZBUF _IOR('B', 127, struct bpf_zbuf) #define BIOCGETZMAX _IOR('B', 128, size_t) #define BIOCGETZNEXT _IOR('B', 129, struct bpf_zbuf) -#define BIOCSETZBUF _IOW('B', 130, struct bpf_zbuf) -#define BIOCROTZBUF _IOR('B', 131, struct bpf_zbuf) +#define BIOCROTZBUF _IOR('B', 130, struct bpf_zbuf) +#define BIOCSETZBUF _IOW('B', 131, struct bpf_zbuf) + /* * Structure prepended to each packet. */