ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/src/libstatgrab/disk_stats.c
(Generate patch)

Comparing projects/libstatgrab/src/libstatgrab/disk_stats.c (file contents):
Revision 1.64 by ats, Wed Apr 7 10:33:50 2004 UTC vs.
Revision 1.65 by tdb, Wed Apr 7 14:53:40 2004 UTC

# Line 47 | Line 47
47  
48   #ifdef LINUX
49   #define VALID_FS_TYPES {"adfs", "affs", "befs", "bfs", "efs", "ext2", \
50 <                        "ext3", "vxfs", "hfs", "hfsplus", "hpfs", "jffs", \
51 <                        "jffs2", "minix", "msdos", "ntfs", "qnx4", "ramfs", \
52 <                        "rootfs", "reiserfs", "sysv", "v7", "udf", "ufs", \
53 <                        "umsdos", "vfat", "xfs", "jfs"}
50 >                        "ext3", "vxfs", "hfs", "hfsplus", "hpfs", "jffs", \
51 >                        "jffs2", "minix", "msdos", "ntfs", "qnx4", "ramfs", \
52 >                        "rootfs", "reiserfs", "sysv", "v7", "udf", "ufs", \
53 >                        "umsdos", "vfat", "xfs", "jfs"}
54   #endif
55  
56   #ifdef CYGWIN
# Line 66 | Line 66
66   #include <sys/dkstat.h>
67   #include <devstat.h>
68   #define VALID_FS_TYPES {"hpfs", "msdosfs", "ntfs", "udf", "ext2fs", \
69 <                        "ufs", "mfs"}
69 >                        "ufs", "mfs"}
70   #endif
71   #if defined(NETBSD) || defined(OPENBSD)
72   #include <sys/param.h>
73   #include <sys/sysctl.h>
74   #include <sys/disk.h>
75   #define VALID_FS_TYPES {"ffs", "mfs", "msdos", "lfs", "adosfs", "ext2fs", \
76 <                        "ntfs"}
76 >                        "ntfs"}
77   #endif
78  
79   static void disk_stat_init(sg_fs_stats *d) {
# Line 102 | Line 102 | static int is_valid_fs_type(const char *type) {
102  
103   sg_fs_stats *sg_get_fs_stats(int *entries){
104          VECTOR_DECLARE_STATIC(disk_stats, sg_fs_stats, 10,
105 <                              disk_stat_init, disk_stat_destroy);
105 >                              disk_stat_init, disk_stat_destroy);
106  
107          int valid_type;
108          int num_disks=0;
# Line 216 | Line 216 | sg_fs_stats *sg_get_fs_stats(int *entries){
216                          }
217  
218                          if (sg_update_string(&disk_ptr->fs_type, mp.mnt_fstype) < 0) {
219 <                                return NULL;
220 <                        }
219 >                                return NULL;
220 >                        }
221          
222                          if (sg_update_string(&disk_ptr->mnt_point, mp.mnt_mountp) < 0) {
223 <                                return NULL;
224 <                        }
223 >                                return NULL;
224 >                        }
225                          
226                          disk_ptr->size = (long long)fs.f_frsize * (long long)fs.f_blocks;
227                          disk_ptr->avail = (long long)fs.f_frsize * (long long)fs.f_bavail;
# Line 238 | Line 238 | sg_fs_stats *sg_get_fs_stats(int *entries){
238          *entries=num_disks;    
239  
240          /* If this fails, there is very little i can do about it, so
241 <           I'll ignore it :) */
241 >           I'll ignore it :) */
242   #if defined(LINUX) || defined(CYGWIN)
243          endmntent(f);
244   #endif
# Line 259 | Line 259 | static void diskio_stat_destroy(sg_disk_io_stats *d) {
259   }
260  
261   VECTOR_DECLARE_STATIC(diskio_stats, sg_disk_io_stats, 10,
262 <                      diskio_stat_init, diskio_stat_destroy);
262 >                      diskio_stat_init, diskio_stat_destroy);
263  
264   #ifdef LINUX
265   typedef struct {
# Line 275 | Line 275 | sg_disk_io_stats *sg_get_disk_io_stats(int *entries){
275   #endif
276  
277   #ifdef SOLARIS
278 <        kstat_ctl_t *kc;
279 <        kstat_t *ksp;
278 >        kstat_ctl_t *kc;
279 >        kstat_t *ksp;
280          kstat_io_t kios;
281   #endif
282   #ifdef LINUX
# Line 488 | Line 488 | sg_disk_io_stats *sg_get_disk_io_stats(int *entries){
488   #endif
489   #ifdef SOLARIS
490          if ((kc = kstat_open()) == NULL) {
491 <                return NULL;
492 <        }
491 >                return NULL;
492 >        }
493  
494          for (ksp = kc->kc_chain; ksp; ksp = ksp->ks_next) {
495 <                if (!strcmp(ksp->ks_class, "disk")) {
495 >                if (!strcmp(ksp->ks_class, "disk")) {
496  
497                          if(ksp->ks_type != KSTAT_TYPE_IO) continue;
498                          /* We dont want metadevices appearins as num_diskio */
499                          if(strcmp(ksp->ks_module, "md")==0) continue;
500 <                        if((kstat_read(kc, ksp, &kios))==-1){  
500 >                        if((kstat_read(kc, ksp, &kios))==-1){  
501                          }
502                          
503                          if (VECTOR_RESIZE(diskio_stats, num_diskio + 1) < 0) {
# Line 509 | Line 509 | sg_disk_io_stats *sg_get_disk_io_stats(int *entries){
509                          diskio_stats_ptr->read_bytes=kios.nread;
510                          diskio_stats_ptr->write_bytes=kios.nwritten;
511                          if (sg_update_string(&diskio_stats_ptr->disk_name,
512 <                                             sg_get_svr_from_bsd(ksp->ks_name)) < 0) {
512 >                                             sg_get_svr_from_bsd(ksp->ks_name)) < 0) {
513                                  return NULL;
514                          }
515                          diskio_stats_ptr->systime=time(NULL);
# Line 666 | Line 666 | out:
666  
667   sg_disk_io_stats *sg_get_disk_io_stats_diff(int *entries){
668          VECTOR_DECLARE_STATIC(diff, sg_disk_io_stats, 1,
669 <                              diskio_stat_init, diskio_stat_destroy);
669 >                              diskio_stat_init, diskio_stat_destroy);
670          sg_disk_io_stats *src = NULL, *dest;
671          int i, j, diff_count, new_count;
672  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines