Blame IbAccess/Common/SubnetDriver/sdrequest.c

Packit 857059
/* BEGIN_ICS_COPYRIGHT4 ****************************************
Packit 857059
Packit 857059
Copyright (c) 2015, Intel Corporation
Packit 857059
Packit 857059
Redistribution and use in source and binary forms, with or without
Packit 857059
modification, are permitted provided that the following conditions are met:
Packit 857059
Packit 857059
    * Redistributions of source code must retain the above copyright notice,
Packit 857059
      this list of conditions and the following disclaimer.
Packit 857059
    * Redistributions in binary form must reproduce the above copyright
Packit 857059
      notice, this list of conditions and the following disclaimer in the
Packit 857059
     documentation and/or other materials provided with the distribution.
Packit 857059
    * Neither the name of Intel Corporation nor the names of its contributors
Packit 857059
      may be used to endorse or promote products derived from this software
Packit 857059
      without specific prior written permission.
Packit 857059
Packit 857059
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Packit 857059
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit 857059
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Packit 857059
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
Packit 857059
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Packit 857059
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Packit 857059
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Packit 857059
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Packit 857059
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Packit 857059
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit 857059
Packit 857059
** END_ICS_COPYRIGHT4   ****************************************/
Packit 857059
/*!
Packit 857059
Packit 857059
  \file sdrequest.h
Packit 857059
Packit 857059
  $Revision$
Packit 857059
  $Date$
Packit 857059
Packit 857059
  \brief Routines for handling requests forwarded by the subnet manager
Packit 857059
*/
Packit 857059
Packit 857059
#include <sdrequest.h>
Packit 857059
#include <ib_generalServices.h>
Packit 857059
#include <dbg.h>
Packit 857059
#include <ib_debug.h>
Packit 857059
#include <report.h>
Packit 857059
Packit 857059
/*!
Packit 857059
  \brief Attempts to process a Request received by the GSA
Packit 857059
*/
Packit 857059
FSTATUS 
Packit 857059
ProcessRequest( void *ServiceContext, IBT_DGRM_ELEMENT *pDgrmList )
Packit 857059
{
Packit 857059
	FSTATUS Status = FSUCCESS;
Packit 857059
	SA_MAD  *pMad = (SA_MAD *)GsiDgrmGetRecvMad(pDgrmList);
Packit 857059
        
Packit 857059
	_DBG_ENTER_LVL(_DBG_LVL_FUNC_TRACE, ProcessRequest);
Packit 857059
Packit 857059
	switch ( pMad->common.MgmtClass )
Packit 857059
	{
Packit 857059
		case MCLASS_SUBN_ADM:
Packit 857059
			switch ( pMad->common.mr.AsReg8 )
Packit 857059
			{
Packit 857059
				case MMTHD_REPORT:
Packit 857059
					Status = ProcessReport( ServiceContext, pDgrmList );
Packit 857059
					break;
Packit 857059
Packit 857059
				default:
Packit 857059
				case MMTHD_GET:
Packit 857059
				case MMTHD_SET:
Packit 857059
				case MMTHD_SEND:
Packit 857059
				case MMTHD_TRAP:
Packit 857059
				case MMTHD_TRAP_REPRESS:
Packit 857059
				case MMTHD_GET_RESP:
Packit 857059
				case MMTHD_REPORT_RESP:
Packit 857059
					break;
Packit 857059
			}
Packit 857059
			break;
Packit 857059
Packit 857059
		default:
Packit 857059
		case MCLASS_SM_LID_ROUTED:
Packit 857059
		case MCLASS_SM_DIRECTED_ROUTE:
Packit 857059
		case MCLASS_PERF:
Packit 857059
		case MCLASS_BM:
Packit 857059
		case MCLASS_DEV_MGT:
Packit 857059
		case MCLASS_COMM_MGT:
Packit 857059
		case MCLASS_SNMP:
Packit 857059
		case MCLASS_DEV_CONF_MGT:
Packit 857059
		case MCLASS_DTA:
Packit 857059
			break;
Packit 857059
	}
Packit 857059
	
Packit 857059
	_DBG_LEAVE_LVL( _DBG_LVL_FUNC_TRACE );
Packit 857059
	return Status;
Packit 857059
}