array.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:16k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/fs/proc/array.c
  3.  *
  4.  *  Copyright (C) 1992  by Linus Torvalds
  5.  *  based on ideas by Darren Senn
  6.  *
  7.  * Fixes:
  8.  * Michael. K. Johnson: stat,statm extensions.
  9.  *                      <johnsonm@stolaf.edu>
  10.  *
  11.  * Pauline Middelink :  Made cmdline,envline only break at ''s, to
  12.  *                      make sure SET_PROCTITLE works. Also removed
  13.  *                      bad '!' which forced address recalculation for
  14.  *                      EVERY character on the current page.
  15.  *                      <middelin@polyware.iaf.nl>
  16.  *
  17.  * Danny ter Haar    : added cpuinfo
  18.  * <dth@cistron.nl>
  19.  *
  20.  * Alessandro Rubini :  profile extension.
  21.  *                      <rubini@ipvvis.unipv.it>
  22.  *
  23.  * Jeff Tranter      :  added BogoMips field to cpuinfo
  24.  *                      <Jeff_Tranter@Mitel.COM>
  25.  *
  26.  * Bruno Haible      :  remove 4K limit for the maps file
  27.  * <haible@ma2s2.mathematik.uni-karlsruhe.de>
  28.  *
  29.  * Yves Arrouye      :  remove removal of trailing spaces in get_array.
  30.  * <Yves.Arrouye@marin.fdn.fr>
  31.  *
  32.  * Jerome Forissier  :  added per-CPU time information to /proc/stat
  33.  *                      and /proc/<pid>/cpu extension
  34.  *                      <forissier@isia.cma.fr>
  35.  * - Incorporation and non-SMP safe operation
  36.  * of forissier patch in 2.1.78 by
  37.  * Hans Marcus <crowbar@concepts.nl>
  38.  *
  39.  * aeb@cwi.nl        :  /proc/partitions
  40.  *
  41.  *
  42.  * Alan Cox      :  security fixes.
  43.  * <Alan.Cox@linux.org>
  44.  *
  45.  * Al Viro           :  safe handling of mm_struct
  46.  *
  47.  * Gerhard Wichert   :  added BIGMEM support
  48.  * Siemens AG           <Gerhard.Wichert@pdb.siemens.de>
  49.  *
  50.  * Al Viro & Jeff Garzik :  moved most of the thing into base.c and
  51.  *  :  proc_misc.c. The rest may eventually go into
  52.  *  :  base.c too.
  53.  */
  54. #include <linux/config.h>
  55. #include <linux/types.h>
  56. #include <linux/errno.h>
  57. #include <linux/sched.h>
  58. #include <linux/kernel.h>
  59. #include <linux/kernel_stat.h>
  60. #include <linux/tty.h>
  61. #include <linux/string.h>
  62. #include <linux/mman.h>
  63. #include <linux/proc_fs.h>
  64. #include <linux/ioport.h>
  65. #include <linux/mm.h>
  66. #include <linux/pagemap.h>
  67. #include <linux/swap.h>
  68. #include <linux/slab.h>
  69. #include <linux/smp.h>
  70. #include <linux/signal.h>
  71. #include <linux/highmem.h>
  72. #include <asm/uaccess.h>
  73. #include <asm/pgtable.h>
  74. #include <asm/io.h>
  75. #include <asm/processor.h>
  76. /* Gcc optimizes away "strlen(x)" for constant x */
  77. #define ADDBUF(buffer, string) 
  78. do { memcpy(buffer, string, strlen(string)); 
  79.      buffer += strlen(string); } while (0)
  80. static inline char * task_name(struct task_struct *p, char * buf)
  81. {
  82. int i;
  83. char * name;
  84. ADDBUF(buf, "Name:t");
  85. name = p->comm;
  86. i = sizeof(p->comm);
  87. do {
  88. unsigned char c = *name;
  89. name++;
  90. i--;
  91. *buf = c;
  92. if (!c)
  93. break;
  94. if (c == '\') {
  95. buf[1] = c;
  96. buf += 2;
  97. continue;
  98. }
  99. if (c == 'n') {
  100. buf[0] = '\';
  101. buf[1] = 'n';
  102. buf += 2;
  103. continue;
  104. }
  105. buf++;
  106. } while (i);
  107. *buf = 'n';
  108. return buf+1;
  109. }
  110. /*
  111.  * The task state array is a strange "bitmap" of
  112.  * reasons to sleep. Thus "running" is zero, and
  113.  * you can test for combinations of others with
  114.  * simple bit tests.
  115.  */
  116. static const char *task_state_array[] = {
  117. "R (running)", /*  0 */
  118. "S (sleeping)", /*  1 */
  119. "D (disk sleep)", /*  2 */
  120. "Z (zombie)", /*  4 */
  121. "T (stopped)", /*  8 */
  122. "W (paging)" /* 16 */
  123. };
  124. static inline const char * get_task_state(struct task_struct *tsk)
  125. {
  126. unsigned int state = tsk->state & (TASK_RUNNING |
  127.    TASK_INTERRUPTIBLE |
  128.    TASK_UNINTERRUPTIBLE |
  129.    TASK_ZOMBIE |
  130.    TASK_STOPPED);
  131. const char **p = &task_state_array[0];
  132. while (state) {
  133. p++;
  134. state >>= 1;
  135. }
  136. return *p;
  137. }
  138. static inline char * task_state(struct task_struct *p, char *buffer)
  139. {
  140. int g;
  141. read_lock(&tasklist_lock);
  142. buffer += sprintf(buffer,
  143. "State:t%sn"
  144. "Tgid:t%dn"
  145. "Pid:t%dn"
  146. "PPid:t%dn"
  147. "TracerPid:t%dn"
  148. "Uid:t%dt%dt%dt%dn"
  149. "Gid:t%dt%dt%dt%dn",
  150. get_task_state(p), p->tgid,
  151. p->pid, p->pid ? p->p_opptr->pid : 0, 0,
  152. p->uid, p->euid, p->suid, p->fsuid,
  153. p->gid, p->egid, p->sgid, p->fsgid);
  154. read_unlock(&tasklist_lock);
  155. task_lock(p);
  156. buffer += sprintf(buffer,
  157. "FDSize:t%dn"
  158. "Groups:t",
  159. p->files ? p->files->max_fds : 0);
  160. task_unlock(p);
  161. for (g = 0; g < p->ngroups; g++)
  162. buffer += sprintf(buffer, "%d ", p->groups[g]);
  163. buffer += sprintf(buffer, "n");
  164. return buffer;
  165. }
  166. static inline char * task_mem(struct mm_struct *mm, char *buffer)
  167. {
  168. struct vm_area_struct * vma;
  169. unsigned long data = 0, stack = 0;
  170. unsigned long exec = 0, lib = 0;
  171. down_read(&mm->mmap_sem);
  172. for (vma = mm->mmap; vma; vma = vma->vm_next) {
  173. unsigned long len = (vma->vm_end - vma->vm_start) >> 10;
  174. if (!vma->vm_file) {
  175. data += len;
  176. if (vma->vm_flags & VM_GROWSDOWN)
  177. stack += len;
  178. continue;
  179. }
  180. if (vma->vm_flags & VM_WRITE)
  181. continue;
  182. if (vma->vm_flags & VM_EXEC) {
  183. exec += len;
  184. if (vma->vm_flags & VM_EXECUTABLE)
  185. continue;
  186. lib += len;
  187. }
  188. }
  189. buffer += sprintf(buffer,
  190. "VmSize:t%8lu kBn"
  191. "VmLck:t%8lu kBn"
  192. "VmRSS:t%8lu kBn"
  193. "VmData:t%8lu kBn"
  194. "VmStk:t%8lu kBn"
  195. "VmExe:t%8lu kBn"
  196. "VmLib:t%8lu kBn",
  197. mm->total_vm << (PAGE_SHIFT-10),
  198. mm->locked_vm << (PAGE_SHIFT-10),
  199. mm->rss << (PAGE_SHIFT-10),
  200. data - stack, stack,
  201. exec - lib, lib);
  202. up_read(&mm->mmap_sem);
  203. return buffer;
  204. }
  205. static void collect_sigign_sigcatch(struct task_struct *p, sigset_t *ign,
  206.     sigset_t *catch)
  207. {
  208. struct k_sigaction *k;
  209. int i;
  210. sigemptyset(ign);
  211. sigemptyset(catch);
  212. spin_lock_irq(&p->sigmask_lock);
  213. if (p->sig) {
  214. k = p->sig->action;
  215. for (i = 1; i <= _NSIG; ++i, ++k) {
  216. if (k->sa.sa_handler == SIG_IGN)
  217. sigaddset(ign, i);
  218. else if (k->sa.sa_handler != SIG_DFL)
  219. sigaddset(catch, i);
  220. }
  221. }
  222. spin_unlock_irq(&p->sigmask_lock);
  223. }
  224. static inline char * task_sig(struct task_struct *p, char *buffer)
  225. {
  226. sigset_t ign, catch;
  227. buffer += sprintf(buffer, "SigPnd:t");
  228. buffer = render_sigset_t(&p->pending.signal, buffer);
  229. *buffer++ = 'n';
  230. buffer += sprintf(buffer, "SigBlk:t");
  231. buffer = render_sigset_t(&p->blocked, buffer);
  232. *buffer++ = 'n';
  233. collect_sigign_sigcatch(p, &ign, &catch);
  234. buffer += sprintf(buffer, "SigIgn:t");
  235. buffer = render_sigset_t(&ign, buffer);
  236. *buffer++ = 'n';
  237. buffer += sprintf(buffer, "SigCgt:t"); /* Linux 2.0 uses "SigCgt" */
  238. buffer = render_sigset_t(&catch, buffer);
  239. *buffer++ = 'n';
  240. return buffer;
  241. }
  242. static inline char *task_cap(struct task_struct *p, char *buffer)
  243. {
  244.     return buffer + sprintf(buffer, "CapInh:t%016xn"
  245.     "CapPrm:t%016xn"
  246.     "CapEff:t%016xn",
  247.     cap_t(p->cap_inheritable),
  248.     cap_t(p->cap_permitted),
  249.     cap_t(p->cap_effective));
  250. }
  251. int proc_pid_status(struct task_struct *task, char * buffer)
  252. {
  253. char * orig = buffer;
  254. struct mm_struct *mm;
  255. buffer = task_name(task, buffer);
  256. buffer = task_state(task, buffer);
  257. task_lock(task);
  258. mm = task->mm;
  259. if(mm)
  260. atomic_inc(&mm->mm_users);
  261. task_unlock(task);
  262. if (mm) {
  263. buffer = task_mem(mm, buffer);
  264. mmput(mm);
  265. }
  266. buffer = task_sig(task, buffer);
  267. buffer = task_cap(task, buffer);
  268. #if defined(CONFIG_ARCH_S390)
  269. buffer = task_show_regs(task, buffer);
  270. #endif
  271. return buffer - orig;
  272. }
  273. int proc_pid_stat(struct task_struct *task, char * buffer)
  274. {
  275. unsigned long vsize, eip, esp, wchan;
  276. long priority, nice;
  277. int tty_pgrp = -1, tty_nr = 0;
  278. sigset_t sigign, sigcatch;
  279. char state;
  280. int res;
  281. pid_t ppid;
  282. struct mm_struct *mm;
  283. state = *get_task_state(task);
  284. vsize = eip = esp = 0;
  285. task_lock(task);
  286. mm = task->mm;
  287. if(mm)
  288. atomic_inc(&mm->mm_users);
  289. if (task->tty) {
  290. tty_pgrp = task->tty->pgrp;
  291. tty_nr = kdev_t_to_nr(task->tty->device);
  292. }
  293. task_unlock(task);
  294. if (mm) {
  295. struct vm_area_struct *vma;
  296. down_read(&mm->mmap_sem);
  297. vma = mm->mmap;
  298. while (vma) {
  299. vsize += vma->vm_end - vma->vm_start;
  300. vma = vma->vm_next;
  301. }
  302. eip = KSTK_EIP(task);
  303. esp = KSTK_ESP(task);
  304. up_read(&mm->mmap_sem);
  305. }
  306. wchan = get_wchan(task);
  307. collect_sigign_sigcatch(task, &sigign, &sigcatch);
  308. /* scale priority and nice values from timeslices to -20..20 */
  309. /* to make it look like a "normal" Unix priority/nice value  */
  310. priority = task->counter;
  311. priority = 20 - (priority * 10 + DEF_COUNTER / 2) / DEF_COUNTER;
  312. nice = task->nice;
  313. read_lock(&tasklist_lock);
  314. ppid = task->pid ? task->p_opptr->pid : 0;
  315. read_unlock(&tasklist_lock);
  316. res = sprintf(buffer,"%d (%s) %c %d %d %d %d %d %lu %lu 
  317. %lu %lu %lu %lu %lu %ld %ld %ld %ld %ld %ld %lu %lu %ld %lu %lu %lu %lu %lu 
  318. %lu %lu %lu %lu %lu %lu %lu %lu %d %dn",
  319. task->pid,
  320. task->comm,
  321. state,
  322. ppid,
  323. task->pgrp,
  324. task->session,
  325.         tty_nr,
  326. tty_pgrp,
  327. task->flags,
  328. task->min_flt,
  329. task->cmin_flt,
  330. task->maj_flt,
  331. task->cmaj_flt,
  332. task->times.tms_utime,
  333. task->times.tms_stime,
  334. task->times.tms_cutime,
  335. task->times.tms_cstime,
  336. priority,
  337. nice,
  338. 0UL /* removed */,
  339. task->it_real_value,
  340. task->start_time,
  341. vsize,
  342. mm ? mm->rss : 0, /* you might want to shift this left 3 */
  343. task->rlim[RLIMIT_RSS].rlim_cur,
  344. mm ? mm->start_code : 0,
  345. mm ? mm->end_code : 0,
  346. mm ? mm->start_stack : 0,
  347. esp,
  348. eip,
  349. /* The signal information here is obsolete.
  350.  * It must be decimal for Linux 2.0 compatibility.
  351.  * Use /proc/#/status for real-time signals.
  352.  */
  353. task->pending.signal.sig[0] & 0x7fffffffUL,
  354. task->blocked.sig[0] & 0x7fffffffUL,
  355. sigign      .sig[0] & 0x7fffffffUL,
  356. sigcatch    .sig[0] & 0x7fffffffUL,
  357. wchan,
  358. task->nswap,
  359. task->cnswap,
  360. task->exit_signal,
  361. task->processor);
  362. if(mm)
  363. mmput(mm);
  364. return res;
  365. }
  366. static inline void statm_pte_range(pmd_t * pmd, unsigned long address, unsigned long size,
  367. int * pages, int * shared, int * dirty, int * total)
  368. {
  369. pte_t * pte;
  370. unsigned long end;
  371. if (pmd_none(*pmd))
  372. return;
  373. if (pmd_bad(*pmd)) {
  374. pmd_ERROR(*pmd);
  375. pmd_clear(pmd);
  376. return;
  377. }
  378. pte = pte_offset(pmd, address);
  379. address &= ~PMD_MASK;
  380. end = address + size;
  381. if (end > PMD_SIZE)
  382. end = PMD_SIZE;
  383. do {
  384. pte_t page = *pte;
  385. struct page *ptpage;
  386. address += PAGE_SIZE;
  387. pte++;
  388. if (pte_none(page))
  389. continue;
  390. ++*total;
  391. if (!pte_present(page))
  392. continue;
  393. ptpage = pte_page(page);
  394. if ((!VALID_PAGE(ptpage)) || PageReserved(ptpage))
  395. continue;
  396. ++*pages;
  397. if (pte_dirty(page))
  398. ++*dirty;
  399. if (page_count(pte_page(page)) > 1)
  400. ++*shared;
  401. } while (address < end);
  402. }
  403. static inline void statm_pmd_range(pgd_t * pgd, unsigned long address, unsigned long size,
  404. int * pages, int * shared, int * dirty, int * total)
  405. {
  406. pmd_t * pmd;
  407. unsigned long end;
  408. if (pgd_none(*pgd))
  409. return;
  410. if (pgd_bad(*pgd)) {
  411. pgd_ERROR(*pgd);
  412. pgd_clear(pgd);
  413. return;
  414. }
  415. pmd = pmd_offset(pgd, address);
  416. address &= ~PGDIR_MASK;
  417. end = address + size;
  418. if (end > PGDIR_SIZE)
  419. end = PGDIR_SIZE;
  420. do {
  421. statm_pte_range(pmd, address, end - address, pages, shared, dirty, total);
  422. address = (address + PMD_SIZE) & PMD_MASK;
  423. pmd++;
  424. } while (address < end);
  425. }
  426. static void statm_pgd_range(pgd_t * pgd, unsigned long address, unsigned long end,
  427. int * pages, int * shared, int * dirty, int * total)
  428. {
  429. while (address < end) {
  430. statm_pmd_range(pgd, address, end - address, pages, shared, dirty, total);
  431. address = (address + PGDIR_SIZE) & PGDIR_MASK;
  432. pgd++;
  433. }
  434. }
  435. int proc_pid_statm(struct task_struct *task, char * buffer)
  436. {
  437. struct mm_struct *mm;
  438. int size=0, resident=0, share=0, trs=0, lrs=0, drs=0, dt=0;
  439. task_lock(task);
  440. mm = task->mm;
  441. if(mm)
  442. atomic_inc(&mm->mm_users);
  443. task_unlock(task);
  444. if (mm) {
  445. struct vm_area_struct * vma;
  446. down_read(&mm->mmap_sem);
  447. vma = mm->mmap;
  448. while (vma) {
  449. pgd_t *pgd = pgd_offset(mm, vma->vm_start);
  450. int pages = 0, shared = 0, dirty = 0, total = 0;
  451. statm_pgd_range(pgd, vma->vm_start, vma->vm_end, &pages, &shared, &dirty, &total);
  452. resident += pages;
  453. share += shared;
  454. dt += dirty;
  455. size += total;
  456. if (vma->vm_flags & VM_EXECUTABLE)
  457. trs += pages; /* text */
  458. else if (vma->vm_flags & VM_GROWSDOWN)
  459. drs += pages; /* stack */
  460. else if (vma->vm_end > 0x60000000)
  461. lrs += pages; /* library */
  462. else
  463. drs += pages;
  464. vma = vma->vm_next;
  465. }
  466. up_read(&mm->mmap_sem);
  467. mmput(mm);
  468. }
  469. return sprintf(buffer,"%d %d %d %d %d %d %dn",
  470.        size, resident, share, trs, lrs, drs, dt);
  471. }
  472. /*
  473.  * The way we support synthetic files > 4K
  474.  * - without storing their contents in some buffer and
  475.  * - without walking through the entire synthetic file until we reach the
  476.  *   position of the requested data
  477.  * is to cleverly encode the current position in the file's f_pos field.
  478.  * There is no requirement that a read() call which returns `count' bytes
  479.  * of data increases f_pos by exactly `count'.
  480.  *
  481.  * This idea is Linus' one. Bruno implemented it.
  482.  */
  483. /*
  484.  * For the /proc/<pid>/maps file, we use fixed length records, each containing
  485.  * a single line.
  486.  *
  487.  * f_pos = (number of the vma in the task->mm->mmap list) * PAGE_SIZE
  488.  *         + (index into the line)
  489.  */
  490. /* for systems with sizeof(void*) == 4: */
  491. #define MAPS_LINE_FORMAT4   "%08lx-%08lx %s %08lx %s %lu"
  492. #define MAPS_LINE_MAX4 49 /* sum of 8  1  8  1 4 1 8 1 5 1 10 1 */
  493. /* for systems with sizeof(void*) == 8: */
  494. #define MAPS_LINE_FORMAT8   "%016lx-%016lx %s %016lx %s %lu"
  495. #define MAPS_LINE_MAX8 73 /* sum of 16  1  16  1 4 1 16 1 5 1 10 1 */
  496. #define MAPS_LINE_FORMAT (sizeof(void*) == 4 ? MAPS_LINE_FORMAT4 : MAPS_LINE_FORMAT8)
  497. #define MAPS_LINE_MAX (sizeof(void*) == 4 ?  MAPS_LINE_MAX4 :  MAPS_LINE_MAX8)
  498. static int proc_pid_maps_get_line (char *buf, struct vm_area_struct *map)
  499. {
  500. /* produce the next line */
  501. char *line;
  502. char str[5];
  503. int flags;
  504. kdev_t dev;
  505. unsigned long ino;
  506. int len;
  507. flags = map->vm_flags;
  508. str[0] = flags & VM_READ ? 'r' : '-';
  509. str[1] = flags & VM_WRITE ? 'w' : '-';
  510. str[2] = flags & VM_EXEC ? 'x' : '-';
  511. str[3] = flags & VM_MAYSHARE ? 's' : 'p';
  512. str[4] = 0;
  513. dev = 0;
  514. ino = 0;
  515. if (map->vm_file != NULL) {
  516. dev = map->vm_file->f_dentry->d_inode->i_dev;
  517. ino = map->vm_file->f_dentry->d_inode->i_ino;
  518. line = d_path(map->vm_file->f_dentry,
  519.       map->vm_file->f_vfsmnt,
  520.       buf, PAGE_SIZE);
  521. buf[PAGE_SIZE-1] = 'n';
  522. line -= MAPS_LINE_MAX;
  523. if(line < buf)
  524. line = buf;
  525. } else
  526. line = buf;
  527. len = sprintf(line,
  528.       MAPS_LINE_FORMAT,
  529.       map->vm_start, map->vm_end, str, map->vm_pgoff << PAGE_SHIFT,
  530.       kdevname(dev), ino);
  531. if(map->vm_file) {
  532. int i;
  533. for(i = len; i < MAPS_LINE_MAX; i++)
  534. line[i] = ' ';
  535. len = buf + PAGE_SIZE - line;
  536. memmove(buf, line, len);
  537. } else
  538. line[len++] = 'n';
  539. return len;
  540. }
  541. ssize_t proc_pid_read_maps (struct task_struct *task, struct file * file, char * buf,
  542.   size_t count, loff_t *ppos)
  543. {
  544. struct mm_struct *mm;
  545. struct vm_area_struct * map;
  546. char *tmp, *kbuf;
  547. long retval;
  548. int off, lineno, loff;
  549. /* reject calls with out of range parameters immediately */
  550. retval = 0;
  551. if (*ppos > LONG_MAX)
  552. goto out;
  553. if (count == 0)
  554. goto out;
  555. off = (long)*ppos;
  556. /*
  557.  * We might sleep getting the page, so get it first.
  558.  */
  559. retval = -ENOMEM;
  560. kbuf = (char*)__get_free_page(GFP_KERNEL);
  561. if (!kbuf)
  562. goto out;
  563. tmp = (char*)__get_free_page(GFP_KERNEL);
  564. if (!tmp)
  565. goto out_free1;
  566. task_lock(task);
  567. mm = task->mm;
  568. if (mm)
  569. atomic_inc(&mm->mm_users);
  570. task_unlock(task);
  571. retval = 0;
  572. if (!mm)
  573. goto out_free2;
  574. down_read(&mm->mmap_sem);
  575. map = mm->mmap;
  576. lineno = 0;
  577. loff = 0;
  578. if (count > PAGE_SIZE)
  579. count = PAGE_SIZE;
  580. while (map) {
  581. int len;
  582. if (off > PAGE_SIZE) {
  583. off -= PAGE_SIZE;
  584. goto next;
  585. }
  586. len = proc_pid_maps_get_line(tmp, map);
  587. len -= off;
  588. if (len > 0) {
  589. if (retval+len > count) {
  590. /* only partial line transfer possible */
  591. len = count - retval;
  592. /* save the offset where the next read
  593.  * must start */
  594. loff = len+off;
  595. }
  596. memcpy(kbuf+retval, tmp+off, len);
  597. retval += len;
  598. }
  599. off = 0;
  600. next:
  601. if (!loff)
  602. lineno++;
  603. if (retval >= count)
  604. break;
  605. if (loff) BUG();
  606. map = map->vm_next;
  607. }
  608. up_read(&mm->mmap_sem);
  609. mmput(mm);
  610. if (retval > count) BUG();
  611. if (copy_to_user(buf, kbuf, retval))
  612. retval = -EFAULT;
  613. else
  614. *ppos = (lineno << PAGE_SHIFT) + loff;
  615. out_free2:
  616. free_page((unsigned long)tmp);
  617. out_free1:
  618. free_page((unsigned long)kbuf);
  619. out:
  620. return retval;
  621. }
  622. #ifdef CONFIG_SMP
  623. int proc_pid_cpu(struct task_struct *task, char * buffer)
  624. {
  625. int i, len;
  626. len = sprintf(buffer,
  627. "cpu  %lu %lun",
  628. task->times.tms_utime,
  629. task->times.tms_stime);
  630. for (i = 0 ; i < smp_num_cpus; i++)
  631. len += sprintf(buffer + len, "cpu%d %lu %lun",
  632. i,
  633. task->per_cpu_utime[cpu_logical_map(i)],
  634. task->per_cpu_stime[cpu_logical_map(i)]);
  635. return len;
  636. }
  637. #endif