2006-03-20 18:44:13 +00:00
|
|
|
/*
|
|
|
|
* linux/fs/nfs/iostat.h
|
|
|
|
*
|
|
|
|
* Declarations for NFS client per-mount statistics
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005, 2006 Chuck Lever <cel@netapp.com>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NFS_IOSTAT
|
|
|
|
#define _NFS_IOSTAT
|
|
|
|
|
|
|
|
#include <linux/percpu.h>
|
|
|
|
#include <linux/cache.h>
|
2008-06-12 16:32:25 +00:00
|
|
|
#include <linux/nfs_iostat.h>
|
2006-03-20 18:44:13 +00:00
|
|
|
|
|
|
|
struct nfs_iostats {
|
|
|
|
unsigned long long bytes[__NFSIOS_BYTESMAX];
|
2009-04-03 15:42:43 +00:00
|
|
|
#ifdef CONFIG_NFS_FSCACHE
|
|
|
|
unsigned long long fscache[__NFSIOS_FSCACHEMAX];
|
|
|
|
#endif
|
2006-03-20 18:44:13 +00:00
|
|
|
unsigned long events[__NFSIOS_COUNTSMAX];
|
|
|
|
} ____cacheline_aligned;
|
|
|
|
|
2008-06-11 20:42:05 +00:00
|
|
|
static inline void nfs_inc_server_stats(const struct nfs_server *server,
|
2008-06-12 16:32:25 +00:00
|
|
|
enum nfs_stat_eventcounters stat)
|
2006-03-20 18:44:13 +00:00
|
|
|
{
|
|
|
|
struct nfs_iostats *iostats;
|
|
|
|
int cpu;
|
|
|
|
|
|
|
|
cpu = get_cpu();
|
2006-03-20 18:44:14 +00:00
|
|
|
iostats = per_cpu_ptr(server->io_stats, cpu);
|
2008-06-12 16:32:25 +00:00
|
|
|
iostats->events[stat]++;
|
2009-06-16 22:33:39 +00:00
|
|
|
put_cpu();
|
2006-03-20 18:44:13 +00:00
|
|
|
}
|
|
|
|
|
2008-06-11 20:42:05 +00:00
|
|
|
static inline void nfs_inc_stats(const struct inode *inode,
|
2008-06-12 16:32:25 +00:00
|
|
|
enum nfs_stat_eventcounters stat)
|
2006-03-20 18:44:14 +00:00
|
|
|
{
|
|
|
|
nfs_inc_server_stats(NFS_SERVER(inode), stat);
|
|
|
|
}
|
|
|
|
|
2008-06-11 20:42:05 +00:00
|
|
|
static inline void nfs_add_server_stats(const struct nfs_server *server,
|
2008-06-12 16:32:25 +00:00
|
|
|
enum nfs_stat_bytecounters stat,
|
|
|
|
unsigned long addend)
|
2006-03-20 18:44:13 +00:00
|
|
|
{
|
|
|
|
struct nfs_iostats *iostats;
|
|
|
|
int cpu;
|
|
|
|
|
|
|
|
cpu = get_cpu();
|
2006-03-20 18:44:14 +00:00
|
|
|
iostats = per_cpu_ptr(server->io_stats, cpu);
|
2006-03-20 18:44:13 +00:00
|
|
|
iostats->bytes[stat] += addend;
|
2009-06-16 22:33:39 +00:00
|
|
|
put_cpu();
|
2006-03-20 18:44:13 +00:00
|
|
|
}
|
|
|
|
|
2008-06-11 20:42:05 +00:00
|
|
|
static inline void nfs_add_stats(const struct inode *inode,
|
2008-06-12 16:32:25 +00:00
|
|
|
enum nfs_stat_bytecounters stat,
|
|
|
|
unsigned long addend)
|
2006-03-20 18:44:14 +00:00
|
|
|
{
|
|
|
|
nfs_add_server_stats(NFS_SERVER(inode), stat, addend);
|
|
|
|
}
|
|
|
|
|
2009-04-03 15:42:43 +00:00
|
|
|
#ifdef CONFIG_NFS_FSCACHE
|
|
|
|
static inline void nfs_add_fscache_stats(struct inode *inode,
|
|
|
|
enum nfs_stat_fscachecounters stat,
|
|
|
|
unsigned long addend)
|
|
|
|
{
|
|
|
|
struct nfs_iostats *iostats;
|
|
|
|
int cpu;
|
|
|
|
|
|
|
|
cpu = get_cpu();
|
|
|
|
iostats = per_cpu_ptr(NFS_SERVER(inode)->io_stats, cpu);
|
|
|
|
iostats->fscache[stat] += addend;
|
2009-06-16 22:33:39 +00:00
|
|
|
put_cpu();
|
2009-04-03 15:42:43 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-03-20 18:44:13 +00:00
|
|
|
static inline struct nfs_iostats *nfs_alloc_iostats(void)
|
|
|
|
{
|
|
|
|
return alloc_percpu(struct nfs_iostats);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void nfs_free_iostats(struct nfs_iostats *stats)
|
|
|
|
{
|
2006-03-20 18:44:48 +00:00
|
|
|
if (stats != NULL)
|
|
|
|
free_percpu(stats);
|
2006-03-20 18:44:13 +00:00
|
|
|
}
|
|
|
|
|
2008-06-12 16:32:25 +00:00
|
|
|
#endif /* _NFS_IOSTAT */
|