张小花
    @wowo:谢谢wowo 原来它的目的是为了解决slab_alloc_node中Fastpath下进程迁移的问题. 对于Slowpath则用另一套方案:关中断并重新读取当前CPU的kmem_cache. 但是 while (IS_ENABLED(CONFIG_PREEMPT) && unlikely(tid != READ_ONCE(c->tid))); 中, tid != READ_ONCE(c->tid)不同的CPU也可能相等啊,也就是说此While循环并不能百分百的保证tid和kmem_cache属于同一个CPU吧?
    slub分配器  发表时间:2017-08-08 14:54
    Se7en
    @Chaotian:恩,我觉得这段有道理^_^,这段test code看起来没办法证明softirq里面schedule出去,再shedule回来后,irq context还是不是原来的那个context,也可能是新mod出来的timer导致看起来是"schedule 回来了",但其实此softirq context已经是非彼softirq context了,在schedule()后面print一个计数变量,也许可以证明这点 简而言之,目前kernel到底会不会保留irq context,如果会,才可能有schedule回来的可能 (只是kernel愿不愿意实现这部分为可schedule的),如果不会,应该是没可能才对 (比如,irq context执行当下的register值,如果没有保留下来,应该是无法schedule回来吧,现场都已经没了) ^_^ ^_^
    中断上下文中调度会怎样?  发表时间:2017-08-08 14:39
    wowo
    @张小花:是的。 这个注释已经说的很明白了: * We should guarantee that tid and kmem_cache are retrieved on * the same cpu. It could be different if CONFIG_PREEMPT so we need * to check if it is matched or not. 就是要保证tid和kmem_cache属于同一个CPU。 无论此时发生了多少抢占,一直等到相同,再配合后面的barrier(),就能达到目的。
    slub分配器  发表时间:2017-08-08 14:14
    wowo
    @hw_boboy:把打印都打开,加上时间戳,看看那部分代码耗时较久。 如果还找不到,就手动的添加打印,知道找到为止。
    系统休眠(System Suspend)和设备中断处理  发表时间:2017-08-08 14:04
    wowo
    @zoe_man:BD_ADDR都是空的了,还有什么好说的啊!查这个问题就是了。至于为什么,我还想问你呢(偷笑:-)
    蓝牙协议分析(7)_BLE连接有关的技术分析  发表时间:2017-08-08 14:02
    wowo
    @随风律动:这些map信息都是在probe(insmod)的时候动态生成的,按理不会有问题,是不是相关的退出机制不完善(这个模块或者pinctrl driver),重点检查一下。 PS:问题太细节了,估计也帮不到什么,见谅~~~
    笨叔叔
    《奔跑吧Linux内核》 几大网店已经上架预售了喔,有喜欢的小伙伴可以入手啦: 京东:http://item.jd.com/12152745.html?dist=jd 亚马逊:https://www.amazon.cn/dp/B074JV6WGN/ref=sr_1_1?ie=UTF8&qid=1502099486&sr=8-1 异步社区:http://www.epubit.com.cn/book/details/4835 当当:http://product.dangdang.com/25138842.html 欢迎大家到时候给出批评和吊打意见喔!
    《奔跑吧,Linux内核》已经上架预售了  发表时间:2017-08-08 13:35
    hw_boboy
    Hi, 我们的设备在启动的时候,有时候中间会停个30s左右再继续启动。(已经过了uboot阶段) 这个情况不是每次都会这样,能帮忙猜测一下是什么原因?或者有什么好的办法可以debug? 谢谢!
    系统休眠(System Suspend)和设备中断处理  发表时间:2017-08-08 11:51
    张小花
    //http://elixir.free-electrons.com/linux/latest/source/mm/slub.c#L2636 static __always_inline void *slab_alloc_node(struct kmem_cache *s, gfp_t gfpflags, int node, unsigned long addr) { void *object; struct kmem_cache_cpu *c; struct page *page; unsigned long tid; //钩子函数 可以做一些事情 比如测试和mmcgroup? s = slab_pre_alloc_hook(s, gfpflags); if (!s) return NULL; redo: /* * Must read kmem_cache cpu data via this cpu ptr. Preemption is * enabled. We may switch back and forth between cpus while * reading from one cpu area. That does not matter as long * as we end up on the original cpu again when doing the cmpxchg. * * We should guarantee that tid and kmem_cache are retrieved on * the same cpu. It could be different if CONFIG_PREEMPT so we need * to check if it is matched or not. */ //看了一段时间 看不懂这里为何这么写 do { tid = this_cpu_read(s->cpu_slab->tid); c = raw_cpu_ptr(s->cpu_slab); } while (IS_ENABLED(CONFIG_PREEMPT) && unlikely(tid != READ_ONCE(c->tid))); 这个问题是不是可以归纳为:内核是如何解决在slab函数期间发生中断导致抢占与进程迁移的问题?
    slub分配器  发表时间:2017-08-08 11:01
    zoe_man
    @wowo:@wowo:您好!是怀疑发出的包有问题吗?可以确定Slaver发出的广播包没问题。但有一点异常,发起连接时BD_ADDR是空的,正常情况下BD_ADDR应该存在才对,不知道这是为什么?望解答。 谢谢!
    蓝牙协议分析(7)_BLE连接有关的技术分析  发表时间:2017-08-08 10:14

共7862条257/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 77 78 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 257258 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