Module Name:    src
Committed By:   yamaguchi
Date:           Thu Dec 10 04:03:00 UTC 2020

Modified Files:
        src/sys/dev/pci: if_iavf.c

Log Message:
Add a string literal for IAVF_VC_OP_CONFIG_RSS_LUT


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/dev/pci/if_iavf.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/dev/pci/if_iavf.c
diff -u src/sys/dev/pci/if_iavf.c:1.10 src/sys/dev/pci/if_iavf.c:1.11
--- src/sys/dev/pci/if_iavf.c:1.10	Thu Dec 10 04:00:11 2020
+++ src/sys/dev/pci/if_iavf.c	Thu Dec 10 04:03:00 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: if_iavf.c,v 1.10 2020/12/10 04:00:11 yamaguchi Exp $	*/
+/*	$NetBSD: if_iavf.c,v 1.11 2020/12/10 04:03:00 yamaguchi Exp $	*/
 
 /*
  * Copyright (c) 2013-2015, Intel Corporation
@@ -75,7 +75,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: if_iavf.c,v 1.10 2020/12/10 04:00:11 yamaguchi Exp $");
+__KERNEL_RCSID(0, "$NetBSD: if_iavf.c,v 1.11 2020/12/10 04:03:00 yamaguchi Exp $");
 
 #include <sys/param.h>
 #include <sys/types.h>
@@ -3783,6 +3783,8 @@ iavf_aq_vc_opcode_str(const struct ixl_a
 		return "EVENT";
 	case IAVF_VC_OP_CONFIG_RSS_KEY:
 		return "CONFIG_RSS_KEY";
+	case IAVF_VC_OP_CONFIG_RSS_LUT:
+		return "CONFIG_RSS_LUT";
 	case IAVF_VC_OP_GET_RSS_HENA_CAPS:
 		return "GET_RS_HENA_CAPS";
 	case IAVF_VC_OP_SET_RSS_HENA:

Reply via email to