diff options
author | Panu Matilainen <pmatilai@redhat.com> | 2009-10-27 10:57:35 +0200 |
---|---|---|
committer | Panu Matilainen <pmatilai@redhat.com> | 2009-10-27 10:57:35 +0200 |
commit | 2222e81e1cf74bbf78acb9969592ab06e2289929 (patch) | |
tree | 194098830e71732b6959fb0751c6f86f42eb3f0e /lib/rpmts_internal.h | |
parent | dcba14d575eb6396075e3976b898c98ddd17874f (diff) | |
download | librpm-tizen-2222e81e1cf74bbf78acb9969592ab06e2289929.tar.gz librpm-tizen-2222e81e1cf74bbf78acb9969592ab06e2289929.tar.bz2 librpm-tizen-2222e81e1cf74bbf78acb9969592ab06e2289929.zip |
Make disk space problem reporting slightly saner (RhBug:517418)
- Only report disk space/inode issues for packages that are affected
instead of piling up all the problems in all filesystems on all remaining
packages
- The messages are still ambiguous at best, need to figure out something
better one of these days...
Diffstat (limited to 'lib/rpmts_internal.h')
-rw-r--r-- | lib/rpmts_internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/rpmts_internal.h b/lib/rpmts_internal.h index 6189fc13b..1b0f847b4 100644 --- a/lib/rpmts_internal.h +++ b/lib/rpmts_internal.h @@ -20,6 +20,8 @@ struct diskspaceInfo_s { int64_t bsize; /*!< File system block size. */ int64_t bavail; /*!< No. of blocks available. */ int64_t iavail; /*!< No. of inodes available. */ + int64_t obneeded; /*!< Bookkeeping to avoid duplicate reports */ + int64_t oineeded; /*!< Bookkeeping to avoid duplicate reports */ }; /** \ingroup rpmts |