WO2021036812A1 - 报文处理方法、装置和计算机存储介质 - Google Patents

报文处理方法、装置和计算机存储介质 Download PDF

Info

Publication number
WO2021036812A1
WO2021036812A1 PCT/CN2020/109085 CN2020109085W WO2021036812A1 WO 2021036812 A1 WO2021036812 A1 WO 2021036812A1 CN 2020109085 W CN2020109085 W CN 2020109085W WO 2021036812 A1 WO2021036812 A1 WO 2021036812A1
Authority
WO
WIPO (PCT)
Prior art keywords
message
rudp
memory
module
stored
Prior art date
Application number
PCT/CN2020/109085
Other languages
English (en)
French (fr)
Inventor
李华亭
周建光
杨亮
Original Assignee
中兴通讯股份有限公司
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by 中兴通讯股份有限公司 filed Critical 中兴通讯股份有限公司
Priority to JP2022511037A priority Critical patent/JP7366240B2/ja
Priority to EP20858807.9A priority patent/EP3992770A4/en
Publication of WO2021036812A1 publication Critical patent/WO2021036812A1/zh

Links

Images

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L69/00Network arrangements, protocols or services independent of the application payload and not provided for in the other groups of this subclass
    • H04L69/16Implementation or adaptation of Internet protocol [IP], of transmission control protocol [TCP] or of user datagram protocol [UDP]
    • H04L69/164Adaptation or special uses of UDP protocol
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L45/00Routing or path finding of packets in data switching networks
    • H04L45/74Address processing for routing
    • H04L45/745Address table lookup; Address filtering
    • H04L45/7453Address table lookup; Address filtering using hashing
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L49/00Packet switching elements
    • H04L49/30Peripheral units, e.g. input or output ports
    • H04L49/3009Header conversion, routing tables or routing tags
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L63/00Network architectures or network communication protocols for network security
    • H04L63/10Network architectures or network communication protocols for network security for controlling access to devices or network resources
    • H04L63/101Access control lists [ACL]
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04LTRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
    • H04L69/00Network arrangements, protocols or services independent of the application payload and not provided for in the other groups of this subclass
    • H04L69/22Parsing or analysis of headers
    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04WWIRELESS COMMUNICATION NETWORKS
    • H04W12/00Security arrangements; Authentication; Protecting privacy or anonymity
    • H04W12/08Access security
    • YGENERAL TAGGING OF NEW TECHNOLOGICAL DEVELOPMENTS; GENERAL TAGGING OF CROSS-SECTIONAL TECHNOLOGIES SPANNING OVER SEVERAL SECTIONS OF THE IPC; TECHNICAL SUBJECTS COVERED BY FORMER USPC CROSS-REFERENCE ART COLLECTIONS [XRACs] AND DIGESTS
    • Y02TECHNOLOGIES OR APPLICATIONS FOR MITIGATION OR ADAPTATION AGAINST CLIMATE CHANGE
    • Y02DCLIMATE CHANGE MITIGATION TECHNOLOGIES IN INFORMATION AND COMMUNICATION TECHNOLOGIES [ICT], I.E. INFORMATION AND COMMUNICATION TECHNOLOGIES AIMING AT THE REDUCTION OF THEIR OWN ENERGY USE
    • Y02D30/00Reducing energy consumption in communication networks
    • Y02D30/70Reducing energy consumption in communication networks in wireless communication networks

Definitions

  • This application relates to the field of information processing, in particular to a message processing method, device and computer storage medium.
  • the base station When the base station is performing UE (user equipment) access or leaving the cell, it uses the kernel protocol stack to receive RUDP (Reliable UDP, Reliable User Datagram Protocol) messages, and forward the messages to Processing module.
  • RUDP Reliable UDP, Reliable User Datagram Protocol
  • This application provides a message processing method applied to a base station, including: obtaining a Reliable User Datagram Protocol RUDP message, wherein the RUDP message includes the access request information of the user equipment UE; storing the RUDP message In user mode memory; process the stored RUDP messages.
  • a message processing device includes a processor and a memory, wherein the memory stores a computer program, and the processor calls the computer program in the memory to implement any one of the methods described above.
  • FIG. 1 is a flowchart of the message processing method provided by this application.
  • FIG. 2 is a schematic diagram of interaction of a message processing method provided by an embodiment of the application
  • FIG 3 is a schematic diagram of the interaction between the modules shown in Figure 2;
  • FIG. 4 is a flowchart of a method for processing RUDP packets provided by an embodiment of the application
  • Fig. 5 is a structural diagram of a message processing device provided by this application.
  • Fig. 1 is a flowchart of a message processing method provided by this application.
  • the method shown in Figure 1, applied to a base station, includes:
  • Step 101 Obtain an RUDP message, where the RUDP message includes the UE’s access request information; when the UE is accessing or leaving the base station, the baseband processing unit will send the RUDP message to the control module; in practical applications, because The types of messages received by the control module are not limited to RUDP messages, but other types of messages must be received. This requires the control module to identify the received messages.
  • the obtaining of the RUDP message includes: obtaining the message sent by the baseband processing module; using the ACL (Access Control List) module in the switching chip to perform processing on the obtained message Recognition of RUDP message, get RUDP message.
  • ACL Access Control List
  • the ACL function built in the switch chip is used to identify the message. Compared with the MAC (Media Access Control Address, Media Access Control) address matching in the related technology, a method is provided. The new message matching identification method, and because it uses the built-in functions of the switching chip, the hardware cost is lower.
  • MAC Media Access Control Address, Media Access Control
  • Step 102 Store the RUDP message in the memory in the user mode; in the process of analyzing the problem of excessive CPU burden in related technologies, the inventor found that the use of the kernel mode protocol stack to receive RUDP messages greatly increases The reason for the workload of the large CPU is that RUDP packets will be copied from the kernel to the user mode memory, especially when large-capacity UEs are frequently accessed, due to the excessive interruption of the network port to send and receive packets, which further increases the burden on the CPU. .
  • the inventor proposes that in the solution provided by the embodiment of the application, the RUDP message is directly stored in the user-mode memory, there is no need to perform memory copy, which achieves the purpose of zero copy of the memory and reduces the CPU. The effect of the burden.
  • Step 103 Process the stored RUDP message.
  • resource allocation and tunnel establishment for UE access can be performed according to the content of the RUDP message.
  • a reliable user datagram protocol RUDP message is obtained, the RUDP message is stored in the user mode memory, and the stored RUDP message is processed, and the RUDP message is directly stored in User-mode memory does not need to perform memory copy, which achieves the purpose of memory zero copy and reduces the burden on the processor.
  • the using the ACL module in the switching chip to identify the obtained packet to obtain the RUDP packet includes: performing a hash calculation on the obtained packet to obtain the information of the packet Hash value; use the pre-stored hash value information in the TCAM (Ternary Content Addressable Memory) in the ACL module to perform a matching operation on the hash value of the received message; if the match results If the hash value of the message is consistent with the hash value stored in the TCAM, it is determined that the received message is an RUDP message.
  • TCAM Ternary Content Addressable Memory
  • the ACL uses the hash value of the underlying TCAM to perform rule hit and match operations, without the participation of other external software, and is fast and accurate. If at least two rules are set in the TCAM table, one message can be matched with at least two rules in parallel to improve processing efficiency.
  • the storing the RUDP message in user mode memory includes: sending the RUDP message to a DPDK (Data Plan Development Kit) module; using The DPDK module stores the RUDP message in the user mode memory.
  • DPDK Data Plan Development Kit
  • storing RUDP messages in the user-mode memory is implemented using the DPDK module; using the open source feature of the DPDK module, DPDK is configured for software without increasing hardware development costs, and the RUDP message storage is completed To the purpose of user mode memory.
  • the sending the RUDP message to the data plane development kit DPDK module includes: redirecting the destination port of the RUDP message to the port of the pre-obtained DPDK; and transferring the destination port The redirected RUDP packet is sent out.
  • the RUDP message can be sent to the port of the DPDK for processing by the DPDK module.
  • the purpose of routing RUDP messages to the DPDK module within the control module can be achieved, without the need to change the destination port of the message sent by the baseband processing module, without damaging the transmission mechanism of the original communication protocol.
  • the purpose of storing the RUDP message in the user mode memory is completed.
  • said using the DPDK module to store the RUDP message in user mode memory includes: polling and matching the message received by the DPDK port to obtain the RUDP message; The RUDP message is stored in a queue preset in the user mode memory space.
  • the message format feature information of the RUDP message may be used to perform polling matching on the message received by the DPDK port to obtain the RUDP message, and then use the queue of the port to store the RUDP message.
  • DPDK adopts UIO (Userspace I/O, user control I/O) technology and large page technology, messages can be directly stored in user mode memory, achieving the goal of storing data directly in user mode memory, achieving zero The target of the copy.
  • the storing the RUDP message in a pre-set queue in a user-mode memory space includes: storing the RUDP message in a pre-set queue according to a pre-stored storage order In; said storing the RUDP message in a queue preset in the user-mode memory space, the method further includes: controlling each processing module to respond to each of the processing modules according to the preset corresponding relationship between the queue and the processing module RUDP packets in the corresponding queue.
  • RUDP messages can be stored in at least two queues.
  • the specific queue in which the received RUDP messages are stored can be determined according to a preset strategy. For example, a queue can be randomly selected. Or, according to the received sequence number of the RUDP message, the corresponding queue is determined according to a preset calculation expression.
  • each processing module processes the RUDP messages in its corresponding queue; among them, the RUDP messages in the queue can be processed in a first-in, first-out manner.
  • Parallel processing of RUDP messages by multiple processing modules can effectively improve message processing efficiency.
  • the processing the stored RUDP message includes: after obtaining the response information corresponding to the RUDP message, obtaining the user state memory required by the response information from the DPDK module; using The obtained user mode memory and the response information obtain the response message corresponding to the RUDP message; and the switch chip is used to send the response message.
  • the user mode memory is applied to the DPDK module, the message is filled in, and then sent directly, there is no interruption and memory copy, which greatly simplifies the processing The process improves the response efficiency.
  • the method before storing the RUDP message in the memory of the user mode, the method further includes: acquiring the UE's access and/or departure from the cell within a preset time period. Information on the number of times; when the information on the number of times the UE accesses and/or leaves the cell meets the preset frequent access judgment condition, the RUDP packet corresponding to the UE is stored in the user state memory.
  • the base station can identify RUDP packets through ACL, and use DPDK to send and receive and process packets to avoid interruptions, and achieve zero copy to improve transmission performance, improve user experience, and win Customer reputation.
  • FIG. 2 is a schematic diagram of interaction of a message processing method provided by an embodiment of the application.
  • the baseband processing unit can output RUDP packets after being processed by the radio frequency processing unit.
  • the control module of this application will use a built-in switch chip and CPU to process the RUDP message, and send it to the core network after the processing is completed.
  • Fig. 3 is a schematic diagram of the interaction between the modules shown in Fig. 2.
  • the processing method of the module shown in Figure 3 includes: in the data transmission direction of the received RUDP message, the baseband processing module triggers the sending of RUDP to the ACL module after the UE accesses; the ACL module uses the pre-stored RUDP message to match, if the message is If the message matching fails, the message will be sent to other network drive modules; if the message matching is successful, the message will be sent to the DPDK module; after receiving the message, the DPDK module will place the message in the memory visible in the user state , And use the message processing module to process the messages in the user mode memory.
  • the message processing module applies for memory from the memory in the user mode, completes the filling of the message, uses the DPDK module to send the RUDP message to the switch chip, and then the switch chip sends it to the baseband Processing module.
  • Fig. 4 is a flowchart of a method for processing RUDP packets provided by an embodiment of the application.
  • the method shown in FIG. 4 includes: step 401, the radio frequency unit detects whether the user terminal accesses the cell; step 402, the radio frequency unit detects that the user terminal accesses the cell, and informs the baseband processing module to send an RUDP packet to the control module.
  • Step 403 After the RUDP message is transmitted to the control module through the physical link, the switch chip in the control module performs ACL rule matching on the received RUDP message.
  • the embodiment of the present application proposes to adopt the ACL function at the switch chip level, and use the TCAM table to perform high-speed identification mark forwarding of the message, which greatly improves the identification efficiency and does not increase the additional consumption of the CPU.
  • step 404 is executed; otherwise, the message is forwarded normally.
  • Step 404 The switch chip in the control module redirects the destination port of the RUDP message to the DPDK network port.
  • DPDK After the ACL recognizes the RUDP message and forwards it to the DPDK network port, DPDK polls and puts the message in a mempool (Memory Pool) visible in the user state, and can be directly delivered to the processing module. Processing of messages.
  • mempool Memory Pool
  • Step 405 The CPU in the control module sends out the RUDP message after the destination port is redirected.
  • Step 406 The packet sending and receiving thread of the DPDK module performs a polling reception operation and performs a message matching; if the received message is an RUDP message, perform step 407; otherwise, perform a discard operation on all the messages.
  • Step 407 Store the RUDP message in a user mode memory space (mempool) in the form of a queue, where the DPDK packet sending and receiving thread has a binding relationship with the processing module in the CPU, and a corresponding sending and receiving packet queue is allocated to each processing module.
  • a user mode memory space (mempool)
  • Step 408 The polling thread polls the RUDP message, and delivers it to the processing module for processing.
  • Step 409 The processing module performs resource allocation and tunnel establishment for UE access according to the content of the message.
  • step 405 From step 405 to step 409, it can be seen that after receiving the message of the DPDK network port, the message will be polled and received by the user mode, and then delivered to the processing module, without interruption in the middle, and no need for the user mode to identify the message , There is no need to copy messages from kernel mode to user mode, which greatly saves system resources and performance.
  • the method provided by the embodiment of the present application does not need to modify the hardware design.
  • the open source DPDK and the ACL function of the switching chip can be used to optimize the message processing and improve the processing efficiency.
  • large page tables are used to store RUDP messages to achieve zero copy, and the queue is bound to the processing module to improve message processing efficiency; in addition, task scheduling is avoided by polling threads And the problem of frequent interrupts, which greatly saves CPU resources and improves processing performance, which can better ensure the use and experience of user terminal equipment.
  • Fig. 5 is a structural diagram of a message processing device provided by this application.
  • the apparatus shown in FIG. 5 includes a processor 501 and a memory 502, wherein the memory 502 stores a computer program, and the processor 501 calls the computer program in the memory 502 to implement the following operations, including: obtaining RUDP packets, wherein The RUDP message includes the access request information of the user equipment UE; the RUDP message is stored in the user mode memory; and the stored RUDP message is processed.
  • the processor 501 calls a computer program in the memory 502 to implement the operation of obtaining RUDP packets, including: obtaining a packet sent by a baseband processing module; using the control module The access control list ACL module in the switching chip performs RUDP message identification on the obtained message, and obtains the RUDP message.
  • the processor 501 calls the computer program in the memory 502 to implement the use of the ACL module in the switching chip in the control module to identify the obtained packet to obtain RUDP
  • the operation of the message includes: performing a hash calculation on the received message to obtain the hash value of the message; using the pre-stored hash value information in the tri-state content addressing memory 502 TCAM in the ACL module , Perform a matching operation on the hash value of the received message; if the matching result is that the hash value of the message is consistent with the hash value stored in the TCAM, it is determined that the received message is an RUDP message.
  • the processor 501 invokes a computer program in the memory 502 to implement the operation of storing the RUDP message in a user-mode memory, including: storing the RUDP message Send to the data plane development kit DPDK module; use the DPDK module to store the RUDP message in the memory in the user mode.
  • the processor 501 calls the computer program in the memory 502 to implement the operation of sending the RUDP message to the DPDK module of the data plane development kit, including: The destination port of the message is redirected to the port of the DPDK obtained in advance; the RUDP message after the destination port is redirected is sent out.
  • the processor 501 calls the computer program in the memory 502 to implement the operation of storing the RUDP message in the user mode memory by using the DPDK module, including: The message received by the DPDK port is polled and matched to obtain the RUDP message; the RUDP message is stored in a queue preset in the user-mode memory space.
  • the processor 501 invokes a computer program in the memory 502 to implement the operation of storing the RUDP message in a queue preset in a user-mode memory space, including: In a pre-stored storage sequence, the RUDP message is stored in a pre-set queue; in an exemplary embodiment, the processor 501 calls the computer program in the memory 502 to implement the RUDP After the message is saved in the queue preset in the user-mode memory space, the processor 501 calls the computer program in the memory 502 to implement the following operations, including: according to the preset correspondence relationship between the queue and the processing module , Control each processing module to respond to RUDP packets in its corresponding queue.
  • the processor 501 invokes the computer program in the memory 502 to implement the operation of processing the stored RUDP message, including: after obtaining the response information corresponding to the RUDP message, Obtain the user mode memory required for the response information from the DPDK module; use the obtained user mode memory and the response information to obtain the response message corresponding to the RUDP message; use the switching chip to send the response message .
  • the processor 501 before the processor 501 calls the computer program in the memory 502 to implement the operation of storing the RUDP message in the user-mode memory, the processor 501 calls the The computer program in the memory 502 also implements the following operations, including: acquiring information about the number of times the UE has accessed and/or left the cell within a preset time period; when the number of times the UE has accessed and/or left the cell When the information meets the preset frequent access judgment condition, the RUDP message corresponding to the UE is stored in the user state memory.
  • the device embodiment provided in this application obtains a reliable user datagram protocol RUDP message, stores the RUDP message in the memory in the user mode, and processes the stored RUDP message by directly storing the RUDP message in User-mode memory does not need to perform memory copy, which achieves the purpose of memory zero copy and reduces the burden on the processor.
  • a computer storage medium provided in the present application stores one or more programs, and the one or more programs can be executed by one or more processors to implement any of the above-mentioned methods .
  • the computer storage medium embodiment provided in this application obtains a reliable user datagram protocol RUDP message, stores the RUDP message in a user-mode memory, and processes the stored RUDP message by directly sending the RUDP message Stored in the user-mode memory, there is no need to perform memory copying, achieving the goal of zero copying of the memory and reducing the burden on the processor.
  • Such software may be distributed on a computer-readable medium, and the computer-readable medium may include a computer storage medium (or a non-transitory medium) and a communication medium (or a transitory medium).
  • the term computer storage medium includes volatile and non-volatile data implemented in any method or technology for storing information (such as computer-readable instructions, data structures, program modules, or other data). Sexual, removable and non-removable media.
  • Computer storage media include but are not limited to RAM, ROM, EEPROM, flash memory or other memory technologies, CD-ROM, digital versatile disk (DVD) or other optical disk storage, magnetic cassettes, magnetic tapes, magnetic disk storage or other magnetic storage devices, or Any other medium used to store desired information and that can be accessed by a computer.
  • communication media usually contain computer-readable instructions, data structures, program modules, or other data in a modulated data signal such as carrier waves or other transmission mechanisms, and may include any information delivery media. .

Landscapes

  • Engineering & Computer Science (AREA)
  • Computer Networks & Wireless Communication (AREA)
  • Signal Processing (AREA)
  • Computer Security & Cryptography (AREA)
  • Computer Hardware Design (AREA)
  • Computing Systems (AREA)
  • General Engineering & Computer Science (AREA)
  • Mobile Radio Communication Systems (AREA)
  • Computer And Data Communications (AREA)
  • Data Exchanges In Wide-Area Networks (AREA)

Abstract

本申请公开了一种报文处理方法、装置和计算机存储介质。所述方法,应用于基站,包括:获取可靠用户数据报协议RUDP报文,其中所述RUDP报文包括用户设备UE的接入请求信息;将所述RUDP报文存储在用户态的内存中;对存储的RUDP报文进行处理。

Description

报文处理方法、装置和计算机存储介质
相关申请的交叉引用
本申请基于申请号为201910785349.3、申请日为2019年8月23日的中国专利申请提出,并要求该中国专利申请的优先权,该中国专利申请的全部内容在此以引入方式并入本申请。
技术领域
本申请涉及信息处理领域,尤指一种报文处理方法、装置和计算机存储介质。
背景技术
基站在进行UE(user equipment,用户设备)接入或脱离小区时,利用内核协议栈把RUDP(Reliable UDP,可靠用户数据报协议)报文接收,通过socket(套接字)把报文转发给处理模块。但是,在大容量UE频繁接入的情况下,网口收发包的中断过多,极大的增大CPU的工作负担。
发明内容
本申请提供了一种报文处理方法,应用于基站,包括:获取可靠用户数据报协议RUDP报文,其中所述RUDP报文包括用户设备UE的接入请求信息;将所述RUDP报文存储在用户态的内存中;对存储的RUDP报文进行处理。
一种报文处理装置,包括处理器和存储器,其中所述存储器存储有计算机程序,所述处理器调用所述存储器中的计算机程序以实现上文任一所述的方法。
一种计算机存储介质,所述计算机可读存储介质存储有一个或者多个程 序,所述一个或者多个程序可被一个或者多个处理器执行,以实现上文任一所述的方法。
本申请的其它特征和优点将在随后的说明书中阐述,并且,部分地从说明书中变得显而易见,或者通过实施本申请而了解。本申请的目的和其他优点可通过在说明书、权利要求书以及附图中所特别指出的结构来实现和获得。
附图说明
附图用来提供对本申请技术方案的进一步理解,并且构成说明书的一部分,与本申请的实施例一起用于解释本申请的技术方案,并不构成对本申请技术方案的限制。
图1为本申请提供的报文处理方法的流程图;
图2为本申请实施例提供的报文处理方法的交互示意图;
图3为图2所示各模块间的交互示意图;
图4为本申请实施例提供的RUDP报文的处理方法的流程图;
图5为本申请提供的报文处理装置的结构图。
具体实施方式
为使本申请的目的、技术方案和优点更加清楚明白,下文中将结合附图对本申请的实施例进行详细说明。需要说明的是,在不冲突的情况下,本申请中的实施例及实施例中的特征可以相互任意组合。
在附图的流程图示出的步骤可以在诸如一组计算机可执行指令的计算机系统中执行。并且,虽然在流程图中示出了逻辑顺序,但是在某些情况下,可以以不同于此处的顺序执行所示出或描述的步骤。
图1为本申请提供的报文处理方法的流程图。图1所示方法,应用于基站,包括:
步骤101、获取RUDP报文,其中所述RUDP报文包括UE的接入请求信息;当UE在接入或脱离基站时,基带处理单元会发送RUDP报文至控制模块;在实际应用中,由于控制模块接收的报文类型不仅限于RUDP报文, 还要接收其他类型的报文,这就需要控制模块对接收的报文进行识别。
在一个示例性实施例中,所述获取RUDP报文,包括:获取基带处理模块发送的报文;利用交换芯片内的ACL(Access Control List,访问控制列表)模块,对获取到的报文进行RUDP报文的识别,得到RUDP报文。
在本示例性实施例中,对报文的识别时采用交换芯片内置的ACL功能来实现的,与相关技术中采用MAC(Media Access Control Address,介质访问控制)地址匹配相比,提供了一种新的报文匹配识别方法,且由于利用的是交换芯片内置的功能,硬件成本较低。
步骤102、将所述RUDP报文存储在用户态的内存中;在对相关技术中CPU负担过重的问题分析过程中,发明人发现,采用内核态协议栈接收RUDP报文,极大的增大CPU的工作负担的原因在于,RUDP报文会发生内核到用户态的内存拷贝,特别是大容量UE频繁接入的情况下,由于网口收发包的中断过多,进一步加重了CPU的负担。
基于发明人分析得到原因,发明人提出在本申请实施例提供的方案中,将RUDP报文直接存储到用户态的内存,则无需执行内存的拷贝,实现了内存零拷贝的目的,达到降低CPU的负担的效果。
步骤103、对存储的RUDP报文进行处理。
在一个示例性实施例中,可以根据RUDP报文的内容,进行UE接入的资源分配和隧道建立。
本申请提供的方法实施例,获取可靠用户数据报协议RUDP报文,将所述RUDP报文存储在用户态的内存中,并对存储的RUDP报文进行处理,通过将RUDP报文直接存储到用户态的内存,则无需执行内存的拷贝,实现了内存零拷贝的目的,达到降低处理器的负担的效果。
下面对本申请提供的方法作进一步说明:
在一个示例性实施例中,所述利用交换芯片内的ACL模块,对获取到报文进行识别,得到RUDP报文,包括:对获取到的报文进行哈希计算,得到所述报文的哈希值;利用所述ACL模块中TCAM(Ternary Content Addressable Memory,三态内容寻址存储器)中预先存储的哈希数值信息,对 接收到的报文的哈希值执行匹配操作;如果匹配结果为所述报文的哈希值与所述TCAM中存储的哈希值一致,则确定接收的报文为RUDP报文。
在本示例性实施例中,ACL利用底层TCAM的哈希值进行规则的命中和匹配操作,无需其他外部软件参与,速度快,准确度高。如果TCAM表中设置至少两条规则时,可以实现将一个报文与至少两条规则进行并行匹配,提高处理效率。
在一个示例性实施例中,所述将所述RUDP报文存储在用户态的内存中,包括:将所述RUDP报文发送至DPDK(Data Plan Development Kit,数据平面开发工具包)模块;利用所述DPDK模块将所述RUDP报文存储在用户态的内存中。
在本示例性实施例中,将RUDP报文存储在用户态的内存是利用DPDK模块实现的;利用DPDK模块的开源特性,对DPDK进行软件配置,无需增加硬件开发成本,完成将RUDP报文存储到用户态的内存的目的。
在一个示例性实施例中,所述将所述RUDP报文发送至数据平面开发工具包DPDK模块,包括:将所述RUDP报文的目的端口重定向至预先获取的DPDK的端口;将目的端口重定向后的RUDP报文发送出去。
在本示例性实施例中,在ACL模块确定RUDP报文后,通过将报文的目的端口进行重定向,可以将RUDP报文发送至DPDK的端口,以便DPDK模块进行处理。利用目的端口的重定向,可以实现RUDP报文在控制模块内部路由到DPDK模块的目的,无需对基带处理模块发送的报文的目的端口进行更改,在不破坏原有通信协议的传输机制的前提下,完成将RUDP报文存储到用户态的内存中的目的。
在一个示例性实施例中,所述利用所述DPDK模块将所述RUDP报文存储在用户态的内存中,包括:对DPDK端口接收的报文进行轮询匹配,获取RUDP报文;将所述RUDP报文在用户态内存空间中预先设置的队列中保存。
在本示例性实施例中,可以利用RUDP报文的报文格式特征信息,对DPDK端口接收的报文进行轮询匹配,得到RUDP报文,再利用该端口的队列存储该RUDP报文。由于DPDK采用UIO(Userspace I/O,用户控件的I/O)技术、大页面技术,报文可以直接存储在用户态内存中,实现了数据直接存 储在用户态的内存的目标,实现了零拷贝的目标。
在一个示例性实施例中,所述将所述RUDP报文在用户态内存空间中预先设置的队列中保存,包括:按照预先存储的存储顺序,将所述RUDP报文存储到预先设置的队列中;所述将所述RUDP报文在用户态内存空间中预先设置的队列中保存之后,所述方法还包括:按照预先设置的队列和处理模块的对应关系,控制每个处理模块分别响应各自对应的队列中的RUDP报文。
在本示例性实施例中,RUDP报文可以利用至少两个队列进行存储,其中接收的RUDP报文具体存储在哪个队列中,可以按照预先设置的策略进行确定,例如,可以随机选择一个队列,或者,根据RUDP报文的接收序号按照预先设置的计算表达式确定对应的队列。
由于每个队列具有对应的处理模块,每个处理模块均处理各自对应队列中的RUDP报文;其中,可以按照先进先出的对队列中的RUDP报文进行处理。通过多个处理模块并行处理RUDP报文,可以有效提高报文的处理效率。
在一个示例性实施例中,所述对存储的RUDP报文进行处理,包括:在得到RUDP报文对应的响应信息后,从所述DPDK模块获取所述响应信息所需的用户态内存;利用获取的用户态内存以及所述响应信息,得到所述RUDP报文对应的响应消息;利用所述交换芯片发送所述响应消息。
在本示例性实施例中,在得到RUDP报文对应的响应信息后,通过向DPDK模块申请用户态内存,进行报文填写,然后直接发出,不存在中断和内存拷贝,极大的简洁了处理流程,提高了响应效率。
在一个示例性实施例中,所述将所述RUDP报文存储在用户态的内存中之前,所述方法还包括:获取所述UE在预先设置的时长内的接入和/或脱离小区的次数信息;当所述UE的接入和/或脱离小区的次数信息符合预先设置的频繁接入的判断条件时,将所述UE对应的RUDP报文存储在用户态的内存中。
在本示例性实施例中,通过对UE是否频繁接入基站的判断,可以有效地在原有报文处理方法和本申请的报文处理方法间进行切换,提高方法应用的灵活性。
下面对本申请实施例提供的方法进一步说明:
基站进行大容量UE频繁接入的情况下,可以通过ACL进行RUDP报文的识别,并利用DPDK进行报文的收发和处理,避免中断,并实现零拷贝来提高传输性能,提升用户体验,赢得客户口碑。
图2为本申请实施例提供的报文处理方法的交互示意图。如图2所示,用户设备接入基站后,经过射频处理单元的处理,基带处理单元可以输出RUDP报文。本申请的控制模块会利用内置的交换(switch)芯片和CPU对RUDP报文进行处理,并在处理完成后发送给核心网。
图3为图2所示各模块间的交互示意图。图3所示模块的处理方式包括:在接收RUDP报文的数据传输方向上,基带处理模块在UE接入后触发发送RUDP至ACL模块;ACL模块利用预先存储的RUDP报文进行匹配,如果报文匹配失败,则将报文发送至其他网络驱动模块;如果报文匹配成功,则将报文发送至DPDK模块;DPDK模块在接收到报文后,将报文放在用户态可见的内存中,并利用报文处理模块对用户态的内存中的报文进行处理。
在发送RUDP报文的数据传输方向上,报文处理模块在从用户态的内存中申请内存,完成报文的填充,利用DPDK模块将RUDP报文发送至交换芯片,再由交换芯片发送至基带处理模块。
在图3所示的交互图中,在接收方向,在交换芯片被识别出RUDP报文后,将从DPDK端口直接存储到用户态内存里,发送给报文处理模块;在发送方向,OSS(Operation Support Systems,运营支撑系统)申请网口内存,进行报文填写,然后直接发出。在上述传输过程中,不存在中断和内存拷贝的操作,极大的简洁了处理流程,提高了响应效率,对基站的多项指标,有质的提升。
图4为本申请实施例提供的RUDP报文的处理方法的流程图。图4所示方法包括:步骤401、射频单元检测用户终端是否接入小区;步骤402、射频单元检测用户终端接入小区后,通知基带处理模块发送RUDP报文至控制模块。
步骤403、在RUDP报文经过物理链路传输到控制模块后,控制模块中的switch芯片对接收到RUDP报文进行ACL规则匹配。
在对RUDP报文的识别时,相关技术采用报文类型和端口号等位域进行 逐个识别筛选。而当报文量大的时候,采用相关技术中的方法,会极大的增加了CPU的负荷。为了克服上述问题,本申请实施例提出在交换芯片层面采用ACL功能,利用TCAM表对报文进行高速识别标记转发,极大的提高了识别效率,并且不增加CPU额外的消耗。
如果匹配成功,则执行步骤404;否则,对报文进行正常转发。
步骤404、控制模块中的switch芯片将RUDP报文进行目的端口重定向至DPDK网口。
在ACL识别RUDP报文并转发到DPDK网口后,此时DPDK通过轮询,把报文放在一个用户态可见的mempool(Memory Pool,内存池)中,并可直接投递给处理模块,进行报文的处理。
步骤405、控制模块中的CPU将目的端口重定向后的RUDP报文发送出去。
步骤406、DPDK模块的收发包线程执行轮询接收操作,并执行报文匹配;如果接收的报文为RUDP报文,则执行步骤407,否则,对报文都进行丢弃操作。
步骤407、将RUDP报文以队列的形式存储在用户态内存空间(mempool),其中DPDK收发包线程与CPU内的处理模块有绑定关系,为每个处理模块分配对应的收发包队列。
步骤408、轮询线程对RUDP报文进行轮询,投递到处理模块进行处理。
步骤409、处理模块根据报文内容,进行UE接入的资源分配和隧道建立。
从步骤405至步骤409可以看出,在接收到DPDK网口的报文后,报文就会被用户态轮询接收,然后投递给处理模块,中间无需产生中断,无需用户态对报文识别,无需发生报文从内核态到用户态的拷贝,极大的节省了系统资源和性能。
本申请实施例提供的方法,不需要修改硬件设计,利用开源的DPDK和交换芯片自带的ACL功能即可完成对报文处理的优化,提高处理效率。另外,与原来的转发处理方法相比,借助DPDK采用大页表存储RUDP报文实现零拷贝目的,将队列与处理模块绑定,提高报文的处理效率;另外,通过轮询 线程避免任务调度和中断频发的问题,极大的节省了CPU资源,并提高了处理性能,能够更好的保证用户终端设备的使用和体验。
图5为本申请提供的报文处理装置的结构图。图5所示装置包括处理器501和存储器502,其中所述存储器502存储有计算机程序,所述处理器501调用所述存储器502中的计算机程序以实现如下操作,包括:获取RUDP报文,其中所述RUDP报文包括用户设备UE的接入请求信息;将所述RUDP报文存储在用户态的内存中;对存储的RUDP报文进行处理。
在一个示例性实施例中,所述处理器501调用所述存储器502中的计算机程序以实现所述获取RUDP报文的操作,包括:获取基带处理模块发送的报文;利用所述控制模块中交换芯片内的访问控制列表ACL模块,对获取到的报文进行RUDP报文的识别,得到RUDP报文。
在一个示例性实施例中,所述处理器501调用所述存储器502中的计算机程序以实现所述利用所述控制模块中交换芯片内的ACL模块,对获取到的报文进行识别,得到RUDP报文的操作,包括:对接收获取到的报文进行哈希计算,得到所述报文的哈希值;利用所述ACL模块中三态内容寻址存储器502TCAM中预先存储的哈希数值信息,对接收到的报文的哈希值执行匹配操作;如果匹配结果为所述报文的哈希值与所述TCAM中存储的哈希值一致,则确定接收的报文为RUDP报文。
在一个示例性实施例中,所述处理器501调用所述存储器502中的计算机程序以实现所述将所述RUDP报文存储在用户态的内存中的操作,包括:将所述RUDP报文发送至数据平面开发工具包DPDK模块;利用所述DPDK模块将所述RUDP报文存储在用户态的内存中。
在一个示例性实施例中,所述处理器501调用所述存储器502中的计算机程序以实现所述将所述RUDP报文发送至数据平面开发工具包DPDK模块的操作,包括:将所述RUDP报文的目的端口重定向至预先获取的DPDK的端口;将目的端口重定向后的RUDP报文发送出去。
在一个示例性实施例中,所述处理器501调用所述存储器502中的计算机程序以实现所述利用所述DPDK模块将所述RUDP报文存储在用户态的内存中的操作,包括:对DPDK端口接收的报文进行轮询匹配,获取RUDP报 文;将所述RUDP报文在用户态内存空间中预先设置的队列中保存。
在一个示例性实施例中,所述处理器501调用所述存储器502中的计算机程序以实现所述将所述RUDP报文在用户态内存空间中预先设置的队列中保存的操作,包括:按照预先存储的存储顺序,将所述RUDP报文存储到预先设置的队列中;在一个示例性实施例中,所述处理器501调用所述存储器502中的计算机程序以实现所述将所述RUDP报文在用户态内存空间中预先设置的队列中保存的操作之后,所述处理器501调用所述存储器502中的计算机程序还实现如下操作,包括:按照预先设置的队列和处理模块的对应关系,控制每个处理模块分别响应各自对应的队列中的RUDP报文。
在一个示例性实施例中,所述处理器501调用所述存储器502中的计算机程序以实现所述对存储的RUDP报文进行处理的操作,包括:在得到RUDP报文对应的响应信息后,从所述DPDK模块获取所述响应信息所需的用户态内存;利用获取的用户态内存以及所述响应信息,得到所述RUDP报文对应的响应消息;利用所述交换芯片发送所述响应消息。
在一个示例性实施例中,所述处理器501调用所述存储器502中的计算机程序以实现所述将所述RUDP报文存储在用户态的内存中的操作之前,所述处理器501调用所述存储器502中的计算机程序还实现如下操作,包括:获取所述UE在预先设置的时长内的接入和/或脱离小区的次数信息;当所述UE的接入和/或脱离小区的次数信息符合预先设置的频繁接入的判断条件时,将所述UE对应的RUDP报文存储在用户态的内存中。
本申请提供的装置实施例,获取可靠用户数据报协议RUDP报文,将所述RUDP报文存储在用户态的内存中,并对存储的RUDP报文进行处理,通过将RUDP报文直接存储到用户态的内存,则无需执行内存的拷贝,实现了内存零拷贝的目的,达到降低处理器的负担的效果。
本申请提供的计算机存储介质,所述计算机可读存储介质存储有一个或者多个程序,所述一个或者多个程序可被一个或者多个处理器执行,以实现上文任一所述的方法。
本申请提供的计算机存储介质实施例,获取可靠用户数据报协议RUDP报文,将所述RUDP报文存储在用户态的内存中,并对存储的RUDP报文进 行处理,通过将RUDP报文直接存储到用户态的内存,则无需执行内存的拷贝,实现了内存零拷贝的目的,达到降低处理器的负担的效果。
本领域普通技术人员可以理解,上文中所公开方法中的全部或某些步骤、系统、装置中的功能模块/单元可以被实施为软件、固件、硬件及其适当的组合。在硬件实施例中,在以上描述中提及的功能模块/单元之间的划分不一定对应于物理组件的划分;例如,一个物理组件可以具有多个功能,或者一个功能或步骤可以由若干物理组件合作执行。某些组件或所有组件可以被实施为由处理器,如数字信号处理器或微处理器执行的软件,或者被实施为硬件,或者被实施为集成电路,如专用集成电路。这样的软件可以分布在计算机可读介质上,计算机可读介质可以包括计算机存储介质(或非暂时性介质)和通信介质(或暂时性介质)。如本领域普通技术人员公知的,术语计算机存储介质包括在用于存储信息(诸如计算机可读指令、数据结构、程序模块或其他数据)的任何方法或技术中实施的易失性和非易失性、可移除和不可移除介质。计算机存储介质包括但不限于RAM、ROM、EEPROM、闪存或其他存储器技术、CD-ROM、数字多功能盘(DVD)或其他光盘存储、磁盒、磁带、磁盘存储或其他磁存储装置、或者可以用于存储期望的信息并且可以被计算机访问的任何其他的介质。此外,本领域普通技术人员公知的是,通信介质通常包含计算机可读指令、数据结构、程序模块或者诸如载波或其他传输机制之类的调制数据信号中的其他数据,并且可包括任何信息递送介质。

Claims (11)

  1. 一种报文处理方法,应用于基站,包括:
    获取可靠用户数据报协议RUDP报文,其中所述RUDP报文包括用户设备UE的接入请求信息;
    将所述RUDP报文存储在用户态的内存中;
    对存储的RUDP报文进行处理。
  2. 根据权利要求1所述的方法,其中,所述获取RUDP报文,包括:
    获取基带处理模块发送的报文;
    利用交换芯片内的访问控制列表ACL模块,对获取到的报文进行RUDP报文的识别,得到RUDP报文。
  3. 根据权利要求2所述的方法,其中,所述利用交换芯片内的ACL模块,对获取到的报文进行识别,得到RUDP报文,包括:
    对获取到的报文进行哈希计算,得到所述报文的哈希值;
    利用所述ACL模块中三态内容寻址存储器TCAM中预先存储的哈希数值信息,对接收到的报文的哈希值执行匹配操作;
    如果匹配结果为所述报文的哈希值与所述TCAM中存储的哈希值一致,则确定接收的报文为RUDP报文。
  4. 根据权利要求1所述的方法,其中,所述将所述RUDP报文存储在用户态的内存中,包括:
    将所述RUDP报文发送至数据平面开发工具包DPDK模块;
    利用所述DPDK模块将所述RUDP报文存储在用户态的内存中。
  5. 根据权利要求4述的方法,其中,所述将所述RUDP报文发送至数据平面开发工具包DPDK模块,包括:
    将所述RUDP报文的目的端口重定向至预先获取的DPDK的端口;
    将目的端口重定向后的RUDP报文发送出去。
  6. 根据权利要求4所述的方法,其中,所述利用所述DPDK模块将所述RUDP报文存储在用户态的内存中,包括:
    对DPDK端口接收的报文进行轮询匹配,获取RUDP报文;
    将所述RUDP报文在用户态内存空间中预先设置的队列中保存。
  7. 根据权利要求6所述的方法,其中:
    所述将所述RUDP报文在用户态内存空间中预先设置的队列中保存,包括:
    按照预先存储的存储顺序,将所述RUDP报文存储到预先设置的队列中;
    所述将所述RUDP报文在用户态内存空间中预先设置的队列中保存之后,所述方法还包括:
    按照预先设置的队列和处理模块的对应关系,控制每个处理模块分别响应各自对应的队列中的RUDP报文。
  8. 根据权利要求1所述的方法,其中,所述对存储的RUDP报文进行处理,包括:
    在得到RUDP报文对应的响应信息后,从所述DPDK模块获取所述响应信息所需的用户态内存;
    利用获取的用户态内存以及所述响应信息,得到所述RUDP报文对应的响应消息;
    利用所述交换芯片发送所述响应消息。
  9. 根据权利要求1所述的方法,其中,所述将所述RUDP报文存储在用户态的内存中之前,所述方法还包括:
    获取所述UE在预先设置的时长内的接入和/或脱离小区的次数信息;
    当所述UE的接入和/或脱离小区的次数信息符合预先设置的频繁接入的 判断条件时,将所述UE对应的RUDP报文存储在用户态的内存中。
  10. 一种报文处理装置,包括处理器和存储器,其中所述存储器存储有计算机程序,所述处理器调用所述存储器中的计算机程序以实现如权利要求1至9任一所述的方法。
  11. 一种计算机存储介质,所述计算机可读存储介质存储有一个或者多个程序,所述一个或者多个程序可被一个或者多个处理器执行,以实现如权利要求1至9任一所述的方法。
PCT/CN2020/109085 2019-08-23 2020-08-14 报文处理方法、装置和计算机存储介质 WO2021036812A1 (zh)

Priority Applications (2)

Application Number Priority Date Filing Date Title
JP2022511037A JP7366240B2 (ja) 2019-08-23 2020-08-14 メッセージ処理方法、装置およびコンピュータ記憶媒体
EP20858807.9A EP3992770A4 (en) 2019-08-23 2020-08-14 METHOD AND APPARATUS FOR PROCESSING MESSAGES, AND COMPUTER STORAGE MEDIA

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
CN201910785349.3A CN112422457B (zh) 2019-08-23 2019-08-23 报文处理方法、装置和计算机存储介质
CN201910785349.3 2019-08-23

Publications (1)

Publication Number Publication Date
WO2021036812A1 true WO2021036812A1 (zh) 2021-03-04

Family

ID=74685065

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2020/109085 WO2021036812A1 (zh) 2019-08-23 2020-08-14 报文处理方法、装置和计算机存储介质

Country Status (4)

Country Link
EP (1) EP3992770A4 (zh)
JP (1) JP7366240B2 (zh)
CN (1) CN112422457B (zh)
WO (1) WO2021036812A1 (zh)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN113434287A (zh) * 2021-06-03 2021-09-24 中国联合网络通信集团有限公司 任务数据传输方法、系统、电子设备及存储介质

Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101035060A (zh) * 2006-03-08 2007-09-12 中兴通讯股份有限公司 一种三重内容可寻址存储器报文分类的统一处理方法
US20120079143A1 (en) * 2010-09-24 2012-03-29 Xsigo Systems, Inc. Wireless host i/o using virtualized i/o controllers
CN102546398A (zh) * 2011-12-16 2012-07-04 华为技术有限公司 一种报文匹配方法及装置
CN108037898A (zh) * 2017-12-15 2018-05-15 郑州云海信息技术有限公司 一种基于Ceph的dpdk通讯的方法、系统及装置
CN109309626A (zh) * 2018-09-10 2019-02-05 南京知常容信息技术有限公司 一种基于dpdk的高速网络数据包捕获分流及缓存方法

Family Cites Families (11)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101606141A (zh) 2006-09-13 2009-12-16 阿森奇亚网络有限公司 改善多路径环境中传输协议性能的系统和方法
US20080268881A1 (en) * 2007-04-30 2008-10-30 Motorola, Inc. Method and apparatus for silently fetching information
US8259659B2 (en) * 2008-07-03 2012-09-04 Apple Inc. Apparatus and methods for managing access and update requests in a wireless network
CN104104705B (zh) * 2013-04-11 2018-02-02 阿里巴巴集团控股有限公司 分布式存储系统的接入方法和设备
US9264357B2 (en) 2013-04-30 2016-02-16 Xpliant, Inc. Apparatus and method for table search with centralized memory pool in a network switch
CN104601468B (zh) * 2015-01-13 2018-10-09 新华三技术有限公司 报文转发方法和设备
CN106657126B (zh) * 2017-01-05 2019-11-08 盛科网络(苏州)有限公司 检测及防御DDoS攻击的装置及方法
KR102319838B1 (ko) * 2017-03-08 2021-11-01 삼성전자 주식회사 대규모 접속을 고려한 랜덤 액세스를 위한 장치 및 방법
CN108628684B (zh) * 2017-03-20 2021-01-05 华为技术有限公司 一种基于dpdk的报文处理方法及计算机设备
US11093284B2 (en) * 2017-05-12 2021-08-17 Xilinx, Inc. Data processing system
CN109688058B (zh) * 2018-12-19 2021-03-02 迈普通信技术股份有限公司 报文处理方法、装置及网络设备

Patent Citations (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN101035060A (zh) * 2006-03-08 2007-09-12 中兴通讯股份有限公司 一种三重内容可寻址存储器报文分类的统一处理方法
US20120079143A1 (en) * 2010-09-24 2012-03-29 Xsigo Systems, Inc. Wireless host i/o using virtualized i/o controllers
CN102546398A (zh) * 2011-12-16 2012-07-04 华为技术有限公司 一种报文匹配方法及装置
CN108037898A (zh) * 2017-12-15 2018-05-15 郑州云海信息技术有限公司 一种基于Ceph的dpdk通讯的方法、系统及装置
CN109309626A (zh) * 2018-09-10 2019-02-05 南京知常容信息技术有限公司 一种基于dpdk的高速网络数据包捕获分流及缓存方法

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN113434287A (zh) * 2021-06-03 2021-09-24 中国联合网络通信集团有限公司 任务数据传输方法、系统、电子设备及存储介质

Also Published As

Publication number Publication date
CN112422457B (zh) 2023-04-07
JP7366240B2 (ja) 2023-10-20
CN112422457A (zh) 2021-02-26
EP3992770A4 (en) 2022-07-27
EP3992770A1 (en) 2022-05-04
JP2022545453A (ja) 2022-10-27

Similar Documents

Publication Publication Date Title
US11899596B2 (en) System and method for facilitating dynamic command management in a network interface controller (NIC)
US10432745B2 (en) Accelerated network packet processing
US9083539B2 (en) Method and apparatus for multicast packet reception
US9537786B2 (en) Method, device, and system for information processing based on distributed buses
WO2017000593A1 (zh) 报文处理方法及装置
US11048535B2 (en) Method and apparatus for transmitting data packet based on virtual machine
US9621633B2 (en) Flow director-based low latency networking
US11316916B2 (en) Packet processing method, related device, and computer storage medium
CN113891396B (zh) 数据包的处理方法、装置、计算机设备和存储介质
WO2021036812A1 (zh) 报文处理方法、装置和计算机存储介质
WO2019033891A1 (zh) 一种基于rdma的网络流量确定方法及装置
CN112152940B (zh) 报文处理方法、装置以及系统
US20170195261A1 (en) Apparatus and method for virtual switching
US9270602B1 (en) Transmit rate pacing of large network traffic bursts to reduce jitter, buffer overrun, wasted bandwidth, and retransmissions
US20180091447A1 (en) Technologies for dynamically transitioning network traffic host buffer queues
US10284501B2 (en) Technologies for multi-core wireless network data transmission
US10284502B2 (en) Dynamic optimization for IP forwarding performance
US11228532B2 (en) Method of executing QoS policy and network device
CN116016687A (zh) 一种基于dpdk的报文分流方法及系统
US20140032742A1 (en) Wireless network device buffers

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 20858807

Country of ref document: EP

Kind code of ref document: A1

ENP Entry into the national phase

Ref document number: 2020858807

Country of ref document: EP

Effective date: 20220127

ENP Entry into the national phase

Ref document number: 2022511037

Country of ref document: JP

Kind code of ref document: A

NENP Non-entry into the national phase

Ref country code: DE