array.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:16k
源码类别:

嵌入式Linux

开发平台:

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. if (p->sig) {
  213. k = p->sig->action;
  214. for (i = 1; i <= _NSIG; ++i, ++k) {
  215. if (k->sa.sa_handler == SIG_IGN)
  216. sigaddset(ign, i);
  217. else if (k->sa.sa_handler != SIG_DFL)
  218. sigaddset(catch, i);
  219. }
  220. }
  221. }
  222. static inline char * task_sig(struct task_struct *p, char *buffer)
  223. {
  224. sigset_t ign, catch;
  225. buffer += sprintf(buffer, "SigPnd:t");
  226. buffer = render_sigset_t(&p->pending.signal, buffer);
  227. *buffer++ = 'n';
  228. buffer += sprintf(buffer, "SigBlk:t");
  229. buffer = render_sigset_t(&p->blocked, buffer);
  230. *buffer++ = 'n';
  231. collect_sigign_sigcatch(p, &ign, &catch);
  232. buffer += sprintf(buffer, "SigIgn:t");
  233. buffer = render_sigset_t(&ign, buffer);
  234. *buffer++ = 'n';
  235. buffer += sprintf(buffer, "SigCgt:t"); /* Linux 2.0 uses "SigCgt" */
  236. buffer = render_sigset_t(&catch, buffer);
  237. *buffer++ = 'n';
  238. return buffer;
  239. }
  240. static inline char *task_cap(struct task_struct *p, char *buffer)
  241. {
  242.     return buffer + sprintf(buffer, "CapInh:t%016xn"
  243.     "CapPrm:t%016xn"
  244.     "CapEff:t%016xn",
  245.     cap_t(p->cap_inheritable),
  246.     cap_t(p->cap_permitted),
  247.     cap_t(p->cap_effective));
  248. }
  249. int proc_pid_status(struct task_struct *task, char * buffer)
  250. {
  251. char * orig = buffer;
  252. struct mm_struct *mm;
  253. buffer = task_name(task, buffer);
  254. buffer = task_state(task, buffer);
  255. task_lock(task);
  256. mm = task->mm;
  257. if(mm)
  258. atomic_inc(&mm->mm_users);
  259. task_unlock(task);
  260. if (mm) {
  261. buffer = task_mem(mm, buffer);
  262. mmput(mm);
  263. }
  264. buffer = task_sig(task, buffer);
  265. buffer = task_cap(task, buffer);
  266. #if defined(CONFIG_ARCH_S390)
  267. buffer = task_show_regs(task, buffer);
  268. #endif
  269. return buffer - orig;
  270. }
  271. int proc_pid_stat(struct task_struct *task, char * buffer)
  272. {
  273. unsigned long vsize, eip, esp, wchan;
  274. long priority, nice;
  275. int tty_pgrp = -1, tty_nr = 0;
  276. sigset_t sigign, sigcatch;
  277. char state;
  278. int res;
  279. pid_t ppid;
  280. struct mm_struct *mm;
  281. state = *get_task_state(task);
  282. vsize = eip = esp = 0;
  283. task_lock(task);
  284. mm = task->mm;
  285. if(mm)
  286. atomic_inc(&mm->mm_users);
  287. if (task->tty) {
  288. tty_pgrp = task->tty->pgrp;
  289. tty_nr = kdev_t_to_nr(task->tty->device);
  290. }
  291. task_unlock(task);
  292. if (mm) {
  293. struct vm_area_struct *vma;
  294. down_read(&mm->mmap_sem);
  295. vma = mm->mmap;
  296. while (vma) {
  297. vsize += vma->vm_end - vma->vm_start;
  298. vma = vma->vm_next;
  299. }
  300. eip = KSTK_EIP(task);
  301. esp = KSTK_ESP(task);
  302. up_read(&mm->mmap_sem);
  303. }
  304. wchan = get_wchan(task);
  305. collect_sigign_sigcatch(task, &sigign, &sigcatch);
  306. /* scale priority and nice values from timeslices to -20..20 */
  307. /* to make it look like a "normal" Unix priority/nice value  */
  308. priority = task->counter;
  309. priority = 20 - (priority * 10 + DEF_COUNTER / 2) / DEF_COUNTER;
  310. nice = task->nice;
  311. read_lock(&tasklist_lock);
  312. ppid = task->pid ? task->p_opptr->pid : 0;
  313. read_unlock(&tasklist_lock);
  314. res = sprintf(buffer,"%d (%s) %c %d %d %d %d %d %lu %lu 
  315. %lu %lu %lu %lu %lu %ld %ld %ld %ld %ld %ld %lu %lu %ld %lu %lu %lu %lu %lu 
  316. %lu %lu %lu %lu %lu %lu %lu %lu %d %dn",
  317. task->pid,
  318. task->comm,
  319. state,
  320. ppid,
  321. task->pgrp,
  322. task->session,
  323.         tty_nr,
  324. tty_pgrp,
  325. task->flags,
  326. task->min_flt,
  327. task->cmin_flt,
  328. task->maj_flt,
  329. task->cmaj_flt,
  330. hz_to_std(task->times.tms_utime),
  331. hz_to_std(task->times.tms_stime),
  332. hz_to_std(task->times.tms_cutime),
  333. hz_to_std(task->times.tms_cstime),
  334. priority,
  335. nice,
  336. 0UL /* removed */,
  337. task->it_real_value,
  338. hz_to_std(task->start_time),
  339. vsize,
  340. mm ? mm->rss : 0, /* you might want to shift this left 3 */
  341. task->rlim[RLIMIT_RSS].rlim_cur,
  342. mm ? mm->start_code : 0,
  343. mm ? mm->end_code : 0,
  344. mm ? mm->start_stack : 0,
  345. esp,
  346. eip,
  347. /* The signal information here is obsolete.
  348.  * It must be decimal for Linux 2.0 compatibility.
  349.  * Use /proc/#/status for real-time signals.
  350.  */
  351. task->pending.signal.sig[0] & 0x7fffffffUL,
  352. task->blocked.sig[0] & 0x7fffffffUL,
  353. sigign      .sig[0] & 0x7fffffffUL,
  354. sigcatch    .sig[0] & 0x7fffffffUL,
  355. wchan,
  356. task->nswap,
  357. task->cnswap,
  358. task->exit_signal,
  359. task->processor);
  360. if(mm)
  361. mmput(mm);
  362. return res;
  363. }
  364. static inline void statm_pte_range(pmd_t * pmd, unsigned long address, unsigned long size,
  365. int * pages, int * shared, int * dirty, int * total)
  366. {
  367. pte_t * pte;
  368. unsigned long end;
  369. if (pmd_none(*pmd))
  370. return;
  371. if (pmd_bad(*pmd)) {
  372. pmd_ERROR(*pmd);
  373. pmd_clear(pmd);
  374. return;
  375. }
  376. pte = pte_offset(pmd, address);
  377. address &= ~PMD_MASK;
  378. end = address + size;
  379. if (end > PMD_SIZE)
  380. end = PMD_SIZE;
  381. do {
  382. pte_t page = *pte;
  383. struct page *ptpage;
  384. address += PAGE_SIZE;
  385. pte++;
  386. if (pte_none(page))
  387. continue;
  388. ++*total;
  389. if (!pte_present(page))
  390. continue;
  391. ptpage = pte_page(page);
  392. if ((!VALID_PAGE(ptpage)) || PageReserved(ptpage))
  393. continue;
  394. ++*pages;
  395. if (pte_dirty(page))
  396. ++*dirty;
  397. if (page_count(pte_page(page)) > 1)
  398. ++*shared;
  399. } while (address < end);
  400. }
  401. static inline void statm_pmd_range(pgd_t * pgd, unsigned long address, unsigned long size,
  402. int * pages, int * shared, int * dirty, int * total)
  403. {
  404. pmd_t * pmd;
  405. unsigned long end;
  406. if (pgd_none(*pgd))
  407. return;
  408. if (pgd_bad(*pgd)) {
  409. pgd_ERROR(*pgd);
  410. pgd_clear(pgd);
  411. return;
  412. }
  413. pmd = pmd_offset(pgd, address);
  414. address &= ~PGDIR_MASK;
  415. end = address + size;
  416. if (end > PGDIR_SIZE)
  417. end = PGDIR_SIZE;
  418. do {
  419. statm_pte_range(pmd, address, end - address, pages, shared, dirty, total);
  420. address = (address + PMD_SIZE) & PMD_MASK;
  421. pmd++;
  422. } while (address < end);
  423. }
  424. static void statm_pgd_range(pgd_t * pgd, unsigned long address, unsigned long end,
  425. int * pages, int * shared, int * dirty, int * total)
  426. {
  427. while (address < end) {
  428. statm_pmd_range(pgd, address, end - address, pages, shared, dirty, total);
  429. address = (address + PGDIR_SIZE) & PGDIR_MASK;
  430. pgd++;
  431. }
  432. }
  433. int proc_pid_statm(struct task_struct *task, char * buffer)
  434. {
  435. struct mm_struct *mm;
  436. int size=0, resident=0, share=0, trs=0, lrs=0, drs=0, dt=0;
  437. task_lock(task);
  438. mm = task->mm;
  439. if(mm)
  440. atomic_inc(&mm->mm_users);
  441. task_unlock(task);
  442. if (mm) {
  443. struct vm_area_struct * vma;
  444. down_read(&mm->mmap_sem);
  445. vma = mm->mmap;
  446. while (vma) {
  447. pgd_t *pgd = pgd_offset(mm, vma->vm_start);
  448. int pages = 0, shared = 0, dirty = 0, total = 0;
  449. statm_pgd_range(pgd, vma->vm_start, vma->vm_end, &pages, &shared, &dirty, &total);
  450. resident += pages;
  451. share += shared;
  452. dt += dirty;
  453. size += total;
  454. if (vma->vm_flags & VM_EXECUTABLE)
  455. trs += pages; /* text */
  456. else if (vma->vm_flags & VM_GROWSDOWN)
  457. drs += pages; /* stack */
  458. else if (vma->vm_end > 0x60000000)
  459. lrs += pages; /* library */
  460. else
  461. drs += pages;
  462. vma = vma->vm_next;
  463. }
  464. up_read(&mm->mmap_sem);
  465. mmput(mm);
  466. }
  467. return sprintf(buffer,"%d %d %d %d %d %d %dn",
  468.        size, resident, share, trs, lrs, drs, dt);
  469. }
  470. /*
  471.  * The way we support synthetic files > 4K
  472.  * - without storing their contents in some buffer and
  473.  * - without walking through the entire synthetic file until we reach the
  474.  *   position of the requested data
  475.  * is to cleverly encode the current position in the file's f_pos field.
  476.  * There is no requirement that a read() call which returns `count' bytes
  477.  * of data increases f_pos by exactly `count'.
  478.  *
  479.  * This idea is Linus' one. Bruno implemented it.
  480.  */
  481. /*
  482.  * For the /proc/<pid>/maps file, we use fixed length records, each containing
  483.  * a single line.
  484.  *
  485.  * f_pos = (number of the vma in the task->mm->mmap list) * PAGE_SIZE
  486.  *         + (index into the line)
  487.  */
  488. /* for systems with sizeof(void*) == 4: */
  489. #define MAPS_LINE_FORMAT4   "%08lx-%08lx %s %08lx %s %lu"
  490. #define MAPS_LINE_MAX4 49 /* sum of 8  1  8  1 4 1 8 1 5 1 10 1 */
  491. /* for systems with sizeof(void*) == 8: */
  492. #define MAPS_LINE_FORMAT8   "%016lx-%016lx %s %016lx %s %lu"
  493. #define MAPS_LINE_MAX8 73 /* sum of 16  1  16  1 4 1 16 1 5 1 10 1 */
  494. #define MAPS_LINE_FORMAT (sizeof(void*) == 4 ? MAPS_LINE_FORMAT4 : MAPS_LINE_FORMAT8)
  495. #define MAPS_LINE_MAX (sizeof(void*) == 4 ?  MAPS_LINE_MAX4 :  MAPS_LINE_MAX8)
  496. static int proc_pid_maps_get_line (char *buf, struct vm_area_struct *map)
  497. {
  498. /* produce the next line */
  499. char *line;
  500. char str[5];
  501. int flags;
  502. kdev_t dev;
  503. unsigned long ino;
  504. int len;
  505. flags = map->vm_flags;
  506. str[0] = flags & VM_READ ? 'r' : '-';
  507. str[1] = flags & VM_WRITE ? 'w' : '-';
  508. str[2] = flags & VM_EXEC ? 'x' : '-';
  509. str[3] = flags & VM_MAYSHARE ? 's' : 'p';
  510. str[4] = 0;
  511. dev = 0;
  512. ino = 0;
  513. if (map->vm_file != NULL) {
  514. dev = map->vm_file->f_dentry->d_inode->i_dev;
  515. ino = map->vm_file->f_dentry->d_inode->i_ino;
  516. line = d_path(map->vm_file->f_dentry,
  517.       map->vm_file->f_vfsmnt,
  518.       buf, PAGE_SIZE);
  519. buf[PAGE_SIZE-1] = 'n';
  520. line -= MAPS_LINE_MAX;
  521. if(line < buf)
  522. line = buf;
  523. } else
  524. line = buf;
  525. len = sprintf(line,
  526.       MAPS_LINE_FORMAT,
  527.       map->vm_start, map->vm_end, str, map->vm_pgoff << PAGE_SHIFT,
  528.       kdevname(dev), ino);
  529. if(map->vm_file) {
  530. int i;
  531. for(i = len; i < MAPS_LINE_MAX; i++)
  532. line[i] = ' ';
  533. len = buf + PAGE_SIZE - line;
  534. memmove(buf, line, len);
  535. } else
  536. line[len++] = 'n';
  537. return len;
  538. }
  539. ssize_t proc_pid_read_maps (struct task_struct *task, struct file * file, char * buf,
  540.   size_t count, loff_t *ppos)
  541. {
  542. struct mm_struct *mm;
  543. struct vm_area_struct * map;
  544. char *tmp, *kbuf;
  545. long retval;
  546. int off, lineno, loff;
  547. /* reject calls with out of range parameters immediately */
  548. retval = 0;
  549. if (*ppos > LONG_MAX)
  550. goto out;
  551. if (count == 0)
  552. goto out;
  553. off = (long)*ppos;
  554. /*
  555.  * We might sleep getting the page, so get it first.
  556.  */
  557. retval = -ENOMEM;
  558. kbuf = (char*)__get_free_page(GFP_KERNEL);
  559. if (!kbuf)
  560. goto out;
  561. tmp = (char*)__get_free_page(GFP_KERNEL);
  562. if (!tmp)
  563. goto out_free1;
  564. task_lock(task);
  565. mm = task->mm;
  566. if (mm)
  567. atomic_inc(&mm->mm_users);
  568. task_unlock(task);
  569. retval = 0;
  570. if (!mm)
  571. goto out_free2;
  572. down_read(&mm->mmap_sem);
  573. map = mm->mmap;
  574. lineno = 0;
  575. loff = 0;
  576. if (count > PAGE_SIZE)
  577. count = PAGE_SIZE;
  578. while (map) {
  579. int len;
  580. if (off > PAGE_SIZE) {
  581. off -= PAGE_SIZE;
  582. goto next;
  583. }
  584. len = proc_pid_maps_get_line(tmp, map);
  585. len -= off;
  586. if (len > 0) {
  587. if (retval+len > count) {
  588. /* only partial line transfer possible */
  589. len = count - retval;
  590. /* save the offset where the next read
  591.  * must start */
  592. loff = len+off;
  593. }
  594. memcpy(kbuf+retval, tmp+off, len);
  595. retval += len;
  596. }
  597. off = 0;
  598. next:
  599. if (!loff)
  600. lineno++;
  601. if (retval >= count)
  602. break;
  603. if (loff) BUG();
  604. map = map->vm_next;
  605. }
  606. up_read(&mm->mmap_sem);
  607. mmput(mm);
  608. if (retval > count) BUG();
  609. if (copy_to_user(buf, kbuf, retval))
  610. retval = -EFAULT;
  611. else
  612. *ppos = (lineno << PAGE_SHIFT) + loff;
  613. out_free2:
  614. free_page((unsigned long)tmp);
  615. out_free1:
  616. free_page((unsigned long)kbuf);
  617. out:
  618. return retval;
  619. }
  620. #ifdef CONFIG_SMP
  621. int proc_pid_cpu(struct task_struct *task, char * buffer)
  622. {
  623. int i, len;
  624. len = sprintf(buffer,
  625. "cpu  %lu %lun",
  626. hz_to_std(task->times.tms_utime),
  627. hz_to_std(task->times.tms_stime));
  628. for (i = 0 ; i < smp_num_cpus; i++)
  629. len += sprintf(buffer + len, "cpu%d %lu %lun",
  630. i,
  631. hz_to_std(task->per_cpu_utime[cpu_logical_map(i)]),
  632. hz_to_std(task->per_cpu_stime[cpu_logical_map(i)]));
  633. return len;
  634. }
  635. #endif