Date: Mon, 9 Mar 2020 02:30:16 +0000 (UTC) From: Emmanuel Vadot <manu@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r358799 - head/sys/dev/cpufreq Message-ID: <202003090230.0292UGD5007180@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: manu Date: Mon Mar 9 02:30:16 2020 New Revision: 358799 URL: https://svnweb.freebsd.org/changeset/base/358799 Log: cpufreq_dt: Fix r358555 Before skipping the current cpu when trying to find the ones that have the same opp, record that this one have this opp. Reported by: mmel MFC after: 2 weeks X-MFC-With: r358555 Modified: head/sys/dev/cpufreq/cpufreq_dt.c Modified: head/sys/dev/cpufreq/cpufreq_dt.c ============================================================================== --- head/sys/dev/cpufreq/cpufreq_dt.c Mon Mar 9 01:57:21 2020 (r358798) +++ head/sys/dev/cpufreq/cpufreq_dt.c Mon Mar 9 02:30:16 2020 (r358799) @@ -519,7 +519,7 @@ cpufreq_dt_attach(device_t dev) continue; if (cpu == sc->cpu) { DEBUG(dev, "Skipping our cpu\n"); - cpu++; + CPU_SET(cpu++, &sc->cpus); continue; } DEBUG(dev, "Testing CPU %d\n", cpu);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202003090230.0292UGD5007180>