Deleted Added
full compact
35c35
< * $FreeBSD: head/sys/geom/geom.h 107453 2002-12-01 15:54:39Z phk $
---
> * $FreeBSD: head/sys/geom/geom.h 107953 2002-12-16 22:33:27Z phk $
78c78
< typedef void g_dumpconf_t (struct sbuf *, char *indent, struct g_geom *,
---
> typedef void g_dumpconf_t (struct sbuf *, const char *indent, struct g_geom *,
89c89
< char *name;
---
> const char *name;
170c170
< int index;
---
> u_int index;
200c200
< void g_trace(int level, char *, ...);
---
> void g_trace(int level, const char *, ...);
225,228c225,228
< int g_handleattr(struct bio *bp, char *attribute, void *val, int len);
< int g_handleattr_int(struct bio *bp, char *attribute, int val);
< int g_handleattr_off_t(struct bio *bp, char *attribute, off_t val);
< struct g_geom * g_insert_geom(char *class, struct g_consumer *cp);
---
> int g_handleattr(struct bio *bp, const char *attribute, void *val, int len);
> int g_handleattr_int(struct bio *bp, const char *attribute, int val);
> int g_handleattr_off_t(struct bio *bp, const char *attribute, off_t val);
> struct g_geom * g_insert_geom(const char *class, struct g_consumer *cp);
230,231c230,231
< struct g_geom * g_new_geomf(struct g_class *mp, char *fmt, ...);
< struct g_provider * g_new_providerf(struct g_geom *gp, char *fmt, ...);
---
> struct g_geom * g_new_geomf(struct g_class *mp, const char *fmt, ...);
> struct g_provider * g_new_providerf(struct g_geom *gp, const char *fmt, ...);