Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.32 66 lines 1.7 kB view raw
1/* 2 * Copyright (c) 2005-2009 Brocade Communications Systems, Inc. 3 * All rights reserved 4 * www.brocade.com 5 * 6 * Linux driver for Brocade Fibre Channel Host Bus Adapter. 7 * 8 * This program is free software; you can redistribute it and/or modify it 9 * under the terms of the GNU General Public License (GPL) Version 2 as 10 * published by the Free Software Foundation 11 * 12 * This program is distributed in the hope that it will be useful, but 13 * WITHOUT ANY WARRANTY; without even the implied warranty of 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 15 * General Public License for more details. 16 */ 17 18/** 19 * hal_trcmod.h BFA trace modules 20 */ 21 22#ifndef __BFA_TRCMOD_PRIV_H__ 23#define __BFA_TRCMOD_PRIV_H__ 24 25#include <cs/bfa_trc.h> 26 27/* 28 * !!! Only append to the enums defined here to avoid any versioning 29 * !!! needed between trace utility and driver version 30 */ 31enum { 32 BFA_TRC_HAL_IOC = 1, 33 BFA_TRC_HAL_INTR = 2, 34 BFA_TRC_HAL_FCXP = 3, 35 BFA_TRC_HAL_UF = 4, 36 BFA_TRC_HAL_DIAG = 5, 37 BFA_TRC_HAL_RPORT = 6, 38 BFA_TRC_HAL_FCPIM = 7, 39 BFA_TRC_HAL_IOIM = 8, 40 BFA_TRC_HAL_TSKIM = 9, 41 BFA_TRC_HAL_ITNIM = 10, 42 BFA_TRC_HAL_PPORT = 11, 43 BFA_TRC_HAL_SGPG = 12, 44 BFA_TRC_HAL_FLASH = 13, 45 BFA_TRC_HAL_DEBUG = 14, 46 BFA_TRC_HAL_WWN = 15, 47 BFA_TRC_HAL_FLASH_RAW = 16, 48 BFA_TRC_HAL_SBOOT = 17, 49 BFA_TRC_HAL_SBOOT_IO = 18, 50 BFA_TRC_HAL_SBOOT_INTR = 19, 51 BFA_TRC_HAL_SBTEST = 20, 52 BFA_TRC_HAL_IPFC = 21, 53 BFA_TRC_HAL_IOCFC = 22, 54 BFA_TRC_HAL_FCPTM = 23, 55 BFA_TRC_HAL_IOTM = 24, 56 BFA_TRC_HAL_TSKTM = 25, 57 BFA_TRC_HAL_TIN = 26, 58 BFA_TRC_HAL_LPS = 27, 59 BFA_TRC_HAL_FCDIAG = 28, 60 BFA_TRC_HAL_PBIND = 29, 61 BFA_TRC_HAL_IOCFC_CT = 30, 62 BFA_TRC_HAL_IOCFC_CB = 31, 63 BFA_TRC_HAL_IOCFC_Q = 32, 64}; 65 66#endif /* __BFA_TRCMOD_PRIV_H__ */