美文网首页
DPDK中的同步与互斥

DPDK中的同步与互斥

作者: fooboo | 来源:发表于2017-03-18 21:16 被阅读912次

在dpdk一些代码示例中,有一些使用到了读写锁和原子操作,后者也用于无锁队列的实现。
如原子操作:

139 static inline int
140 rte_atomic32_cmpset(volatile uint32_t *dst, uint32_t exp, uint32_t src)
141 {                         
142     uint8_t res;
143 
144     asm volatile(
145             MPLOCKED
146             "cmpxchgl %[src], %[dst];"
147             "sete %[res];"
148             : [res] "=a" (res),     /* output */
149               [dst] "=m" (*dst)
150             : [src] "r" (src),      /* input */
151               "a" (exp),
152               "m" (*dst)
153             : "memory");            /* no-clobber list */
154     return res;
155 }    //2018-7-14从另一实现修改为当前实现

396 /**         
397  * The atomic counter structure.
398  */         
399 typedef struct {
400     volatile int32_t cnt; /**< An internal counter value. */
401 } rte_atomic32_t;

164 static inline void
165 rte_atomic32_inc(rte_atomic32_t *v)
166 {
167     int t;
168 
169     asm volatile(
170             "1: lwarx %[t],0,%[cnt]\n"
171             "addic %[t],%[t],1\n"
172             "stwcx. %[t],0,%[cnt]\n"
173             "bne- 1b\n"
174             : [t] "=&r" (t), "=m" (v->cnt)
175             : [cnt] "r" (&v->cnt), "m" (v->cnt)
176             : "cc", "xer", "memory");
177 }
178 
179 static inline void
180 rte_atomic32_dec(rte_atomic32_t *v)
181 {
182     int t;
183 
184     asm volatile(
185             "1: lwarx %[t],0,%[cnt]\n"
186             "addic %[t],%[t],-1\n"
187             "stwcx. %[t],0,%[cnt]\n"
188             "bne- 1b\n"
189             : [t] "=&r" (t), "=m" (v->cnt)
190             : [cnt] "r" (&v->cnt), "m" (v->cnt)
191             : "cc", "xer", "memory");
192 }

内嵌汇编代码,volatile关键字的作用可以看下以前写的文章。

而读写锁是一种特殊的自旋锁,能提高并发性,读锁之间共享资源,写锁之间互斥,读写锁互斥;用于临界资源代码短的情况;线程在等资源期间不能被投入睡眠,只能是忙等,不然睡眠和唤醒也是相当费时的。

 56 /**
 57  * The rte_rwlock_t type.
 58  *
 59  * cnt is -1 when write lock is held, and > 0 when read locks are held.
 60  */
 61 typedef struct {
 62     volatile int32_t cnt; /**< -1 when W lock held, > 0 when R locks held. */
 63 } rte_rwlock_t;

118 /**
119  * Take a write lock. Loop until the lock is held.
120  *
121  * @param rwl
122  *   A pointer to a rwlock structure.
123  */
124 static inline void
125 rte_rwlock_write_lock(rte_rwlock_t *rwl)
126 {
127     int32_t x;
128     int success = 0;
129 
130     while (success == 0) {
131         x = rwl->cnt;
132         /* a lock is held */
133         if (x != 0) {
134             rte_pause();
135             continue;
136         }
137         success = rte_atomic32_cmpset((volatile uint32_t *)&rwl->cnt,
138                           0, -1);
139     }
140 }
142 /**
143  * Release a write lock.
144  *
145  * @param rwl
146  *   A pointer to a rwlock structure.
147  */
148 static inline void
149 rte_rwlock_write_unlock(rte_rwlock_t *rwl)
150 {
151     rte_atomic32_inc((rte_atomic32_t *)(intptr_t)&rwl->cnt);
152 }

 82 /**
 83  * Take a read lock. Loop until the lock is held.
 84  *
 85  * @param rwl
 86  *   A pointer to a rwlock structure.
 87  */
 88 static inline void
 89 rte_rwlock_read_lock(rte_rwlock_t *rwl)
 90 {   
 91     int32_t x;
 92     int success = 0;
 93     
 94     while (success == 0) {
 95         x = rwl->cnt;
 96         /* write lock is held */
 97         if (x < 0) {
 98             rte_pause();
 99             continue;
100         }
101         success = rte_atomic32_cmpset((volatile uint32_t *)&rwl->cnt,
102                           x, x + 1);
103     }
104 }
105 
106 /**
107  * Release a read lock.
108  *
109  * @param rwl
110  *   A pointer to the rwlock structure.
111  */
112 static inline void
113 rte_rwlock_read_unlock(rte_rwlock_t *rwl)
114 {   
115     rte_atomic32_dec((rte_atomic32_t *)(intptr_t)&rwl->cnt);
116 }

而普通自旋锁用的比较少,在使用过程中需要注意的是:
不能在获得同一个自旋锁的情况下再获得同一个自旋锁,否则会形成死锁的情况;在获得自旋锁前,禁止中断,防止中断处理程序也获得该自旋锁;
相关实现可参考:http://dpdk.org/doc/api/rte__spinlock_8h.html

https://en.wikipedia.org/wiki/Volatile_(computer_programming)

相关文章

  • DPDK中的同步与互斥

    在dpdk一些代码示例中,有一些使用到了读写锁和原子操作,后者也用于无锁队列的实现。如原子操作: 内嵌汇编代码,v...

  • 第二十六天--[互斥与同步]

    学习内容:互斥与同步收获: 了解了互斥与同步的概念; 了解了互斥锁(mutex)的使用:pthread_mutex...

  • 并发与多线程

    1线程的同步与互斥。解决线程的同步与互斥 synchronied 和cas乐观锁 还有 lockcas是读取数...

  • OpenMP多线程——Parallel for

    多线程——线程同步 数据竞争问题 线程互斥同步——critical 线程互斥同步——atmoic 线程互斥同步——...

  • 可重入锁

    为什么synchronized是重入锁? 互斥同步手段 在Java中,最基本的互斥同步手段就是synchroniz...

  • 线程同步与互斥

    Linux--线程编程 多线程编程-互斥锁 线程同步与互斥 互斥锁 信号量 条件变量 互斥锁 互斥锁的基本使用...

  • 第13章 线程安全与锁优化

    第13章线程安全与锁优化 13.2线程安全 13.2.2线程安全的实现方法 1.互斥同步 互斥同步(Mutual ...

  • 操作系统

    同步互斥 生产者与消费者(既有同步又有互斥) 读者-写者问题(同步) 哲学家进餐问题(同步) 信号量 初始值和当前...

  • 操作系统拾遗--进程同步、互斥

    进程通信 进程通信--进程之间的信息交换,如同步、互斥。 进程通信分为: 低级通信方式:同步与互斥 高级通信方式:...

  • Mutex互斥量的实现代码

    互斥量的实现代码 在你需要互斥的地方,就可以用这个类对象的方法了Android中的同步与Mutex

网友评论

      本文标题:DPDK中的同步与互斥

      本文链接:https://www.haomeiwen.com/subject/rqrpnttx.html