File manager - Edit - /home/ferretapmx/public_html/quota.tar
Back
home/ferretapmx/etc/ferretap.com.mx/quota 0000640 00000004142 15231064704 0014507 0 ustar 00 ramon.ventasmayoreo:157286400 sistemas.candado:157286400 jefemost.candado:157286400 sistemas.glorieta:157286400 jefemost.glorieta:157286400 jefemost.central:157286400 atn.clientescentral:157286400 gastos:157286400 pisos.central:78643200 pisos.norte:78643200 pisos.candado:78643200 pisos.glorieta:75497472 vehiculos:104857600 recursos.humanos:524288000 auxsistemas.central:40894464 ventas.mayoreomagda:104857600 vtas.creditoctral:314572800 sistemasdos.cedis:78643200 vehiculos.dos:157286400 ventas.creditonorte:52428800 vtas.creditocandado:52428800 ventas.creditoglorieta:52428800 sistemas.cedis:943718400 gps.vehiculos:262144000 nominas:943718400 asistente.direccion:1073741824 jefemost.norte:524288000 bodega.candado:262144000 recepcion:489684992 credito.mayorista:262144000 carlos_vtasmayoreo:262144000 sistemas.central:262144000 ventas.mayoreo:157286400 sistemas.norte:157286400 f.reyero:314572800 telcel.fertap:262144000 ferrecedis:262144000 gerencia.glorieta:314572800 auditoria:1073741824 ventas.web:838860800 ventas.constructoras:838860800 asistente.general:545259520 jefe.auditoria:524288000 asistente.auditoria:419430400 gerencia.central:471859200 contadora.general:1048576000 credito.cobranza:524288000 auxsistemas2.central:262144000 admin.cedis:262144000 sistemas.g:1073741824 gerencia.cedis:262144000 gerencia.norte:1073741824 gerencia.rh:524288000 tony.ventasmayoreo:262144000 sistemas:524288000 facturacion.cedis:545259520 gerencia.huixtla:335544320 sistemas.huixtla:335544320 jefemost.huixtla:335544320 jcanete:5368709120 tesoreria:1073741824 dev.iva:1073741824 auxi.compras:1073741824 bi:1073741824 aux.tesoreia:1073741824 pagos.proveedores:1073741824 activosit:1073741824 gerente.pisos:1073741824 gerencia.pisos:1073741824 enrique.marin:1073741824 adriana.cancino:1073741824 auxpagos.proveedores:1073741824 gerencia.candado:314572800 contabilidad:524288000 ventascandado:1073741824 ventasglorieta:1073741824 ventascentro:1073741824 ventasnorte:1073741824 ventashuixtla:1073741824 ventascedis:1073741824 ventasmayoreo:1073741824 ventascredito:1073741824 aux.gastos:1073741824 ventasacabados:1073741824 gerencia.compras:1048576000 home/ferretapmx/etc/ferretap.mx/quota 0000640 00000000025 15231064710 0013723 0 ustar 00 activosit:1073741824 allocated_dquots 0000444 00000000003 15231211063 0007777 0 ustar 00 39 cache_hits 0000444 00000000011 15231211063 0006541 0 ustar 00 51173882 drops 0000444 00000000011 15231211063 0005576 0 ustar 00 51165783 free_dquots 0000444 00000000003 15231211063 0006770 0 ustar 00 18 lookups 0000444 00000000011 15231211063 0006143 0 ustar 00 51173925 reads 0000444 00000000003 15231211063 0005546 0 ustar 00 39 syncs 0000444 00000000006 15231211063 0005612 0 ustar 00 25104 warnings 0000644 00000000002 15231211063 0006301 0 ustar 00 1 writes 0000444 00000000012 15231211063 0005765 0 ustar 00 155406225 mkquota.h 0000644 00000003747 15231240132 0006402 0 ustar 00 /** mkquota.h * * Interface to the quota library. * * The quota library provides interface for creating and updating the quota * files and the ext4 superblock fields. It supports the new VFS_V1 quota * format. The quota library also provides support for keeping track of quotas * in memory. * The typical way to use the quota library is as follows: * { * quota_ctx_t qctx; * * quota_init_context(&qctx, fs, -1); * { * quota_compute_usage(qctx, -1); * AND/OR * quota_data_add/quota_data_sub/quota_data_inodes(); * } * quota_write_inode(qctx, USRQUOTA); * quota_write_inode(qctx, GRPQUOTA); * quota_release_context(&qctx); * } * * This initial version does not support reading the quota files. This support * will be added in near future. * * Aditya Kali <adityakali@google.com> */ #ifndef __QUOTA_QUOTAIO_H__ #define __QUOTA_QUOTAIO_H__ #include "ext2fs/ext2_fs.h" #include "ext2fs/ext2fs.h" #include "quotaio.h" #include "../e2fsck/dict.h" typedef struct quota_ctx *quota_ctx_t; struct quota_ctx { ext2_filsys fs; dict_t *quota_dict[MAXQUOTAS]; }; /* In mkquota.c */ errcode_t quota_init_context(quota_ctx_t *qctx, ext2_filsys fs, int qtype); void quota_data_inodes(quota_ctx_t qctx, struct ext2_inode *inode, ext2_ino_t ino, int adjust); void quota_data_add(quota_ctx_t qctx, struct ext2_inode *inode, ext2_ino_t ino, qsize_t space); void quota_data_sub(quota_ctx_t qctx, struct ext2_inode *inode, ext2_ino_t ino, qsize_t space); errcode_t quota_write_inode(quota_ctx_t qctx, int qtype); errcode_t quota_update_limits(quota_ctx_t qctx, ext2_ino_t qf_ino, int type); errcode_t quota_compute_usage(quota_ctx_t qctx); void quota_release_context(quota_ctx_t *qctx); errcode_t quota_remove_inode(ext2_filsys fs, int qtype); int quota_file_exists(ext2_filsys fs, int qtype, int fmt); void quota_set_sb_inum(ext2_filsys fs, ext2_ino_t ino, int qtype); errcode_t quota_compare_and_update(quota_ctx_t qctx, int qtype, int *usage_inconsistent); #endif /* __QUOTA_QUOTAIO_H__ */
| ver. 1.4 |
Github
|
.
| PHP 8.2.32 | Generation time: 0.06 |
proxy
|
phpinfo
|
Settings