该昵称已屏蔽
    同样是人,咋差别这么大!!!!哎...望尘莫及 看不懂
    Binder从入门到放弃(下)  发表时间:2020-03-26 09:34
    k_th111
    Hi wowo, 请问在设备用IRK解析RPA得到localHash后,再与hash value extracted from RPA 比较时,这里使用的提取RPA是对等设备传给它的广播包里的RPA吗?那么解析表条目中的“Peer Device Identity Address | Address Type”发挥什么作用呢?这里不理解,想请教大神们。
    蓝牙协议分析(9)_BLE安全机制之LL Privacy  发表时间:2020-03-26 09:16
    Xavior
    @hayden:这里的中断只是为了说明,CPU乱序执行不会对使用barrier()造成影响
    Linux内核同步机制之(三):memory barrier  发表时间:2020-03-25 16:32
    内存屏障
    尊敬额博主: 当我读Why Memory Barriers?中文翻译(上)的时候遇到了两个问题: 1.引入Invalidate Queue的例子 1 void foo(void) 2 { 3 a = 1; 4 smp_mb(); 5 b = 1; 6 } 7 8 void bar(void) 9 { 10 while (b == 0) continue; 11 assert(a == 1); 12 } (4) CPU 0 receives the response from CPU 1, and is therefore free to proceed past the smp_mb() on line 4 above, moving the value of “a” from its store buffer to its cache line. CPU 0收到了CPU 1的invalidate ACK之后,即可以越过程序设定内存屏障(第四行代码的smp_mb() ),这样a的新值从store buffer进入cacheline,状态变成Modified。 在第4步描述:为什么CPU 0收到了CPU 1的invalidate ACK之后,即可以越过程序设定内存屏障 2.加入读写屏障的一个问题 1 void foo(void) 2 { 3 a = 1; 4 smp_mb(); 5 b = 1; 6 } 7 8 void bar(void) 9 { 10 while (b == 0) continue; 11 smp_mb(); 12 assert(a == 1); 13 } 原文是先执行5再执行6 (5) CPU 0 executes b = 1. It already owns this cache line (in other words, the cache line is already in either the “modified” or the “exclusive” state), so it stores the new value of “b” in its cache line. CPU 0 越过memory barrier后继续执行b=1的赋值操作(这时候该cacheline或者处于modified状态,或者处于exclusive状态),由于b值在CPU 0的local cache中,因此store操作完成并进入cache line。 (6) CPU 0 receives the “read” message, and transmits the cache line containing the now-updated value of “b” to CPU 1, also marking the line as “shared” in its own cache. CPU 0收到了read消息后将b的最新值“1”回送给CPU 1,并修正该cacheline为shared状态。 有没有这种情况先执行6再执行5,如果是这样的话第10步while (b == 0) 这个循环是不是就无法跳出了,11-12永远不能执行了
    Why Memory Barriers?中文翻译(上)  发表时间:2020-03-23 09:46
    heaven
    @gavin:解决方案就是按照芯片时序,满足reset的时间要求,也就是需延时处理即可。 解决思路我有写下来,1~5就是我分析的过程,我一开始也是不知道为什么是这里,因为是第一次做以太网这块的问题,所以就趁此机会把ifconfig的整个流程通读了一遍,清楚了来龙去脉其实就比较好分析了
    以太网驱动的流程浅析(一)-Ifconfig主要流程  发表时间:2020-03-22 21:23
    南方的风
    最近要做蓝牙方面的工作,楼主写的这些文章真是帮了大忙!真心感谢!
    蓝牙协议分析(1)_基本概念  发表时间:2020-03-22 13:51
    hyde
    请问下微信是多少,我想加你了解下
    zRAM内存压缩技术原理与应用  发表时间:2020-03-19 17:17
    jake
    wowo大神太厉害了,不经意发现了你的宝藏博客。最近一直在拜读,每篇都很有思想,全是干货。学到了很多,多谢,多谢。
    u-boot FIT image介绍  发表时间:2020-03-19 17:09
    Since
    写的很棒,都是经验之谈
    致驱动工程师的一封信  发表时间:2020-03-16 18:06
    Saturn
    @Alex.Rowe:http://infocenter.arm.com/help/topic/com.arm.doc.dht0008a/DHT0008A_arm_synchronization_primitives.pdf 针对这个问题,这份文档(page:1-7)里面有描述。上下文切换的时候local monitor会重置。 Resetting monitors When an operating system performs a context switch, it must reset the local monitor to open state, to prevent false positives occurrig。
    Linux内核同步机制之(一):原子操作  发表时间:2020-03-12 17:45

共7862条77/787上一页 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 7778 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 下一页
Copyright @ 2013-2015 蜗窝科技 All rights reserved. Powered by emlog