tile: use %*pb[l] to print bitmaps including cpumasks and nodemasks
authorTejun Heo <tj@kernel.org>
Fri, 13 Feb 2015 22:37:09 +0000 (14:37 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sat, 14 Feb 2015 05:21:37 +0000 (21:21 -0800)
printk and friends can now format bitmaps using '%*pb[l]'.  cpumask
and nodemask also provide cpumask_pr_args() and nodemask_pr_args()
respectively which can be used to generate the two printf arguments
necessary to format the specified cpu/nodemask.

Signed-off-by: Tejun Heo <tj@kernel.org>
Cc: Chris Metcalf <cmetcalf@tilera.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
arch/tile/kernel/hardwall.c
arch/tile/kernel/proc.c
arch/tile/kernel/setup.c
arch/tile/mm/homecache.c
arch/tile/mm/init.c
drivers/net/ethernet/tile/tilegx.c
drivers/net/ethernet/tile/tilepro.c

index c4646bb99342b3e35257fd01bde300433e9dacf9..2fd1694ac1d03ee6b40524cae990716b761fafe6 100644 (file)
@@ -909,11 +909,8 @@ static void hardwall_destroy(struct hardwall_info *info)
 static int hardwall_proc_show(struct seq_file *sf, void *v)
 {
        struct hardwall_info *info = sf->private;
-       char buf[256];
 
-       int rc = cpulist_scnprintf(buf, sizeof(buf), &info->cpumask);
-       buf[rc++] = '\n';
-       seq_write(sf, buf, rc);
+       seq_printf(sf, "%*pbl\n", cpumask_pr_args(&info->cpumask));
        return 0;
 }
 
index 6829a9508649a593bc18a52d9615ee5b5170f42d..7983e9868df670155e9bd210594f2a7977e978ad 100644 (file)
@@ -45,10 +45,9 @@ static int show_cpuinfo(struct seq_file *m, void *v)
        int n = ptr_to_cpu(v);
 
        if (n == 0) {
-               char buf[NR_CPUS*5];
-               cpulist_scnprintf(buf, sizeof(buf), cpu_online_mask);
                seq_printf(m, "cpu count\t: %d\n", num_online_cpus());
-               seq_printf(m, "cpu list\t: %s\n", buf);
+               seq_printf(m, "cpu list\t: %*pbl\n",
+                          cpumask_pr_args(cpu_online_mask));
                seq_printf(m, "model name\t: %s\n", chip_model);
                seq_printf(m, "flags\t\t:\n");  /* nothing for now */
                seq_printf(m, "cpu MHz\t\t: %llu.%06llu\n",
index 864eea69556dcd5d9900fd75d05e38a3500aaadc..f1f57991495235dc2578048caca0b6c5be3c0beb 100644 (file)
@@ -215,12 +215,11 @@ early_param("mem", setup_mem);  /* compatibility with x86 */
 
 static int __init setup_isolnodes(char *str)
 {
-       char buf[MAX_NUMNODES * 5];
        if (str == NULL || nodelist_parse(str, isolnodes) != 0)
                return -EINVAL;
 
-       nodelist_scnprintf(buf, sizeof(buf), isolnodes);
-       pr_info("Set isolnodes value to '%s'\n", buf);
+       pr_info("Set isolnodes value to '%*pbl'\n",
+               nodemask_pr_args(&isolnodes));
        return 0;
 }
 early_param("isolnodes", setup_isolnodes);
@@ -1315,11 +1314,9 @@ early_param("disabled_cpus", disabled_cpus);
 
 void __init print_disabled_cpus(void)
 {
-       if (!cpumask_empty(&disabled_map)) {
-               char buf[100];
-               cpulist_scnprintf(buf, sizeof(buf), &disabled_map);
-               pr_info("CPUs not available for Linux: %s\n", buf);
-       }
+       if (!cpumask_empty(&disabled_map))
+               pr_info("CPUs not available for Linux: %*pbl\n",
+                       cpumask_pr_args(&disabled_map));
 }
 
 static void __init setup_cpu_maps(void)
index 0029b3fb651b347074946d2e8f524d6622c5b622..40ca30a9fee33eae72ab1221e2084732be7a6006 100644 (file)
@@ -115,7 +115,6 @@ void flush_remote(unsigned long cache_pfn, unsigned long cache_control,
        struct cpumask cache_cpumask_copy, tlb_cpumask_copy;
        struct cpumask *cache_cpumask, *tlb_cpumask;
        HV_PhysAddr cache_pa;
-       char cache_buf[NR_CPUS*5], tlb_buf[NR_CPUS*5];
 
        mb();   /* provided just to simplify "magic hypervisor" mode */
 
@@ -149,13 +148,12 @@ void flush_remote(unsigned long cache_pfn, unsigned long cache_control,
                             asids, asidcount);
        if (rc == 0)
                return;
-       cpumask_scnprintf(cache_buf, sizeof(cache_buf), &cache_cpumask_copy);
-       cpumask_scnprintf(tlb_buf, sizeof(tlb_buf), &tlb_cpumask_copy);
 
-       pr_err("hv_flush_remote(%#llx, %#lx, %p [%s], %#lx, %#lx, %#lx, %p [%s], %p, %d) = %d\n",
-              cache_pa, cache_control, cache_cpumask, cache_buf,
-              (unsigned long)tlb_va, tlb_length, tlb_pgsize,
-              tlb_cpumask, tlb_buf, asids, asidcount, rc);
+       pr_err("hv_flush_remote(%#llx, %#lx, %p [%*pb], %#lx, %#lx, %#lx, %p [%*pb], %p, %d) = %d\n",
+              cache_pa, cache_control, cache_cpumask,
+              cpumask_pr_args(&cache_cpumask_copy),
+              (unsigned long)tlb_va, tlb_length, tlb_pgsize, tlb_cpumask,
+              cpumask_pr_args(&tlb_cpumask_copy), asids, asidcount, rc);
        panic("Unsafe to continue.");
 }
 
index be240cc4978db1840861a5fed2329c468bb629f1..ace32d7d3864c480cb0e51b1694f01e1559d947f 100644 (file)
@@ -353,15 +353,13 @@ static int __init setup_ktext(char *str)
 
        /* Neighborhood ktext pages on specified mask */
        else if (cpulist_parse(str, &ktext_mask) == 0) {
-               char buf[NR_CPUS * 5];
-               cpulist_scnprintf(buf, sizeof(buf), &ktext_mask);
                if (cpumask_weight(&ktext_mask) > 1) {
                        ktext_small = 1;
-                       pr_info("ktext: using caching neighborhood %s with small pages\n",
-                               buf);
+                       pr_info("ktext: using caching neighborhood %*pbl with small pages\n",
+                               cpumask_pr_args(&ktext_mask));
                } else {
-                       pr_info("ktext: caching on cpu %s with one huge page\n",
-                               buf);
+                       pr_info("ktext: caching on cpu %*pbl with one huge page\n",
+                               cpumask_pr_args(&ktext_mask));
                }
        }
 
@@ -492,11 +490,9 @@ static void __init kernel_physical_mapping_init(pgd_t *pgd_base)
                struct cpumask bad;
                cpumask_andnot(&bad, &ktext_mask, cpu_possible_mask);
                cpumask_and(&ktext_mask, &ktext_mask, cpu_possible_mask);
-               if (!cpumask_empty(&bad)) {
-                       char buf[NR_CPUS * 5];
-                       cpulist_scnprintf(buf, sizeof(buf), &bad);
-                       pr_info("ktext: not using unavailable cpus %s\n", buf);
-               }
+               if (!cpumask_empty(&bad))
+                       pr_info("ktext: not using unavailable cpus %*pbl\n",
+                               cpumask_pr_args(&bad));
                if (cpumask_empty(&ktext_mask)) {
                        pr_warn("ktext: no valid cpus; caching on %d\n",
                                smp_processor_id());
index 049747f558c95f8131df16773c20bb42bceed8c2..bea8cd2bb56cf85b92132ea69ea90f08e6dfc5f7 100644 (file)
@@ -292,7 +292,6 @@ static inline int mpipe_instance(struct net_device *dev)
  */
 static bool network_cpus_init(void)
 {
-       char buf[1024];
        int rc;
 
        if (network_cpus_string == NULL)
@@ -314,8 +313,8 @@ static bool network_cpus_init(void)
                return false;
        }
 
-       cpulist_scnprintf(buf, sizeof(buf), &network_cpus_map);
-       pr_info("Linux network CPUs: %s\n", buf);
+       pr_info("Linux network CPUs: %*pbl\n",
+               cpumask_pr_args(&network_cpus_map));
        return true;
 }
 
index fb12d31cfcf6342b481e5dfcabcb4fa0a83fea22..3d8f60d9643e45c3876c910a59c0c59f5d727a7c 100644 (file)
@@ -2410,9 +2410,8 @@ static int __init network_cpus_setup(char *str)
                if (cpumask_empty(&network_cpus_map)) {
                        pr_warn("Ignoring network_cpus='%s'\n", str);
                } else {
-                       char buf[1024];
-                       cpulist_scnprintf(buf, sizeof(buf), &network_cpus_map);
-                       pr_info("Linux network CPUs: %s\n", buf);
+                       pr_info("Linux network CPUs: %*pbl\n",
+                               cpumask_pr_args(&network_cpus_map));
                        network_cpus_used = true;
                }
        }