summaryrefslogtreecommitdiffstats
path: root/sys/sys/mbuf.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/sys/mbuf.h')
-rw-r--r--sys/sys/mbuf.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/sys/sys/mbuf.h b/sys/sys/mbuf.h
index 1056ceb..a1fa6c8 100644
--- a/sys/sys/mbuf.h
+++ b/sys/sys/mbuf.h
@@ -72,7 +72,6 @@
*/
struct mb_args {
int flags; /* Flags for mbuf being allocated */
- int how; /* How to allocate: M_WAITOK or M_DONTWAIT */
short type; /* Type of mbuf being allocated */
};
#endif /* _KERNEL */
@@ -343,7 +342,6 @@ m_get(int how, short type)
struct mb_args args;
args.flags = 0;
- args.how = how;
args.type = type;
return (uma_zalloc_arg(zone_mbuf, &args, how));
}
@@ -357,7 +355,6 @@ m_getclr(int how, short type)
struct mb_args args;
args.flags = 0;
- args.how = how;
args.type = type;
m = uma_zalloc_arg(zone_mbuf, &args, how);
if (m != NULL)
@@ -372,7 +369,6 @@ m_gethdr(int how, short type)
struct mb_args args;
args.flags = M_PKTHDR;
- args.how = how;
args.type = type;
return (uma_zalloc_arg(zone_mbuf, &args, how));
}
@@ -384,7 +380,6 @@ m_getcl(int how, short type, int flags)
struct mb_args args;
args.flags = flags;
- args.how = how;
args.type = type;
return (uma_zalloc_arg(zone_pack, &args, how));
}
OpenPOWER on IntegriCloud