亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? pbuf.c

?? MCS-51的一個Free小型操作系統,在KeilC中下編譯工作
?? C
?? 第 1 頁 / 共 3 頁
字號:
/**
 * @file
 * Packet buffer management
 *
 * Packets are built from the pbuf data structure. It supports dynamic
 * memory allocation for packet contents or can reference externally
 * managed packet contents both in RAM and ROM. Quick allocation for
 * incoming packets is provided through pools with fixed sized pbufs.
 *
 * A packet may span over multiple pbufs, chained as a singly linked
 * list. This is called a "pbuf chain".
 *
 * Multiple packets may be queued, also using this singly linked list.
 * This is called a "packet queue".
 * 
 * So, a packet queue consists of one or more pbuf chains, each of
 * which consist of one or more pbufs. Currently, queues are only
 * supported in a limited section of lwIP, this is the etharp queueing
 * code. Outside of this section no packet queues are supported yet.
 * 
 * The differences between a pbuf chain and a packet queue are very
 * precise but subtle. 
 *
 * The last pbuf of a packet has a ->tot_len field that equals the
 * ->len field. It can be found by traversing the list. If the last
 * pbuf of a packet has a ->next field other than NULL, more packets
 * are on the queue.
 *
 * Therefore, looping through a pbuf of a single packet, has an
 * loop end condition (tot_len == p->len), NOT (next == NULL).
 */

/*
 * Copyright (c) 2001-2004 Swedish Institute of Computer Science.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification,
 * are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice,
 *    this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 *    this list of conditions and the following disclaimer in the documentation
 *    and/or other materials provided with the distribution.
 * 3. The name of the author may not be used to endorse or promote products
 *    derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
 * SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
 * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
 * OF SUCH DAMAGE.
 *
 * This file is part of the lwIP TCP/IP stack.
 *
 * Author: Adam Dunkels <adam@sics.se>
 *
 */

#include "lwip/opt.h"

#include "lwip/stats.h"

#include "lwip/def.h"
#include "lwip/mem.h"
#include "lwip/memp.h"
#include "lwip/pbuf.h"

#include "lwip/sys.h"

#include "arch/perf.h"

#include <string.h>

static u8_t pbuf_pool_memory[(PBUF_POOL_SIZE * MEM_ALIGN_SIZE(PBUF_POOL_BUFSIZE + sizeof(struct pbuf)))];

#if !SYS_LIGHTWEIGHT_PROT
static volatile u8_t pbuf_pool_free_lock, pbuf_pool_alloc_lock;
static sys_sem_t pbuf_pool_free_sem;
#endif

static struct pbuf *pbuf_pool = NULL;

/**
 * Initializes the pbuf module.
 *
 * A large part of memory is allocated for holding the pool of pbufs.
 * The size of the individual pbufs in the pool is given by the size
 * parameter, and the number of pbufs in the pool by the num parameter.
 *
 * After the memory has been allocated, the pbufs are set up. The
 * ->next pointer in each pbuf is set up to point to the next pbuf in
 * the pool.
 *
 */
void
pbuf_init(void)
{
  struct pbuf *p, *q = NULL;
  u16_t i;

  pbuf_pool = (struct pbuf *)&pbuf_pool_memory[0];
  LWIP_ASSERT("pbuf_init: pool aligned", (mem_ptr_t)pbuf_pool % MEM_ALIGNMENT == 0);

#if PBUF_STATS
  lwip_stats.pbuf.avail = PBUF_POOL_SIZE;
#endif /* PBUF_STATS */

  /* Set up ->next pointers to link the pbufs of the pool together */
  p = pbuf_pool;

  for(i = 0; i < PBUF_POOL_SIZE; ++i) {
    p->next = (struct pbuf *)((u8_t *)p + PBUF_POOL_BUFSIZE + sizeof(struct pbuf));
    p->len = p->tot_len = PBUF_POOL_BUFSIZE;
    p->payload = MEM_ALIGN((void *)((u8_t *)p + sizeof(struct pbuf)));
    p->flags = PBUF_FLAG_POOL;
    q = p;
    p = p->next;
  }

  /* The ->next pointer of last pbuf is NULL to indicate that there
     are no more pbufs in the pool */
  q->next = NULL;

#if !SYS_LIGHTWEIGHT_PROT
  pbuf_pool_alloc_lock = 0;
  pbuf_pool_free_lock = 0;
  pbuf_pool_free_sem = sys_sem_new(1);
#endif
}

/**
 * @internal only called from pbuf_alloc()
 */
static struct pbuf *
pbuf_pool_alloc(void)
{
  struct pbuf *p = NULL;

  SYS_ARCH_DECL_PROTECT(old_level);
  SYS_ARCH_PROTECT(old_level);

#if !SYS_LIGHTWEIGHT_PROT
  /* Next, check the actual pbuf pool, but if the pool is locked, we
     pretend to be out of buffers and return NULL. */
  if (pbuf_pool_free_lock) {
#if PBUF_STATS
    ++lwip_stats.pbuf.alloc_locked;
#endif /* PBUF_STATS */
    return NULL;
  }
  pbuf_pool_alloc_lock = 1;
  if (!pbuf_pool_free_lock) {
#endif /* SYS_LIGHTWEIGHT_PROT */
    p = pbuf_pool;
    if (p) {
      pbuf_pool = p->next;
    }
#if !SYS_LIGHTWEIGHT_PROT
#if PBUF_STATS
  } else {
    ++lwip_stats.pbuf.alloc_locked;
#endif /* PBUF_STATS */
  }
  pbuf_pool_alloc_lock = 0;
#endif /* SYS_LIGHTWEIGHT_PROT */

#if PBUF_STATS
  if (p != NULL) {
    ++lwip_stats.pbuf.used;
    if (lwip_stats.pbuf.used > lwip_stats.pbuf.max) {
      lwip_stats.pbuf.max = lwip_stats.pbuf.used;
    }
  }
#endif /* PBUF_STATS */

  SYS_ARCH_UNPROTECT(old_level);
  return p;
}


/**
 * Allocates a pbuf of the given type (possibly a chain for PBUF_POOL type).
 *
 * The actual memory allocated for the pbuf is determined by the
 * layer at which the pbuf is allocated and the requested size
 * (from the size parameter).
 *
 * @param flag this parameter decides how and where the pbuf
 * should be allocated as follows:
 *
 * - PBUF_RAM: buffer memory for pbuf is allocated as one large
 *             chunk. This includes protocol headers as well.
 * - PBUF_ROM: no buffer memory is allocated for the pbuf, even for
 *             protocol headers. Additional headers must be prepended
 *             by allocating another pbuf and chain in to the front of
 *             the ROM pbuf. It is assumed that the memory used is really
 *             similar to ROM in that it is immutable and will not be
 *             changed. Memory which is dynamic should generally not
 *             be attached to PBUF_ROM pbufs. Use PBUF_REF instead.
 * - PBUF_REF: no buffer memory is allocated for the pbuf, even for
 *             protocol headers. It is assumed that the pbuf is only
 *             being used in a single thread. If the pbuf gets queued,
 *             then pbuf_take should be called to copy the buffer.
 * - PBUF_POOL: the pbuf is allocated as a pbuf chain, with pbufs from
 *              the pbuf pool that is allocated during pbuf_init().
 *
 * @return the allocated pbuf. If multiple pbufs where allocated, this
 * is the first pbuf of a pbuf chain.
 */
struct pbuf *
pbuf_alloc(pbuf_layer l, u16_t length, pbuf_flag flag)
{
  struct pbuf *p, *q, *r;
  u16_t offset;
  s32_t rem_len; /* remaining length */
  LWIP_DEBUGF(PBUF_DEBUG | DBG_TRACE | 3, ("pbuf_alloc(length=%u)\n", length));

  /* determine header offset */
  offset = 0;
  switch (l) {
  case PBUF_TRANSPORT:
    /* add room for transport (often TCP) layer header */
    offset += PBUF_TRANSPORT_HLEN;
    /* FALLTHROUGH */
  case PBUF_IP:
    /* add room for IP layer header */
    offset += PBUF_IP_HLEN;
    /* FALLTHROUGH */
  case PBUF_LINK:
    /* add room for link layer header */
    offset += PBUF_LINK_HLEN;
    break;
  case PBUF_RAW:
    break;
  default:
    LWIP_ASSERT("pbuf_alloc: bad pbuf layer", 0);
    return NULL;
  }

  switch (flag) {
  case PBUF_POOL:
    /* allocate head of pbuf chain into p */
    p = pbuf_pool_alloc();
    LWIP_DEBUGF(PBUF_DEBUG | DBG_TRACE | 3, ("pbuf_alloc: allocated pbuf %p\n", (void *)p));
    if (p == NULL) {
#if PBUF_STATS
      ++lwip_stats.pbuf.err;
#endif /* PBUF_STATS */
      return NULL;
    }
    p->next = NULL;

    /* make the payload pointer point 'offset' bytes into pbuf data memory */
    p->payload = MEM_ALIGN((void *)((u8_t *)p + (sizeof(struct pbuf) + offset)));
    LWIP_ASSERT("pbuf_alloc: pbuf p->payload properly aligned",
            ((mem_ptr_t)p->payload % MEM_ALIGNMENT) == 0);
    /* the total length of the pbuf chain is the requested size */
    p->tot_len = length;
    /* set the length of the first pbuf in the chain */
    p->len = length > PBUF_POOL_BUFSIZE - offset? PBUF_POOL_BUFSIZE - offset: length;
    /* set reference count (needed here in case we fail) */
    p->ref = 1;

    /* now allocate the tail of the pbuf chain */

    /* remember first pbuf for linkage in next iteration */
    r = p;
    /* remaining length to be allocated */
    rem_len = length - p->len;
    /* any remaining pbufs to be allocated? */
    while (rem_len > 0) {
      q = pbuf_pool_alloc();
      if (q == NULL) {
       LWIP_DEBUGF(PBUF_DEBUG | 2, ("pbuf_alloc: Out of pbufs in pool.\n"));
#if PBUF_STATS
        ++lwip_stats.pbuf.err;
#endif /* PBUF_STATS */
        /* free chain so far allocated */
        pbuf_free(p);
        /* bail out unsuccesfully */
        return NULL;
      }
      q->next = NULL;
      /* make previous pbuf point to this pbuf */
      r->next = q;
      /* set total length of this pbuf and next in chain */
      q->tot_len = rem_len;
      /* this pbuf length is pool size, unless smaller sized tail */
      q->len = rem_len > PBUF_POOL_BUFSIZE? PBUF_POOL_BUFSIZE: rem_len;
      q->payload = (void *)((u8_t *)q + sizeof(struct pbuf));
      LWIP_ASSERT("pbuf_alloc: pbuf q->payload properly aligned",
              ((mem_ptr_t)q->payload % MEM_ALIGNMENT) == 0);
      q->ref = 1;
      /* calculate remaining length to be allocated */
      rem_len -= q->len;
      /* remember this pbuf for linkage in next iteration */
      r = q;
    }
    /* end of chain */
    /*r->next = NULL;*/

    break;
  case PBUF_RAM:
    /* If pbuf is to be allocated in RAM, allocate memory for it. */
    p = mem_malloc(MEM_ALIGN_SIZE(sizeof(struct pbuf) + offset) + MEM_ALIGN_SIZE(length));
    if (p == NULL) {
      return NULL;
    }
    /* Set up internal structure of the pbuf. */
    p->payload = MEM_ALIGN((void *)((u8_t *)p + sizeof(struct pbuf) + offset));
    p->len = p->tot_len = length;
    p->next = NULL;
    p->flags = PBUF_FLAG_RAM;

    LWIP_ASSERT("pbuf_alloc: pbuf->payload properly aligned",

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产一区二区按摩在线观看| 在线观看av一区| 91视频在线观看免费| 5月丁香婷婷综合| 亚洲精品高清在线| 国产一区999| 6080亚洲精品一区二区| 中文字幕在线观看不卡| 黄页视频在线91| 欧美日本在线一区| 亚洲精品ww久久久久久p站| 狠狠色丁香久久婷婷综合_中| 欧美私模裸体表演在线观看| 国产精品免费aⅴ片在线观看| 另类小说综合欧美亚洲| 欧美精品色综合| 一区二区三区91| av男人天堂一区| 久久精品亚洲精品国产欧美kt∨| 另类成人小视频在线| 欧美老年两性高潮| 亚洲777理论| 欧美日韩一级大片网址| 一区二区三区免费网站| 色综合久久99| 中文字幕一区二区三区乱码在线| 国产成人综合自拍| 久久精品欧美一区二区三区不卡| 韩国欧美国产一区| 久久久欧美精品sm网站 | 欧美日韩国产高清一区二区三区 | 欧美一区二区福利视频| 亚洲精品乱码久久久久久黑人| 99re8在线精品视频免费播放| 欧美国产欧美亚州国产日韩mv天天看完整 | 天天色天天操综合| 欧美精品欧美精品系列| 日韩不卡一二三区| 日韩视频永久免费| 国内精品视频一区二区三区八戒| 精品国产欧美一区二区| 国产一区二区三区精品视频| 欧美国产激情一区二区三区蜜月 | 蜜臀精品一区二区三区在线观看| 在线播放国产精品二区一二区四区 | 国模无码大尺度一区二区三区| 久久蜜桃av一区二区天堂| 成人国产视频在线观看| 亚洲精选视频免费看| 777午夜精品免费视频| 精品一区二区三区在线播放| 久久精品免费在线观看| 99国产精品国产精品毛片| 亚洲国产欧美一区二区三区丁香婷| 欧美日韩国产另类不卡| 国产乱子伦一区二区三区国色天香| 国产亚洲精久久久久久| 色噜噜狠狠成人中文综合| 日韩电影在线免费看| 久久久久久久久久美女| 色欧美片视频在线观看在线视频| 日韩精品免费视频人成| 久久新电视剧免费观看| 日本二三区不卡| 蜜桃精品视频在线观看| 欧美国产精品一区二区| 欧美人与禽zozo性伦| 91欧美激情一区二区三区成人| 亚洲一区免费在线观看| 欧美天堂亚洲电影院在线播放| 婷婷六月综合亚洲| 中文字幕欧美激情一区| 欧美日韩高清一区| 国产精品自拍av| 亚洲精品成a人| 精品国产一区二区亚洲人成毛片 | 成人精品小蝌蚪| 五月天视频一区| 国产精品免费丝袜| 91精品国产美女浴室洗澡无遮挡| 风间由美一区二区av101 | 欧美一区二区成人| 不卡高清视频专区| 国产精品一区二区你懂的| 性做久久久久久| 亚洲婷婷在线视频| 26uuu欧美| 欧美精品久久久久久久久老牛影院| 成人小视频在线观看| 久久精品噜噜噜成人88aⅴ| 午夜伊人狠狠久久| 亚洲天堂网中文字| 欧美激情一区二区三区四区| 精品国产99国产精品| 337p亚洲精品色噜噜噜| 一本到不卡免费一区二区| 国产精品资源在线观看| 激情综合网av| 久久66热偷产精品| 日产国产高清一区二区三区| 一区二区三区国产精华| 亚洲三级免费电影| 国产精品久久久久久福利一牛影视| 久久理论电影网| 精品美女在线观看| 日韩精品一区二区三区老鸭窝| 欧美日韩国产综合一区二区| 欧美日韩一区久久| 欧美喷潮久久久xxxxx| 欧美绝品在线观看成人午夜影视| 91蜜桃免费观看视频| 色狠狠桃花综合| 色哟哟国产精品| 色综合色综合色综合| 99久久精品国产麻豆演员表| 丁香五精品蜜臀久久久久99网站 | 国产精品福利一区| 中文乱码免费一区二区| 国产精品欧美极品| 亚洲欧美在线视频| 亚洲精品国产一区二区精华液| 亚洲色图清纯唯美| 亚洲精品乱码久久久久久久久 | 精品亚洲porn| 国产91丝袜在线18| 99国产精品久| 欧美在线三级电影| 91精品国产综合久久小美女| 欧美高清性hdvideosex| 欧美一区二区视频在线观看2022| 日韩一级二级三级精品视频| www欧美成人18+| 国产欧美一区二区三区鸳鸯浴| 国产精品毛片无遮挡高清| 一区视频在线播放| 午夜精品久久久| 久久99国产精品成人| a级精品国产片在线观看| 色先锋aa成人| 6080国产精品一区二区| 久久久久久久久99精品| 椎名由奈av一区二区三区| 午夜精品久久久久久久蜜桃app| 免费观看成人av| 国产成人午夜精品5599 | 亚洲成人777| 成人夜色视频网站在线观看| 色综合激情久久| 日韩精品一区二区三区视频播放 | 久久精工是国产品牌吗| 懂色av中文一区二区三区| 欧美在线啊v一区| 精品久久一二三区| 一区二区三区日韩欧美精品| 久久99精品国产麻豆婷婷| 成人国产精品免费| 日韩欧美的一区二区| 亚洲视频一区二区免费在线观看| 日韩电影免费一区| 99在线热播精品免费| 日韩精品一区二区三区在线| 亚洲久草在线视频| 国产精品一线二线三线精华| 欧美视频一区二区三区在线观看| 久久综合久久99| 亚洲va欧美va人人爽| gogogo免费视频观看亚洲一| 日韩一卡二卡三卡国产欧美| 亚洲摸摸操操av| 国产一区二区三区| 日韩一区二区在线播放| 亚洲麻豆国产自偷在线| 国产99久久久国产精品潘金网站| 欧美日韩国产免费| 亚洲免费在线看| 国产91精品在线观看| 日韩一卡二卡三卡国产欧美| 午夜视黄欧洲亚洲| 91欧美一区二区| 亚洲欧美中日韩| caoporen国产精品视频| 久久日韩精品一区二区五区| 日韩电影在线免费观看| 欧美美女网站色| 亚洲高清视频中文字幕| 欧美亚洲动漫精品| 136国产福利精品导航| 国产精品一区二区无线| 欧美一级日韩不卡播放免费| 亚洲国产综合人成综合网站| 99在线精品免费| 国产精品看片你懂得| 国产精品原创巨作av| 久久青草欧美一区二区三区| 激情综合色综合久久综合| 日韩亚洲欧美高清| 日韩精品午夜视频| 69堂国产成人免费视频| 日韩av电影免费观看高清完整版| 欧美女孩性生活视频|