mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
The only user of util_proc_mnt_get_entry() so far was util_path_sysfs(). With the simplified version there is no user left. Remove util_proc_mnt_get_entry() and related code. Reviewed-by: Ingo Franzki <ifranzki@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
37 lines
812 B
C
37 lines
812 B
C
/*
|
|
* Scanner for the /proc files
|
|
*
|
|
* Copyright IBM Corp. 2001, 2017
|
|
*
|
|
* s390-tools is free software; you can redistribute it and/or modify
|
|
* it under the terms of the MIT license. See LICENSE for details.
|
|
*
|
|
*/
|
|
|
|
#ifndef LIB_UTIL_PROC_H
|
|
#define LIB_UTIL_PROC_H
|
|
|
|
#include <ctype.h>
|
|
#include <sys/types.h>
|
|
|
|
|
|
struct util_proc_part_entry {
|
|
dev_t device;
|
|
size_t blockcount;
|
|
char *name;
|
|
};
|
|
|
|
struct util_proc_dev_entry {
|
|
int blockdev;
|
|
dev_t device;
|
|
char *name;
|
|
};
|
|
|
|
int util_proc_part_get_entry(dev_t device, struct util_proc_part_entry *entry);
|
|
void util_proc_part_free_entry(struct util_proc_part_entry *entry);
|
|
int util_proc_dev_get_entry(dev_t dev, int blockdev,
|
|
struct util_proc_dev_entry *entry);
|
|
void util_proc_dev_free_entry(struct util_proc_dev_entry *entry);
|
|
|
|
#endif /* LIB_UTIL_PROC_H */
|