/* CacheFiles statistics * * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public Licence * as published by the Free Software Foundation; either version * 2 of the Licence, or (at your option) any later version. */ #include #include #include #include "internal.h" atomic_t cachefiles_lookup_histogram[HZ]; atomic_t cachefiles_mkdir_histogram[HZ]; atomic_t cachefiles_create_histogram[HZ]; /* * display the latency histogram */ static int cachefiles_histogram_show(struct seq_file *m, void *v) { unsigned long index; unsigned x, y, z, t; switch ((unsigned long) v) { case 1: seq_puts(m, "JIFS SECS LOOKUPS MKDIRS CREATES\n"); return 0; case 2: seq_puts(m, "===== ===== ========= ========= =========\n"); return 0; default: index = (unsigned long) v - 3; x = atomic_read(&cachefiles_lookup_histogram[index]); y = atomic_read(&cachefiles_mkdir_histogram[index]); z = atomic_read(&cachefiles_create_histogram[index]); if (x == 0 && y == 0 && z == 0) return 0; t = (index * 1000) / HZ; seq_printf(m, "%4lu 0.%03u %9u %9u %9u\n", index, t, x, y, z); return 0; } } /* * set up the iterator to start reading from the first line */ static void *cachefiles_histogram_start(struct seq_file *m, loff_t *_pos) { if ((unsigned long long)*_pos >= HZ + 2) return NULL; if (*_pos == 0) *_pos = 1; return (void *)(unsigned long) *_pos; } /* * move to the next line */ static void *cachefiles_histogram_next(struct seq_file *m, void *v, loff_t *pos) { (*pos)++; return (unsigned long long)*pos > HZ + 2 ? NULL : (void *)(unsigned long) *pos; } /* * clean up after reading */ static void cachefiles_histogram_stop(struct seq_file *m, void *v) { } static const struct seq_operations cachefiles_histogram_ops = { .start = cachefiles_histogram_start, .stop = cachefiles_histogram_stop, .next = cachefiles_histogram_next, .show = cachefiles_histogram_show, }; /* * open "/proc/fs/cachefiles/XXX" which provide statistics summaries */ static int cachefiles_histogram_open(struct inode *inode, struct file *file) { return seq_open(file, &cachefiles_histogram_ops); } static const struct file_operations cachefiles_histogram_fops = { .open = cachefiles_histogram_open, .read = seq_read, .llseek = seq_lseek, .release = seq_release, }; /* * initialise the /proc/fs/cachefiles/ directory */ int __init cachefiles_proc_init(void) { _enter(""); if (!proc_mkdir("fs/cachefiles", NULL)) goto error_dir; if (!proc_create("fs/cachefiles/histogram", S_IFREG | 0444, NULL, &cachefiles_histogram_fops)) goto error_histogram; _leave(" = 0"); return 0; error_histogram: remove_proc_entry("fs/cachefiles", NULL); error_dir: _leave(" = -ENOMEM"); return -ENOMEM; } /* * clean up the /proc/fs/cachefiles/ directory */ void cachefiles_proc_cleanup(void) { remove_proc_entry("fs/cachefiles/histogram", NULL); remove_proc_entry("fs/cachefiles", NULL); } it/include/trace/events?id=83280e90ef001f77a64e2ce59c25ab66e47ab1f0'>events/regulator.h
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2017-01-08 11:42:04 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2017-01-08 11:42:04 -0800
commit83280e90ef001f77a64e2ce59c25ab66e47ab1f0 (patch)
treeec0a5842e2fbc0f4abaff55299acac397b8da5c3 /include/trace/events/regulator.h
parentcc250e267bd56c531b0bee455fc724d50af83fac (diff)
parent0a8fd1346254974c3a852338508e4a4cddbb35f1 (diff)
Merge tag 'usb-4.10-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb
Pull USB fixes from Greg KH: "Here are a bunch of USB fixes for 4.10-rc3. Yeah, it's a lot, an artifact of the holiday break I think. Lots of gadget and the usual XHCI fixups for reported issues (one day that driver will calm down...) Also included are a bunch of usb-serial driver fixes, and for good measure, a number of much-reported MUSB driver issues have finally been resolved. All of these have been in linux-next with no reported issues" * tag 'usb-4.10-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb: (72 commits) USB: fix problems with duplicate endpoint addresses usb: ohci-at91: use descriptor-based gpio APIs correctly usb: storage: unusual_uas: Add JMicron JMS56x to unusual device usb: hub: Move hub_port_disable() to fix warning if PM is disabled usb: musb: blackfin: add bfin_fifo_offset in bfin_ops usb: musb: fix compilation warning on unused function usb: musb: Fix trying to free already-free IRQ 4 usb: musb: dsps: implement clear_ep_rxintr() callback usb: musb: core: add clear_ep_rxintr() to musb_platform_ops USB: serial: ti_usb_3410_5052: fix NULL-deref at open USB: serial: spcp8x5: fix NULL-deref at open USB: serial: quatech2: fix sleep-while-atomic in close USB: serial: pl2303: fix NULL-deref at open USB: serial: oti6858: fix NULL-deref at open USB: serial: omninet: fix NULL-derefs at open and disconnect USB: serial: mos7840: fix misleading interrupt-URB comment USB: serial: mos7840: remove unused write URB USB: serial: mos7840: fix NULL-deref at open USB: serial: mos7720: remove obsolete port initialisation USB: serial: mos7720: fix parallel probe ...
Diffstat (limited to 'include/trace/events/regulator.h')