免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2350 | 回复: 3
打印 上一主题 下一主题

关于内核 sk_buff clone [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-12-22 12:29 |只看该作者 |倒序浏览
看协议栈代码的时候,看到 skb_cloned和skb_header_cloned两个函数实现,好像把skb_shinfo(skb)->dataref分作了两部分,
一部分用来高16位记录skb->data的负载的引用计数,低16位记录了整个skb->data的引用计数。
请问
1.这两部分有什么区别?在什么情况下使用?
2.为什么skb_cloned,skb_header_cloned,skb_header_release 的实现对skb_shinfo(skb)->dataref 的处理有什么意义?
/* We divide dataref into two halves.  The higher 16 bits hold references
* to the payload part of skb->data.  The lower 16 bits hold references to
* the entire skb->data.  A clone of a headerless skb holds the length of
* the header in skb->hdr_len.
*
* All users must obey the rule that the skb->data reference count must be
* greater than or equal to the payload reference count.
*
* Holding a reference to the payload part means that the user does not
* care about modifications to the header part of skb->data.
*/
#define SKB_DATAREF_SHIFT 16
#define SKB_DATAREF_MASK ((1 << SKB_DATAREF_SHIFT) - 1)

/**
*   skb_cloned - is the buffer a clone
*   @skb: buffer to check
*
*   Returns true if the buffer was generated with skb_clone() and is
*   one of multiple shared copies of the buffer. Cloned buffers are
*   shared data so must not be written to under normal circumstances.
*/
static inline int skb_cloned(const struct sk_buff *skb)
{
   return skb->cloned &&
          (atomic_read(&skb_shinfo(skb)->dataref) & SKB_DATAREF_MASK) != 1;
}

/**
*   skb_header_cloned - is the header a clone
*   @skb: buffer to check
*
*   Returns true if modifying the header part of the buffer requires
*   the data to be copied.
*/
static inline int skb_header_cloned(const struct sk_buff *skb)
{
   int dataref;
   if (!skb->cloned)
      return 0;
   dataref = atomic_read(&skb_shinfo(skb)->dataref);
   dataref = (dataref & SKB_DATAREF_MASK) - (dataref >> SKB_DATAREF_SHIFT);
   return dataref != 1;
}
/**
*   skb_header_release - release reference to header
*   @skb: buffer to operate on
*
*   Drop a reference to the header part of the buffer.  This is done
*   by acquiring a payload reference.  You must not read from the header
*   part of skb->data after this.
*/
static inline void skb_header_release(struct sk_buff *skb)
{
   BUG_ON(skb->nohdr);
   skb->nohdr = 1;
   atomic_add(1 << SKB_DATAREF_SHIFT, &skb_shinfo(skb)->dataref);
}

论坛徽章:
0
2 [报告]
发表于 2008-12-23 07:23 |只看该作者

怎么没有人 啊?

自己顶

论坛徽章:
0
3 [报告]
发表于 2008-12-23 10:01 |只看该作者

好像和TSO有关。

今天继续查看源码,和TSO有关。
有没有感兴趣的朋友,一起研究。

论坛徽章:
0
4 [报告]
发表于 2008-12-23 19:19 |只看该作者

问题解决了

这个是tso的一部份。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP