[#0x0034] Isolation

本文介绍了数据库系统的四种隔离级别:Read Uncommitted、Read Committed、Repeatable Read 和 Serializable,并详细解释了每种级别如何处理并发问题,如脏读、不可重复读和幻读。

  参考Wikipedia: http://en.wikipedia.org/wiki/Isolation_(database_systems)#Repeatable_reads_.28phantom_reads.29  

 

  Isolation的理想状态是:the result of Transaction A is invisible to Transaction B until Transaction A is completed。不过这么一来,只有Serializable级别才能满足要求,即Transactions是一个接一个地执行,不允许Transactions的并行。如果想要Transactions的并行,那么就不可能有绝对的isolation。为此,ANSI/ISO制定的SQL标准给Isolation分了4个级别,由高到低分别是:

  • Serializable
  • Repeatable Read (Phantom Read)
  • Read Committed (Nonrepeatable Read)
  • Read Uncommitted (Dirty Read)

级别越高的,isolation性越好,而低级别的isolation会有各种各样的并发问题(如上面括号中所示)。下面一一介绍。

 

1. Read Uncommitted

  Transaction 1可以查看Transaction 2未提交的操作结果,这会导致Dirty Read的问题,如下图所示:

 

dirty read

Transaction 1的执行的第二个query会读到Transaction 2中update的结果,如果Transaction 2 rollback的话,这个读到的数据明显是错误的。

 

2. Read Committed

  如果我们强制Transaction 1只能读Transaction 2中已经commit的update,就可以解决Dirty Read的问题。强制的手段是:每次query(比如SELECT)时,都会获取当前数据库(或者可能只是query涉及的表)的一个snapshot,query从这个snapshot中获得结果。没有commit的update不会在snapshot中出现,所以就不会被query到。

  这样允许Transaction 2并行执行,且不会影响Transaction 1。当Transaction 1 commit的时候,DBMS检测是否有冲突(比如Transaction 1也update了Transaction 2中update的row),如果执行的结果等同于顺序执行Transaction 1和 Transaction 2 ,则认为没有冲突。

  但这样也会有问题:Nonrepeatable Read,即可能执行同一query两次而出现不同的结果,我们认为这是不符合一致性原则的。

nonrepeatable read

 

3. Repeatable Read

  解决Nonrepeatable Read问题的办法是给Transaction 1中的SELECT涉及的行加一个read lock。

  锁的排斥功能很明确:read locks不会block read locks,只block write locks;write locks block both read locks and write locks。

  不过会有新的问题:phantom read。

 

phantom read

 

当Transaction 1执行一个range query(范围查询,如like, between等)时,只会为涉及到的row加read lock,如果插入一个新row在range之内,第二次range query还是会被读出。

 

4. Serializable

  强制Transactions按顺序执行,所以Transaction之间不可能冲突。强制的手段是给place a read lock on every row the transaction read;同时,如果有range query,还会添加一个range lock。明显,Serializable会耗费很多的lock overhead。

  Serializable相当于在Transaction 1开始时(而不是query开始时)给当前数据库(或是Transaction涉及的表)take a snapshot,Transaction 1中的所有query都从这一个snapshot中获取结果。

 

为什么我有时候在VPP系统内使用我创建的show interface isolation指令会报错导致VPP进程崩掉 typedef enum vnet_interface_helper_flags_t_ { VNET_INTERFACE_SET_FLAGS_HELPER_IS_CREATE = (1 << 0), VNET_INTERFACE_SET_FLAGS_HELPER_WANT_REDISTRIBUTE = (1 << 1), } vnet_interface_helper_flags_t; vlib_log_class_t port_isolation_log_class; int vnet_set_interface_isolation ( u32 sw_if_index, u16 isolation, u16 allowinternet) { vlib_log_notice(port_isolation_log_class,“vnet_set_interface_isolation CALLED:sw_if_index = %u, isolation = %u, allowinternet = %u”,sw_if_index, isolation, allowinternet); if(isolation == 0 || isolation > 3){ vlib_log_err(port_isolation_log_class,"invalid isolation value (%u) ",isolation); return VNET_API_ERROR_INVALID_VALUE; } if(allowinternet == 0 || allowinternet > 3){ vlib_log_err(port_isolation_log_class,“invalid allowinternet value (%u)”,allowinternet); return VNET_API_ERROR_INVALID_VALUE; } vec_validate(port_isolation_db.isolation_state_vec, sw_if_index); vec_validate(port_isolation_db.allowinternet_state_vec, sw_if_index); port_isolation_db.isolation_state_vec[sw_if_index] = isolation; port_isolation_db.allowinternet_state_vec[sw_if_index] = allowinternet; return 0; } u16 vnet_get_interface_isolation(u32 sw_if_index){ if(sw_if_index > vec_len(port_isolation_db.isolation_state_vec)){ return 0; } return port_isolation_db.isolation_state_vec[sw_if_index]; } u16 vnet_get_interface_allowinternet(u32 sw_if_index){ if(sw_if_index > vec_len(port_isolation_db.allowinternet_state_vec)){ return 0; } return port_isolation_db.allowinternet_state_vec[sw_if_index]; } clib_error_t * port_isolation_db_init(vlib_main_t *vm) { port_isolation_log_class = vlib_log_register_class(“port_isolation”,0); vlib_log_notice(port_isolation_log_class,“initializing port isolation database…”); port_isolation_db.isolation_state_vec = NULL; port_isolation_db.allowinternet_state_vec =NULL; return 0; } VLIB_INIT_FUNCTION(port_isolation_db_init); static void port_isolation_db_cleanup(void) { vec_free(port_isolation_db.isolation_state_vec); vec_free(port_isolation_db.allowinternet_state_vec); port_isolation_db.isolation_state_vec = NULL; port_isolation_db.allowinternet_state_vec = NULL; } VLIB_MAIN_LOOP_EXIT_FUNCTION(port_isolation_db_cleanup); static clib_error_t * show_interface_isolation_command(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd) { vnet_main_t *vnm = vnet_get_main(); vnet_sw_interface_t *sw_if; vlib_cli_output(vm,“%-10s %-12s %-12s”, “sw_if_index”, “Isolation”, “AllowInternet”); u32 vec_length = vec_len(port_isolation_db.isolation_state_vec); for(u32 sw_if_index = 0;sw_if_index < vec_length; sw_if_index++){ u16 isolation = vnet_get_interface_isolation(sw_if_index); u16 allowinterface = vnet_get_interface_allowinternet(sw_if_index); sw_if = vnet_get_sw_interface(vnm,sw_if_index); vlib_cli_output(vm,“%-10u %-12u %-12u”, sw_if_index, isolation, allowinterface); } return 0; } VLIB_CLI_COMMAND(show_interface_isolation_command_node,static) = { .path =“show interface isolation”, .short_help = “Show interface isolation status”, .function = show_interface_isolation_command, }; 这是报错的输出,好像是pool有什么问题 0: /home/tplink/jenkins_ep/workspace/GW/enterprise-gateway-platform/enterprise_gateway/build_dir/target-aarch64-marvell-linux-gnu-cn25g-vpp_v1/vpp/src/vnet/interface_funcs.h:60 (vnet_get_sw_interface) assertion `! pool_is_free (vnm->interface_main.sw_interfaces, _e)’ fails 0: debugger:91: #0 0x0000ffff9135ca80 vnet_get_sw_interface + 0xa4 0: debugger:91: #1 0x0000ffff91362498 show_interface_isolation_command + 0xa0 0: debugger:91: #2 0x0000ffff911794c8 vlib_cli_dispatch_sub_commands + 0xb34 0: debugger:91: #3 0x0000ffff911792a8 vlib_cli_dispatch_sub_commands + 0x914 0: debugger:91: #4 0x0000ffff911792a8 vlib_cli_dispatch_sub_commands + 0x914 0: debugger:91: #5 0x0000ffff911798f8 vlib_cli_input + 0x7c 0: debugger:91: #6 0x0000ffff911e76f0 unix_cli_process_input + 0x4ac 0: debugger:91: #7 0x0000ffff911e7e34 unix_cli_process + 0x84 0: debugger:91: #8 0x0000ffff911a32f4 vlib_process_bootstrap + 0x60 0: debugger:91: #9 0x0000ffff910aaf0c clib_calljmp + 0x24 0: debugger:91: #10 0x0000ffff910aaf0c clib_calljmp + 0x24 0: unix_signal_handler:157: received signal SIGABRT, PC 0xffff90d53184 PC:0xffff90d53184 SP:0xfffb6920f610 fault addres:0x0 x0:0 x1:6920f630 x2:0 x3:8 x4:0 x5:6920f630 x6:ffffffff x7:ffffffff x8:87 x9:ffffffff x10:ffffffff x11:ffffffff x12:ffffffff x13:ffffffff x14:0 x15:90d24dc0 x16:90d540e8 x17:4321d8 x18:90d23280 x19:6 x20:91befc10 x21:1 x22:1 x23:0 x24:0 x25:0 x26:0 x27:0 x28:0 x29:6920f610
10-29
平台版本信息 Windows : 6.1.7601.65536 (Win32NT) Common Language Runtime : 4.0.30319.42000 System.Deployment.dll : 4.8.3761.0 built by: NET48REL1 clr.dll : 4.8.3928.0 built by: NET48REL1 dfdll.dll : 4.8.3761.0 built by: NET48REL1 dfshim.dll : 4.0.31106.0 (Main.031106-0000) 源 部署 URL : file:///D:/Users/0082994/Downloads/HKC.Main.application 部署提供方 URL : http://10.8.151.96/PRD/YMS/HKC.Main.application 服务器 : Microsoft-IIS/10.0 X-Powered-By : ASP.NET 应用程序 URL : http://10.8.151.96/PRD/YMS/Application%20Files/HKC.Main_1_0_0_119/HKC.Main.exe.manifest 服务器 : Microsoft-IIS/10.0 X-Powered-By : ASP.NET 标识 部署标识 : HKC.Main.application, Version=1.0.0.119, Culture=en, PublicKeyToken=0000000000000000, processorArchitecture=x86 应用程序标识 : HKC.Main.exe, Version=1.0.0.119, Culture=en, PublicKeyToken=0000000000000000, processorArchitecture=x86, type=win32 应用程序摘要 * 可安装的应用程序。 错误摘要 以下是错误摘要,这些错误的详细信息列在该日志的后面。 * 激活 D:\Users\0082994\Downloads\HKC.Main.application 导致异常。 检测到下列失败消息: + 存储操作期间发生异常。 + 另一个程序正在使用此文件,进程无法访问。 (异常来自 HRESULT:0x80070020) 组件存储事务失败摘要 * [2025/11/9 8:47:27] 处的事务 - 暂存组件文件(HKC.Main.exe)未成功。 - 暂存组件(Infragistics4.Win.UltraWinGrid.DocumentExport.v17.2.dll.genman)未成功。 - 暂存组件文件(Infragistics4.Win.UltraWinGrid.DocumentExport.v17.2.dll)未成功。 - 暂存组件(Infragistics4.Documents.Word.v17.2.dll.genman)未成功。 - 暂存组件文件(Infragistics4.Documents.Word.v17.2.dll)未成功。 - 暂存组件(RDotNet.dll.genman)未成功。 - 暂存组件文件(RDotNet.dll)未成功。 - 暂存组件(Infragistics4.Win.UltraWinCalcManager.v17.2.dll.genman)未成功。 - 暂存组件文件(Infragistics4.Win.UltraWinCalcManager.v17.2.dll)未成功。 - 暂存组件(AIM.AimBrain.UI.Service.dll.genman)未成功。 - 暂存组件文件(AIM.AimBrain.UI.Service.dll)未成功。 - 暂存组件(AIM.AimBrain.HKC.UI.View.Admin.dll.genman)未成功。 - 暂存组件文件(AIM.AimBrain.HKC.UI.View.Admin.dll)未成功。 - 暂存组件(NPOI.OOXML.dll.genman)未成功。 - 暂存组件文件(NPOI.OOXML.dll)未成功。 - 暂存组件(Infragistics4.Olap.DataProvider.Adomd.v17.2.dll.genman)未成功。 - 暂存组件文件(Infragistics4.Olap.DataProvider.Adomd.v17.2.dll)未成功。 - 暂存组件(AIM.AimBrain.HKC.UI.EDA.View.CF.dll.genman)未成功。 - 暂存组件文件(AIM.AimBrain.HKC.UI.EDA.View.CF.dll)未成功。 - 暂存组件(AIM.AimBrain.HKC.UI.EDA.ValueObject.dll.genman)未成功。 - 暂存组件文件(AIM.AimBrain.HKC.UI.EDA.ValueObject.dll)未成功。 - 暂存组件(NPOI.OpenXml4Net.dll.genman)未成功。 - 暂存组件文件(NPOI.OpenXml4Net.dll)未成功。 - 暂存组件(Infragistics4.Win.SupportDialogs.v17.2.dll.genman)未成功。 - 暂存组件文件(Infragistics4.Win.SupportDialogs.v17.2.dll)未成功。 - 安装部署(http://10.8.151.96/PRD/YMS/HKC.Main.application#HKC.Main.application, Version=1.0.0.119, Culture=en, PublicKeyToken=0000000000000000, processorArchitecture=x86)未成功。 - 设置一个或多个部署元数据未成功。 警告 * 此应用程序清单无签名。签名验证将被忽略。 * 此应用程序清单无签名。签名验证将被忽略。 * 此应用程序清单无签名。签名验证将被忽略。 操作进度状态 * [2025/11/9 8:47:17] : 已启动 D:\Users\0082994\Downloads\HKC.Main.application 的激活过程。 * [2025/11/9 8:47:17] : 部署清单处理已成功完成。 * [2025/11/9 8:47:17] : 已启动应用程序的安装过程。 * [2025/11/9 8:47:17] : 应用程序清单处理已成功完成。 * [2025/11/9 8:47:19] : 已找到兼容运行时版本 4.0.30319。 * [2025/11/9 8:47:19] : 信任请求和平台检测已完成。 * [2025/11/9 8:47:26] : 预订依赖项下载已完成。 * [2025/11/9 8:47:26] : 已启动下载的应用程序的提交过程。 错误详细信息 执行此操作期间检测到下列错误。 * [2025/11/9 8:47:27] System.Deployment.Application.DeploymentException (ComponentStore) - 存储操作期间发生异常。 - 源: System.Deployment - 堆栈跟踪: 在 System.Deployment.Application.ComponentStore.SubmitStoreTransaction(StoreTransactionContext storeTxn, SubscriptionState subState) 在 System.Deployment.Application.ComponentStore.SubmitStoreTransactionCheckQuota(StoreTransactionContext storeTxn, SubscriptionState subState) 在 System.Deployment.Application.ComponentStore.CommitApplication(SubscriptionState subState, CommitApplicationParams commitParams) 在 System.Deployment.Application.SubscriptionStore.CommitApplication(SubscriptionState& subState, CommitApplicationParams commitParams) 在 System.Deployment.Application.ApplicationActivator.InstallApplication(SubscriptionState& subState, ActivationDescription actDesc) 在 System.Deployment.Application.ApplicationActivator.PerformDeploymentActivation(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl, Uri& deploymentUri) 在 System.Deployment.Application.ApplicationActivator.PerformDeploymentActivationWithRetry(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl) --- 引发异常的上一位置中堆栈跟踪的末尾 --- 在 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() 在 System.Deployment.Application.ApplicationActivator.PerformDeploymentActivationWithRetry(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl) 在 System.Deployment.Application.ApplicationActivator.ActivateDeploymentWorker(Object state) --- 内部异常 --- System.IO.FileLoadException - 另一个程序正在使用此文件,进程无法访问。 (异常来自 HRESULT:0x80070020) - 源: System.Deployment - 堆栈跟踪: 在 System.Deployment.Internal.Isolation.IStore.Transact(IntPtr cOperation, StoreTransactionOperation[] rgOperations, UInt32[] rgDispositions, Int32[] rgResults) 在 System.Deployment.Internal.Isolation.Store.Transact(StoreTransactionOperation[] operations, UInt32[] rgDispositions, Int32[] rgResults) 在 System.Deployment.Application.ComponentStore.SubmitStoreTransaction(StoreTransactionContext storeTxn, SubscriptionState subState) 组件存储事务详细信息 * [2025/11/9 8:47:27] 处的事务 + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: MY665HR1.G4K.application + System.Deployment.Internal.Isolation.StoreOperationSetDeploymentMetadata - 状态: Set - HRESULT: 0x0 + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: HKC.Main.exe.manifest + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Menu\LogIn.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Resource\NOGRAB.jpg + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Menu\System.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: tibrv.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: SPCControlRuleList.xml + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: HKC.Main.exe.config + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Header\system_logo_yms.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Menu\LogOut.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Header\system_logo_eda.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Config\Database\DatabaseConnectSourceFactory.xml + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Config\TIB\ListenTIBConnection.config + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Menu\FileTrend.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Bottom\icon_time.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Bottom\icon_user.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Index\index.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Config\Database\DatabaseSourceFactory.xml + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Header\header_back.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Resource\LEAKAGE.jpg + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Header\icon_max.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Header\icon_min.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Config\TIB\TIBConnection.config + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Config\Database\TSqlMap.config + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Config\Database\SqlMap.config + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Menu\InitializeMenu.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: View\AOI\DefectImage\LEAKAGE.jpg + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Header\icon_exit.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Bottom\icon_message.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Menu\OfflineTrend.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: View\AOI\DefectImage\NA.jpg + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: icon.ico + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: View\AOI\DefectImage\NOGRAB.jpg + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Resource\NA.jpg + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Header\system_logo_edaspc.png + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.MapLib.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.MapLib.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: IBatisNet.DataMapper.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: IBatisNet.DataMapper.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Documents.Core.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Documents.Core.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Olap.DataSource.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Olap.DataSource.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: log4net.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: log4net.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Documents.TextDocument.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Documents.TextDocument.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinListBar.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinListBar.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.SPC.View.Archive.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.SPC.View.Archive.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinLiveTileView.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinLiveTileView.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinSpellChecker.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinSpellChecker.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.DataVisualization.UltraGeographicMap.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.DataVisualization.UltraGeographicMap.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinSpreadsheet.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinSpreadsheet.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Core.Entity.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Core.Entity.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraGauge.v17.2.Design.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraGauge.v17.2.Design.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.DataVisualization.Shared.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.DataVisualization.Shared.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Documents.TextDocument.TSql.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Documents.TextDocument.TSql.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Oracle.ManagedDataAccess.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Oracle.ManagedDataAccess.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Calulation.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Calulation.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.View.Systems.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.View.Systems.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.EDA.View.Module.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.EDA.View.Module.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinDock.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinDock.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: InfragisticsWPF4.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: InfragisticsWPF4.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.Controls.Search.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.Controls.Search.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: NPOI.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: NPOI.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Controls.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Controls.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Olap.DataProvider.Flat.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Olap.DataProvider.Flat.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.Controls.Map.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.Controls.Map.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.Portable.Core.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.Portable.Core.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.Misc.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.Misc.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinEditors.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinEditors.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.WF.Service.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.WF.Service.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.Controls.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.Controls.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinCalcManager.v17.2.FormulaBuilder.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinCalcManager.v17.2.FormulaBuilder.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: TIBCO.Rendezvous.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: TIBCO.Rendezvous.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: TIBCO.Rendezvous.netmodule + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Shared.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Shared.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: IBatisNet.Common.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: IBatisNet.Common.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.EDA.Service.Extract.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.EDA.Service.Extract.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.v17.2.Design.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.v17.2.Design.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinTabbedMdi.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinTabbedMdi.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinPrintPreviewDialog.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinPrintPreviewDialog.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinGauge.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinGauge.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinGrid.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinGrid.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Castle.DynamicProxy.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Castle.DynamicProxy.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.DataVisualization.UltraSparkline.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.DataVisualization.UltraSparkline.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Microsoft.Office.Interop.Excel.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Microsoft.Office.Interop.Excel.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinInkProvider.Ink17.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinInkProvider.Ink17.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinGrid.WordWriter.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinGrid.WordWriter.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: RDotNet.NativeLibrary.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: RDotNet.NativeLibrary.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinTabControl.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinTabControl.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.WorkFlow.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.WorkFlow.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Controls.Search.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Controls.Search.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.SPC.View.Analyzer.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.SPC.View.Analyzer.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinFormattedText.WordWriter.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinFormattedText.WordWriter.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.View.Option.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.View.Option.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinRadialMenu.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinRadialMenu.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.WorkFlow.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.WorkFlow.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinToolbars.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinToolbars.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Documents.IO.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Documents.IO.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraChart.v17.2.Design.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraChart.v17.2.Design.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.DataVisualization.UltraDataChart.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.DataVisualization.UltraDataChart.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Documents.Excel.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Documents.Excel.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinCarousel.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinCarousel.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Quartz.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Quartz.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinStatusBar.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinStatusBar.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Newtonsoft.Json.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Newtonsoft.Json.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Math.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Math.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinPivotGrid.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinPivotGrid.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Core.Extract.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Core.Extract.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinGanttView.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinGanttView.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Microsoft.Vbe.Interop.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Microsoft.Vbe.Interop.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Chart.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Chart.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.ViewModel.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.ViewModel.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinListView.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinListView.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.SPC.View.Setting.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.SPC.View.Setting.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinTree.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinTree.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinDataSource.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinDataSource.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Olap.DataSource.Mdx.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Olap.DataSource.Mdx.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinSchedule.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinSchedule.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Olap.Core.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Olap.Core.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Chart.SPC.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Chart.SPC.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: NPOI.OpenXmlFormats.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: NPOI.OpenXmlFormats.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.EDA.View.Cell.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.EDA.View.Cell.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.EDA.View.Array.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.EDA.View.Array.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Olap.DataProvider.Xmla.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Olap.DataProvider.Xmla.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Olap.DataSource.Xmla.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Olap.DataSource.Xmla.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Renci.SshNet.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Renci.SshNet.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: office.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: office.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Core.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Core.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: TeeChart.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: TeeChart.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Undo.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Undo.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.View.Common.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.View.Common.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinMaskedEdit.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinMaskedEdit.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Core.SPC.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Core.SPC.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: stdole.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: stdole.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.Entity.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.Entity.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Service.Extract.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Service.Extract.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Microsoft.Ink.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Microsoft.Ink.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinExplorerBar.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinExplorerBar.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Documents.TextDocument.CSharp.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Documents.TextDocument.CSharp.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Core.R.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Core.R.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinGrid.ExcelExport.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinGrid.ExcelExport.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Olap.DataSource.Flat.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Olap.DataSource.Flat.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.Service.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.Service.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Documents.TextDocument.VisualBasic.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Documents.TextDocument.VisualBasic.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinChart.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinChart.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: InfragisticsWPF4.Controls.Layouts.XamTileManager.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: InfragisticsWPF4.Controls.Layouts.XamTileManager.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinOfficeNavBar.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinOfficeNavBar.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.AppStylistSupport.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.AppStylistSupport.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Olap.DataProvider.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Olap.DataProvider.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Documents.Reports.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Documents.Reports.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: HKC.Main.exe.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x80070020 - 文件: HKC.Main.exe + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: Infragistics4.Win.UltraWinGrid.DocumentExport.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: Infragistics4.Win.UltraWinGrid.DocumentExport.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: Infragistics4.Documents.Word.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: Infragistics4.Documents.Word.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: RDotNet.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: RDotNet.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: Infragistics4.Win.UltraWinCalcManager.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: Infragistics4.Win.UltraWinCalcManager.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: AIM.AimBrain.UI.Service.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: AIM.AimBrain.UI.Service.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: AIM.AimBrain.HKC.UI.View.Admin.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: AIM.AimBrain.HKC.UI.View.Admin.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: NPOI.OOXML.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: NPOI.OOXML.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: Infragistics4.Olap.DataProvider.Adomd.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: Infragistics4.Olap.DataProvider.Adomd.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: AIM.AimBrain.HKC.UI.EDA.View.CF.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: AIM.AimBrain.HKC.UI.EDA.View.CF.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: AIM.AimBrain.HKC.UI.EDA.ValueObject.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: AIM.AimBrain.HKC.UI.EDA.ValueObject.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: NPOI.OpenXml4Net.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: NPOI.OpenXml4Net.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: Infragistics4.Win.SupportDialogs.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: Infragistics4.Win.SupportDialogs.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationInstallDeployment - 状态: Failed - HRESULT: 0x1 - AppId: http://10.8.151.96/PRD/YMS/HKC.Main.application#HKC.Main.application, Version=1.0.0.119, Culture=en, PublicKeyToken=0000000000000000, processorArchitecture=x86 + System.Deployment.Internal.Isolation.StoreOperationSetDeploymentMetadata - 状态: Failed - HRESULT: 0x1 + System.Deployment.Internal.Isolation.StoreTransactionOperationType (27) - HRESULT: 0x1
最新发布
11-10
单板1设备树信息: mac_8: mac@8 { id = <0x08>; port_mode = <0x02>; mac_port_speed = <0x02>; sds_speed = <0x00>; neg_mode = <0x01>; }; poe_8: poe@8 { vcpu_id = <0x00>; add_pkt_grp = <0x08>; grp_cfg = <0x01 0x00 0x400>; }; ppe_8: ppe@8 { //cport_id = <0x08>; //dir_mode_en; //fw_tnl = <0x08 0x08 0x40 0x00 0x00>; //pool = <0x08 0xc0 0x40 0x02 0x00>; //set_promisc = <0x00 0x00>; //fw1_flow_num = <0x02>; //fw1_flow0_key = <0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80800000 0x00 0x00 0x00>; //fw1_flow0_mask = <0xffffffff 0xffff 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xfff00000 0x00 0x00 0x00>; //fw1_flow0_ad = <0x00 0x00 0x00 0x08 0x00 0x00 0x00 0x01 0x00 0x00 0x00 0x00>; //fw1_flow0_update_dmac = <0x01 0x00>; //fw1_flow1_key = <0xffffffff 0xffff 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80800000 0x00 0x00 0x00>; //fw1_flow1_mask = <0xffffffff 0xffff 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xfff00000 0x00 0x00 0x00>; //fw1_flow1_ad = <0x00 0x00 0x00 0x08 0x00 0x00 0x00 0x01 0x00 0x00 0x00 0x00>; //fw1_flow1_update_dmac = <0x00 0x00>; //pf_id = <0>; // 使用的ppe pf设备编号,1230,1260此值配置为0 //dev_id = <0>;//使用的ppe vf设备编号,1230,1260此值配置为0 cport_id = <0x08>; //dir_mode_en; // 使能端口直通模式,没有此节点为LSw模式,不配这项,就是lsw模式 fw_tnl=<0x08 0x08 0x40 0x00 0x00>;/*fw_tn1相关配置,配盂格式为<fw_tnl bind_pool_id add_vqi qos_drop_en sep_en>, fw_tnl:当前使用的fw_tn1编号 bind _pool_id: fw_tn1绑定的mam pool编号 add_vqi:fw_tn1绑定的vqi编号 qos_drop_en:fw_tnl绑定的报文优先级丢弃使能 sep-en:fw_tnl绑定的描述符和报文buffer分离使能*/ pool = <0x08 0xc0 0x40 0x02 0x00>; /*pool相关配置,配置格式为 <pool_id buffer_size(单位:64B) depth pool_sop_skip(单位:64B) pool_not_sop_skip(单位:64B)>, pool_id:配置的poo1编号 buffer_size: pool的buffer大小 depth:pool的深度 pool_sop_skip:pool的存某个包的非首个buffer的skip配置值。表示报文存储结构中skip的长度(单位64B) pool_not_sop_skip:pool的存某个包的首个buffer的skip配置值。表示报文存储结构中skip的长度(单位64B)*/ set_promisc=<0x00 0x00>;//第1项为开启混杂使能,第2项为dmac在流表中的起始位置 fw1_flow_num = <0x02>; fw1_flow0_key= <0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80800000 0x00 0x00 0x00>; fw1_flow0_mask= <0xffffffff 0xffff 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xfff00000 0x00 0x00 0x00>; fw1_flow0_ad= <0x00 0x00 0x00 0x08 0x00 0x00 0x00 0x01 0x00 0x00 0x00 0x00>; // 第四个参数表示命中的ftnl的id fw1_flow0_update_dmac=<0x01 0x00>;// 第1项为是否更新流表中的mac地址,第2项为是更新的是mact地址还是第二个mact地址 fw1_flow1_key= <0xffffffff 0xffff 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80800000 0x00 0x00 0x00>; fw1_flow1_mask= <0xffffffff 0xffff 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xfff00000 0x00 0x00 0x00>; fw1_flow1_ad=<0x00 0x00 0x00 0x08 0x00 0x00 0x00 0x01 0x00 0x00 0x00 0x00>;// 第四个参数表示命中的ftnl的id fw1_flow1_update_dmac=<0x00 0x00>;//第1项为是否更新流表中的mac地址,第2项为是更新的是mac地址还是第二个mac地址 ig1_flow_num = <0x02>; //配置lsw流表 // 从 eth9 (mac port8) 进入 → 转发到 eth10 (port12) ig1_flow0_key = <0 0 0 0 0 0 0 0 0 0x48000000 0 0 0>; ig1_flow0_mask = <0 0 0 0 0 0 0 0 0 0xFF000000 0 0 0>; ig1_flow0_ad = <0 0 12 0 0 0 0 0 0 0 0 0>; // 目标端口=12 (eth10) ig1_flow0_update_dmac=<0 0>; // 从 CPU port1 进入 → 转发到 eth9 (port8) ig1_flow1_key = <0 0 0 0 0 0 0 0 0 0x01000000 0 0 0>; // CPU port1 ig1_flow1_mask = <0 0 0 0 0 0 0 0 0 0xFF000000 0 0 0>; ig1_flow1_ad = <0 0 8 0 0 0 0 0 0 0 0 0>; // 目标端口=8 (eth9) ig1_flow1_update_dmac=<0 0>; }; ethernet@8 { compatible = "hi1230_eth,dev"; phy-handle = <&mdio0_phy2>; mac = <&mac_8>; poe = <&poe_8>; ppe = <&ppe_8>; ifnet-name = "eth9"; flowctrl_rx_pause_en = <0x01>; }; mac_9: mac@9 { id = <0x0c>; port_mode = <0x02>; mac_port_speed = <0x02>; sds_speed = <0x00>; neg_mode = <0x01>; }; poe_9: poe@9 { vcpu_id = <0x00>; add_pkt_grp = <0x09>; grp_cfg = <0x01 0x00 0x400>; }; ppe_9: ppe@9 { //cport_id = <0x0c>; //dir_mode_en; //fw_tnl = <0x09 0x09 0x48 0x00 0x00>; //pool = <0x09 0xc0 0x40 0x02 0x00>; //set_promisc = <0x00 0x00>; //fw1_flow_num = <0x02>; //fw1_flow0_key = <0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80c00000 0x00 0x00 0x00>; //fw1_flow0_mask = <0xffffffff 0xffff 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xfff00000 0x00 0x00 0x00>; //fw1_flow0_ad = <0x00 0x00 0x00 0x09 0x00 0x00 0x00 0x01 0x00 0x00 0x00 0x00>; //fw1_flow0_update_dmac = <0x01 0x00>; //fw1_flow1_key = <0xffffffff 0xffff 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80c00000 0x00 0x00 0x00>; //fw1_flow1_mask = <0xffffffff 0xffff 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xfff00000 0x00 0x00 0x00>; //fw1_flow1_ad = <0x00 0x00 0x00 0x09 0x00 0x00 0x00 0x01 0x00 0x00 0x00 0x00>; //fw1_flow1_update_dmac = <0x00 0x00>; //pf_id = <0>; // 使用的ppe pf设备编号,1230,1260此值配置为0 //dev_id = <0>;//使用的ppe vf设备编号,1230,1260此值配置为0 cport_id = <0x0c>; //dir_mode_en; // 使能端口直通模式,没有此节点为LSw模式,不配这项,就是lsw模式 fw_tnl=<0x09 0x09 0x48 0x00 0x00>;/*fw_tn1相关配置,配盂格式为<fw_tnl bind_pool_id add_vqi qos_drop_en sep_en>, fw_tnl:当前使用的fw_tn1编号 bind _pool_id: fw_tn1绑定的mam pool编号 add_vqi:fw_tn1绑定的vqi编号 qos_drop_en:fw_tnl绑定的报文优先级丢弃使能 sep-en:fw_tnl绑定的描述符和报文buffer分离使能*/ pool = <0x09 0xc0 0x40 0x02 0x00>; /*pool相关配置,配置格式为 <pool_id buffer_size(单位:64B) depth pool_sop_skip(单位:64B) pool_not_sop_skip(单位:64B)>, pool_id:配置的poo1编号 buffer_size: pool的buffer大小 depth:pool的深度 pool_sop_skip:pool的存某个包的非首个buffer的skip配置值。表示报文存储结构中skip的长度(单位64B) pool_not_sop_skip:pool的存某个包的首个buffer的skip配置值。表示报文存储结构中skip的长度(单位64B)*/ set_promisc=<0x00 0x00>;//第1项为开启混杂使能,第2项为dmac在流表中的起始位置 fw1_flow_num = <0x02>; fw1_flow0_key= <0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80c00000 0x00 0x00 0x00>; // 0x80100000 表示命中srcport为macport 1的 fw1_flow0_mask= <0xffffffff 0xffff 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xfff00000 0x00 0x00 0x00>; fw1_flow0_ad= <0x00 0x00 0x00 0x08 0x00 0x00 0x00 0x01 0x00 0x00 0x00 0x00>; // 第四个参数表示命中的ftnl的id fw1_flow0_update_dmac=<0x01 0x00>;// 第1项为是否更新流表中的mac地址,第2项为是更新的是mact地址还是第二个mact地址 fw1_flow1_key= <0xffffffff 0xffff 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80c00000 0x00 0x00 0x00>; // 0x8010000o 表示命中srcport为macport 1的 fw1_flow1_mask= <0xffffffff 0xffff 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xfff00000 0x00 0x00 0x00>; fw1_flow1_ad=<0x00 0x00 0x00 0x08 0x00 0x00 0x00 0x01 0x00 0x00 0x00 0x00>;// 第四个参数表示命中的ftnl的id fw1_flow1_update_dmac=<0x00 0x00>;//第1项为是否更新流表中的mac地址,第2项为是更新的是mac地址还是第二个mac地址 ig1_flow_num = <0x02>; //配置lsw流表 //从 eth10 (mac port12) 进入 → 转发到 eth9 (port8) ig1_flow0_key = <0 0 0 0 0 0 0 0 0 0x4c000000 0 0 0>; ig1_flow0_mask = <0 0 0 0 0 0 0 0 0 0xFF000000 0 0 0>; ig1_flow0_ad = <0 0 8 0 0 0 0 0 0 0 0 0>; // 目标端口=8 (eth9) ig1_flow0_update_dmac=<0 0>; // 从 CPU port1 进入 → 转发到 eth10 (port12) ig1_flow1_key = <0 0 0 0 0 0 0 0 0 0x01000000 0 0 0>; // CPU port1 ig1_flow1_mask = <0 0 0 0 0 0 0 0 0 0xFF000000 0 0 0>; ig1_flow1_ad = <0 0 12 0 0 0 0 0 0 0 0 0>; // 目标端口=12 (eth10) ig1_flow1_update_dmac=<0 0>; }; ethernet@9 { compatible = "hi1230_eth,dev"; phy-handle = <&mdio0_phy3>; mac = <&mac_9>; poe = <&poe_9>; ppe = <&ppe_9>; ifnet-name = "eth10"; flowctrl_rx_pause_en = <0x01>; }; 单板2设备树信息: mac_8: mac@8 { id = <0x08>; port_mode = <0x02>; mac_port_speed = <0x02>; sds_speed = <0x00>; neg_mode = <0x01>; }; poe_8: poe@8 { vcpu_id = <0x00>; add_pkt_grp = <0x08>; grp_cfg = <0x01 0x00 0x400>; }; ppe_8: ppe@8 { //cport_id = <0x08>; //dir_mode_en; //fw_tnl = <0x08 0x08 0x40 0x00 0x00>; //pool = <0x08 0xc0 0x40 0x02 0x00>; //set_promisc = <0x00 0x00>; //fw1_flow_num = <0x02>; //fw1_flow0_key = <0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80800000 0x00 0x00 0x00>; //fw1_flow0_mask = <0xffffffff 0xffff 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xfff00000 0x00 0x00 0x00>; //fw1_flow0_ad = <0x00 0x00 0x00 0x08 0x00 0x00 0x00 0x01 0x00 0x00 0x00 0x00>; //fw1_flow0_update_dmac = <0x01 0x00>; //fw1_flow1_key = <0xffffffff 0xffff 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80800000 0x00 0x00 0x00>; //fw1_flow1_mask = <0xffffffff 0xffff 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xfff00000 0x00 0x00 0x00>; //fw1_flow1_ad = <0x00 0x00 0x00 0x08 0x00 0x00 0x00 0x01 0x00 0x00 0x00 0x00>; //fw1_flow1_update_dmac = <0x00 0x00>; //pf_id = <0>; // 使用的ppe pf设备编号,1230,1260此值配置为0 //dev_id = <0>;//使用的ppe vf设备编号,1230,1260此值配置为0 cport_id = <0x08>; //dir_mode_en; // 使能端口直通模式,没有此节点为LSw模式,不配这项,就是lsw模式 fw_tnl=<0x08 0x08 0x40 0x00 0x00>;/*fw_tn1相关配置,配盂格式为<fw_tnl bind_pool_id add_vqi qos_drop_en sep_en>, fw_tnl:当前使用的fw_tn1编号 bind _pool_id: fw_tn1绑定的mam pool编号 add_vqi:fw_tn1绑定的vqi编号 qos_drop_en:fw_tnl绑定的报文优先级丢弃使能 sep-en:fw_tnl绑定的描述符和报文buffer分离使能*/ pool = <0x08 0xc0 0x40 0x02 0x00>; /*pool相关配置,配置格式为 <pool_id buffer_size(单位:64B) depth pool_sop_skip(单位:64B) pool_not_sop_skip(单位:64B)>, pool_id:配置的poo1编号 buffer_size: pool的buffer大小 depth:pool的深度 pool_sop_skip:pool的存某个包的非首个buffer的skip配置值。表示报文存储结构中skip的长度(单位64B) pool_not_sop_skip:pool的存某个包的首个buffer的skip配置值。表示报文存储结构中skip的长度(单位64B)*/ set_promisc=<0x00 0x00>;//第1项为开启混杂使能,第2项为dmac在流表中的起始位置 fw1_flow_num = <0x02>; fw1_flow0_key= <0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80800000 0x00 0x00 0x00>; fw1_flow0_mask= <0xffffffff 0xffff 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xfff00000 0x00 0x00 0x00>; fw1_flow0_ad= <0x00 0x00 0x00 0x08 0x00 0x00 0x00 0x01 0x00 0x00 0x00 0x00>; // 第四个参数表示命中的ftnl的id fw1_flow0_update_dmac=<0x01 0x00>;// 第1项为是否更新流表中的mac地址,第2项为是更新的是mact地址还是第二个mact地址 fw1_flow1_key= <0xffffffff 0xffff 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80800000 0x00 0x00 0x00>; fw1_flow1_mask= <0xffffffff 0xffff 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xfff00000 0x00 0x00 0x00>; fw1_flow1_ad=<0x00 0x00 0x00 0x08 0x00 0x00 0x00 0x01 0x00 0x00 0x00 0x00>;// 第四个参数表示命中的ftnl的id fw1_flow1_update_dmac=<0x00 0x00>;//第1项为是否更新流表中的mac地址,第2项为是更新的是mac地址还是第二个mac地址 ig1_flow_num = <0x02>; //配置lsw流表 // 从 eth9 (mac port8) 进入 → 转发到 eth10 (port12) ig1_flow0_key = <0 0 0 0 0 0 0 0 0 0x48000000 0 0 0>; ig1_flow0_mask = <0 0 0 0 0 0 0 0 0 0xFF000000 0 0 0>; ig1_flow0_ad = <0 0 12 0 0 0 0 0 0 0 0 0>; // 目标端口=12 (eth10) ig1_flow0_update_dmac=<0 0>; // 从 CPU port1 进入 → 转发到 eth9 (port8) ig1_flow1_key = <0 0 0 0 0 0 0 0 0 0x01000000 0 0 0>; // CPU port1 ig1_flow1_mask = <0 0 0 0 0 0 0 0 0 0xFF000000 0 0 0>; ig1_flow1_ad = <0 0 8 0 0 0 0 0 0 0 0 0>; // 目标端口=8 (eth9) ig1_flow1_update_dmac=<0 0>; }; ethernet@8 { compatible = "hi1230_eth,dev"; phy-handle = <&mdio0_phy2>; mac = <&mac_8>; poe = <&poe_8>; ppe = <&ppe_8>; ifnet-name = "eth9"; flowctrl_rx_pause_en = <0x01>; }; mac_9: mac@9 { id = <0x0c>; port_mode = <0x02>; mac_port_speed = <0x02>; sds_speed = <0x00>; neg_mode = <0x01>; }; poe_9: poe@9 { vcpu_id = <0x00>; add_pkt_grp = <0x09>; grp_cfg = <0x01 0x00 0x400>; }; ppe_9: ppe@9 { cport_id = <0x0c>; dir_mode_en; fw_tnl = <0x09 0x09 0x48 0x00 0x00>; pool = <0x09 0xc0 0x40 0x02 0x00>; set_promisc = <0x00 0x00>; fw1_flow_num = <0x02>; fw1_flow0_key = <0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80c00000 0x00 0x00 0x00>; fw1_flow0_mask = <0xffffffff 0xffff 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xfff00000 0x00 0x00 0x00>; fw1_flow0_ad = <0x00 0x00 0x00 0x09 0x00 0x00 0x00 0x01 0x00 0x00 0x00 0x00>; fw1_flow0_update_dmac = <0x01 0x00>; fw1_flow1_key = <0xffffffff 0xffff 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80c00000 0x00 0x00 0x00>; fw1_flow1_mask = <0xffffffff 0xffff 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xfff00000 0x00 0x00 0x00>; fw1_flow1_ad = <0x00 0x00 0x00 0x09 0x00 0x00 0x00 0x01 0x00 0x00 0x00 0x00>; fw1_flow1_update_dmac = <0x00 0x00>; //pf_id = <0>; // 使用的ppe pf设备编号,1230,1260此值配置为0 //dev_id = <0>;//使用的ppe vf设备编号,1230,1260此值配置为0 //cport_id = <0x0c>; ////dir_mode_en; // 使能端口直通模式,没有此节点为LSw模式,不配这项,就是lsw模式 //fw_tnl=<0x09 0x09 0x48 0x00 0x00>;/*fw_tn1相关配置,配盂格式为<fw_tnl bind_pool_id add_vqi qos_drop_en sep_en>, // fw_tnl:当前使用的fw_tn1编号 // bind _pool_id: fw_tn1绑定的mam pool编号 // add_vqi:fw_tn1绑定的vqi编号 // qos_drop_en:fw_tnl绑定的报文优先级丢弃使能 // sep-en:fw_tnl绑定的描述符和报文buffer分离使能*/ //pool = <0x09 0xc0 0x40 0x02 0x00>; /*pool相关配置,配置格式为 // <pool_id buffer_size(单位:64B) depth pool_sop_skip(单位:64B) pool_not_sop_skip(单位:64B)>, // pool_id:配置的poo1编号 // buffer_size: pool的buffer大小 // depth:pool的深度 // pool_sop_skip:pool的存某个包的非首个buffer的skip配置值。表示报文存储结构中skip的长度(单位64B) // pool_not_sop_skip:pool的存某个包的首个buffer的skip配置值。表示报文存储结构中skip的长度(单位64B)*/ //set_promisc=<0x00 0x00>;//第1项为开启混杂使能,第2项为dmac在流表中的起始位置 //fw1_flow_num = <0x02>; //fw1_flow0_key= <0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80c00000 0x00 0x00 0x00>; // 0x80100000 表示命中srcport为macport 1的 //fw1_flow0_mask= <0xffffffff 0xffff 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xfff00000 0x00 0x00 0x00>; //fw1_flow0_ad= <0x00 0x00 0x00 0x08 0x00 0x00 0x00 0x01 0x00 0x00 0x00 0x00>; // 第四个参数表示命中的ftnl的id //fw1_flow0_update_dmac=<0x01 0x00>;// 第1项为是否更新流表中的mac地址,第2项为是更新的是mact地址还是第二个mact地址 //fw1_flow1_key= <0xffffffff 0xffff 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x80c00000 0x00 0x00 0x00>; // 0x8010000o 表示命中srcport为macport 1的 //fw1_flow1_mask= <0xffffffff 0xffff 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0xfff00000 0x00 0x00 0x00>; //fw1_flow1_ad=<0x00 0x00 0x00 0x08 0x00 0x00 0x00 0x01 0x00 0x00 0x00 0x00>;// 第四个参数表示命中的ftnl的id //fw1_flow1_update_dmac=<0x00 0x00>;//第1项为是否更新流表中的mac地址,第2项为是更新的是mac地址还是第二个mac地址 //ig1_flow_num = <0x02>; //配置lsw流表 ////从 eth10 (mac port12) 进入 → 转发到 eth9 (port8) //ig1_flow0_key = <0 0 0 0 0 0 0 0 0 0x4c000000 0 0 0>; //ig1_flow0_mask = <0 0 0 0 0 0 0 0 0 0xFF000000 0 0 0>; //ig1_flow0_ad = <0 0 8 0 0 0 0 0 0 0 0 0>; // 目标端口=8 (eth9) //ig1_flow0_update_dmac=<0 0>; //// 从 CPU port1 进入 → 转发到 eth10 (port12) //ig1_flow1_key = <0 0 0 0 0 0 0 0 0 0x01000000 0 0 0>; // CPU port1 //ig1_flow1_mask = <0 0 0 0 0 0 0 0 0 0xFF000000 0 0 0>; //ig1_flow1_ad = <0 0 12 0 0 0 0 0 0 0 0 0>; // 目标端口=12 (eth10) //ig1_flow1_update_dmac=<0 0>; }; ethernet@9 { compatible = "hi1230_eth,dev"; phy-handle = <&mdio0_phy3>; mac = <&mac_9>; poe = <&poe_9>; ppe = <&ppe_9>; ifnet-name = "eth10"; flowctrl_rx_pause_en = <0x01>; }; 背景描述:我单板1的eth9与pc用网线互连,eth10与单板2的eth10用网线互连,目前是想使用ppe硬转,直接pc发包给单板2的eth10的ip,能正常ping通。 现在现象是pc ping不通单板1的eth9与eth10,显示来自 192.168.0.10 的回复: 无法访问目标主机。经过询问属于正常现象, 解释是单板1两个端口都配置了lsw,报文都上不到内核协议栈去,按道理单板1 eth9对应的那个mac口进去的报文,在硬件层就转到另一个mac口发出去了,配了流表之后不应该能ping通单板1的eth9和eth10的 请帮忙进行分析是否正确,如果正确,为什么pc不能通过上述链接,来直接ping通单板2的eth10的ip,在eth10使用抓包指令tcpdump -i eth10 icmp,没有任何信息 请帮忙进行分析
10-15
只能使用上面两个函数用到的东西,不要使用别的函数,这是我更改后的回显函数,有没有什么问题? static int lanInterfaceIsolationCollect(TPSTATE_NETIF_ST* netIfEntry, void* param) { int ret = ERR_NO_ERROR; char cliCmd[TPCONFIGCPN_CLI_CMD_LEN + 1] = {0}; CFG_ZONE_INST **zoneCfg = NULL; char isolation[16] = "off"; // 默认值 char allowinternet[16] = "off"; /* 参数验证 */ APPL_ENSURE_RET_VAL(netIfEntry, ERR_BAD_PARAM); APPL_ENSURE_RET_VAL(param, ERR_BAD_PARAM); TPCONFIG_COLLECTFUN_INPUT_T *pInput = (TPCONFIG_COLLECTFUN_INPUT_T*)param; /* 仅处理VLAN接口 */ if (netIfEntry->netIfId.ifType != NETIF_TYPE_VLAN) { return ERR_NO_ERROR; } UINT32 vlanId = netIfEntry->netIfId.ifData.vlanId; /* 解析隔离状态 */ #define ISOLATION_BIT_OFFSET 0 #define INTERNET_BIT_OFFSET 2 #define STATUS_MASK 0x3 if (((netIfEntry->isolation >> ISOLATION_BIT_OFFSET) & STATUS_MASK) == 2) { strcpy(isolation, "on"); } if (((netIfEntry->isolation >> INTERNET_BIT_OFFSET) & STATUS_MASK) == 1) { strcpy(allowinternet, "on"); } snprintf(cliCmd, sizeof(cliCmd), "isolation state : %s", isolation); PFM_IF_FAIL_DONE(ret, tpConfig_outputToSdsForCli(INTERFACEVLAN, vlanId, cliCmd, TPCONFIG_HEADSPACE_YES)); memset(cliCmd, 0, sizeof(cliCmd)); snprintf(cliCmd, sizeof(cliCmd), "allowinternet state : %s", allowinternet); PFM_IF_FAIL_DONE(ret, tpConfig_outputToSdsForCli(INTERFACEVLAN, vlanId, cliCmd, TPCONFIG_HEADSPACE_YES)); ret = dmCfgZoneInstGetLstByField(CFG_ZONE_INST_F_IFNAME, netIfEntry->kernelName, &zoneCfg); if (ret == ERR_NO_ERROR && zoneCfg && zoneCfg[0]) { memset(cliCmd, 0, sizeof(cliCmd)); snprintf(cliCmd, sizeof(cliCmd), "zonename %s", zoneCfg[0]->zoneName); PFM_IF_FAIL_DONE(ret, tpConfig_outputToSdsForCli(INTERFACEVLAN, vlanId, cliCmd, TPCONFIG_HEADSPACE_YES)); } done: dmCfgZoneInstListFree(zoneCfg); return ERR_NO_ERROR; }
09-18
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值