Whamcloud - gitweb
Branch HEAD
authorbobijam <bobijam>
Mon, 8 Oct 2007 03:25:55 +0000 (03:25 +0000)
committerbobijam <bobijam>
Mon, 8 Oct 2007 03:25:55 +0000 (03:25 +0000)
b=12744
i=johann, adilger

NR_CPUS/smp_num_cpus -> num_possible_cpus().

lustre/mds/handler.c
lustre/ost/ost_handler.c
lustre/ptlrpc/service.c

index 8cbed31..9ab8f63 100644 (file)
@@ -2543,7 +2543,7 @@ static int mdt_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
                 mds_max_threads = mds_min_threads = mds_num_threads;
         } else {
                 /* Base min threads on memory and cpus */
-                mds_min_threads = smp_num_cpus * num_physpages >> 
+                mds_min_threads = num_possible_cpus() * num_physpages >> 
                         (27 - CFS_PAGE_SHIFT);
                 if (mds_min_threads < MDS_THREADS_MIN)
                         mds_min_threads = MDS_THREADS_MIN;
index cf051b4..ddbe389 100644 (file)
@@ -1777,7 +1777,7 @@ static int ost_setup(struct obd_device *obd, struct lustre_cfg* lcfg)
                 oss_max_threads = oss_min_threads = oss_num_threads;
         } else {
                 /* Base min threads on memory and cpus */
-                oss_min_threads = smp_num_cpus * num_physpages >> 
+                oss_min_threads = num_possible_cpus() * num_physpages >> 
                         (27 - CFS_PAGE_SHIFT);
                 if (oss_min_threads < OSS_THREADS_MIN)
                         oss_min_threads = OSS_THREADS_MIN;
index feb542b..2f3b02f 100644 (file)
@@ -979,7 +979,7 @@ static int ptlrpc_main(void *arg)
         if (svc->srv_cpu_affinity) {
                 int cpu, num_cpu;
 
-                for (cpu = 0, num_cpu = 0; cpu < NR_CPUS; cpu++) {
+                for (cpu = 0, num_cpu = 0; cpu < num_possible_cpus(); cpu++) {
                         if (!cpu_online(cpu))
                                 continue;
                         if (num_cpu == thread->t_id % num_online_cpus())