Module Name:    src
Committed By:   ryo
Date:           Wed Jan  4 13:03:41 UTC 2017

Modified Files:
        src/sys/net: pfil.c

Log Message:
Not to use ph_inout[2]. dir (= PFIL_IN or PFIL_OUT) is 1 or 2, not 0 or 1.


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/sys/net/pfil.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/net/pfil.c
diff -u src/sys/net/pfil.c:1.29 src/sys/net/pfil.c:1.30
--- src/sys/net/pfil.c:1.29	Mon Dec 26 23:21:49 2016
+++ src/sys/net/pfil.c	Wed Jan  4 13:03:41 2017
@@ -1,4 +1,4 @@
-/*	$NetBSD: pfil.c,v 1.29 2016/12/26 23:21:49 christos Exp $	*/
+/*	$NetBSD: pfil.c,v 1.30 2017/01/04 13:03:41 ryo Exp $	*/
 
 /*
  * Copyright (c) 2013 Mindaugas Rasiukevicius <rmind at NetBSD org>
@@ -28,7 +28,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pfil.c,v 1.29 2016/12/26 23:21:49 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pfil.c,v 1.30 2017/01/04 13:03:41 ryo Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -57,7 +57,8 @@ CTASSERT(PFIL_IN == 1);
 CTASSERT(PFIL_OUT == 2);
 
 struct pfil_head {
-	pfil_list_t	ph_inout[2];
+	pfil_list_t	ph_in;
+	pfil_list_t	ph_out;
 	pfil_list_t	ph_ifaddr;
 	pfil_list_t	ph_ifevent;
 	int		ph_type;
@@ -121,8 +122,9 @@ pfil_hook_get(int dir, pfil_head_t *ph)
 {
 	switch (dir) {
 	case PFIL_IN:
+		return &ph->ph_in;
 	case PFIL_OUT:
-		return &ph->ph_inout[dir];
+		return &ph->ph_out;
 	case PFIL_IFADDR:
 		return &ph->ph_ifaddr;
 	case PFIL_IFNET:
@@ -286,7 +288,7 @@ pfil_run_hooks(pfil_head_t *ph, struct m
 	int ret = 0;
 
 	KASSERT((dir & ~PFIL_ALL) == 0);
-	if (__predict_false((phlist = &ph->ph_inout[dir]) == NULL)) {
+	if (__predict_false((phlist = pfil_hook_get(dir, ph)) == NULL)) {
 		return ret;
 	}
 

Reply via email to