Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-2.6-ktest

* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-2.6-ktest:
ktest: Ignore unset values of the minconfig in config_bisect
ktest: Fix result of rebooting the kernel
ktest: Fix off-by-one in config bisect result

+4 -4
+4 -4
tools/testing/ktest/ktest.pl
··· 788 788 789 789 sub reboot_to { 790 790 if ($reboot_type eq "grub") { 791 - run_ssh "'(echo \"savedefault --default=$grub_number --once\" | grub --batch; reboot)'"; 791 + run_ssh "'(echo \"savedefault --default=$grub_number --once\" | grub --batch && reboot)'"; 792 792 return; 793 793 } 794 794 ··· 1480 1480 or dodie "Failed to read $config"; 1481 1481 1482 1482 while (<IN>) { 1483 - if (/^(.*?(CONFIG\S*)(=.*| is not set))/) { 1483 + if (/^((CONFIG\S*)=.*)/) { 1484 1484 $config_ignore{$2} = $1; 1485 1485 } 1486 1486 } ··· 1638 1638 if (!$found) { 1639 1639 # try the other half 1640 1640 doprint "Top half produced no set configs, trying bottom half\n"; 1641 - @tophalf = @start_list[$half .. $#start_list]; 1641 + @tophalf = @start_list[$half + 1 .. $#start_list]; 1642 1642 create_config @tophalf; 1643 1643 read_current_config \%current_config; 1644 1644 foreach my $config (@tophalf) { ··· 1690 1690 # remove half the configs we are looking at and see if 1691 1691 # they are good. 1692 1692 $half = int($#start_list / 2); 1693 - } while ($half > 0); 1693 + } while ($#start_list > 0); 1694 1694 1695 1695 # we found a single config, try it again unless we are running manually 1696 1696