Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

dpm_getpoolfs(3) [debian man page]

DPM_GETPOOLFS(3)					       DPM Library Functions						  DPM_GETPOOLFS(3)

NAME
dpm_getpoolfs - get list of filesystems for a given pool SYNOPSIS
#include <sys/types.h> #include "dpm_api.h" int dpm_getpoolfs (char *poolname, int *nbfs, struct dpm_fs **dpm_fs) DESCRIPTION
dpm_getpoolfs gets list of filesystems for a given pool. The input argument is: poolname specifies the disk pool name previously defined using dpm_addpool. The output arguments are: nbfs will be set to the number of replies in the array of filesystems. dpm_fs will be set to the address of an array of dpm_fs structures allocated by the API. The client application is responsible for freeing the array when not needed anymore. struct dpm_fs { char poolname[CA_MAXPOOLNAMELEN+1]; char server[CA_MAXHOSTNAMELEN+1]; char fs[80]; u_signed64 capacity; u_signed64 free; int status; int weight; }; RETURN VALUE
This routine returns 0 if the operation was successful or -1 if the operation failed. In the latter case, serrno is set appropriately. ERRORS
EFAULT poolname, nbfs or dpm_fs is a NULL pointer. ENOMEM Memory could not be allocated for storing the reply. EINVAL The pool is unknown or the length of poolname exceeds CA_MAXPOOLNAMELEN. SENOSHOST Host unknown. SECOMERR Communication error. LCG
$Date$ DPM_GETPOOLFS(3)

Check Out this Related Man Page

DPM_GETPOOLS(3) 					       DPM Library Functions						   DPM_GETPOOLS(3)

NAME
dpm_getpools - get list of pools SYNOPSIS
#include <sys/types.h> #include "dpm_api.h" int dpm_getpools (int *nbpools, struct dpm_pool **dpm_pools) DESCRIPTION
dpm_getpools gets list of pools. The output arguments are: nbpools will be set to the number of replies in the array of pools. dpm_pools will be set to the address of an array of dpm_pool structures allocated by the API. The client application is responsible for free- ing the array when not needed anymore. This is also necessary for the gids entry of each dpm_pool. struct dpm_pool { char poolname[CA_MAXPOOLNAMELEN+1]; u_signed64 defsize; int gc_start_thresh; int gc_stop_thresh; int def_lifetime; int defpintime; int max_lifetime; int maxpintime; char fss_policy[CA_MAXPOLICYLEN+1]; char gc_policy[CA_MAXPOLICYLEN+1]; char mig_policy[CA_MAXPOLICYLEN+1]; char rs_policy[CA_MAXPOLICYLEN+1]; int nbgids gid_t *gids; /* restrict the pool to given group(s) */ char ret_policy; /* retention policy: 'R', 'O' or 'C' */ char s_type; /* space type: 'V', 'D' or 'P' */ u_signed64 capacity; u_signed64 free; struct dpm_fs *elemp; int nbelem; int next_elem; /* next pool element to be used */ }; RETURN VALUE
This routine returns 0 if the operation was successful or -1 if the operation failed. In the latter case, serrno is set appropriately. ERRORS
EFAULT nbpools or dpm_pools is a NULL pointer. ENOMEM Memory could not be allocated for storing the reply. SENOSHOST Host unknown. SECOMERR Communication error. LCG
$Date: 2007/04/30 06:39:28 $ DPM_GETPOOLS(3)
Man Page

5 More Discussions You Might Find Interesting

1. Solaris

need zpool to revert...

hi i have created a pool using zpool command for my /dev/dsk/c1d0s3 disk. The poolname is qwertyuiopasdfghjklmnbvcxzzxcvbnmasdfghjklqwertyuiopoiuytrewqasdfghjklkjhgfdsazxcvbnmmnbnbcxczxzassd ddddvfhfghgjjgjhgkhkljfjlhohihiuyuioyguioyguiowyuiogwyuigwrigywuigyguiyuiogyugiyguioyuyguiowygiuygui... (1 Reply)
Discussion started by: SankarV
1 Replies

2. UNIX for Dummies Questions & Answers

How to find filesystems crossed 90% capacity

Hi experts, How do i find which are the filesystems which has crossed 90% capacity in solaris box. thanks Shaan:) (4 Replies)
Discussion started by: shaan_dmp
4 Replies

3. Shell Programming and Scripting

Help with variables for filesystems allocated

Hi all, I am interning in a unix department and am very new to programming. I am supposed to write a script that counts the amount of filesystems a server has allocated, and the amount free. This is what I was given to start with: #!/bin/ksh df -m | grep -v ":"|grep -v Free|grep -v "/proc"|... (6 Replies)
Discussion started by: compan023
6 Replies

4. Solaris

Separate filesystems for CIFS?

Hi all, I just wonder: Do I need to have one filesystem like pool/backups, pool/archives, pool/home and so on, for each share I would like to use? Or can I do that a in a different way? I am currently reading along to find out about LDAP authentication and so on, but if I need separate... (5 Replies)
Discussion started by: PatrickBaer
5 Replies

5. Shell Programming and Scripting

Noob stuck - where do I put my loop

I'm a noob working on a script to take 3 user inputs. One of them is simply a variable: "poolname". The other 2 are cases: "groupa/groupb" and "enable/disable". "groupa" and "groupb" reference 2 files - groupa.txt or groupb.txt. These files simply consist of a list of server IP addresses and port... (2 Replies)
Discussion started by: *nixnoob
2 Replies