mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-27 04:32:16 +03:00
Fix stack noinline
Certain function must never be automatically inlined by gcc because they are stack heavy or called recursively. This patch flags all such functions I've found as 'noinline' to prevent gcc from making the optimization. Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
This commit is contained in:
@@ -937,7 +937,7 @@ restore_read(struct restorearg *ra, int len)
|
||||
return (rv);
|
||||
}
|
||||
|
||||
static void
|
||||
noinline static void
|
||||
backup_byteswap(dmu_replay_record_t *drr)
|
||||
{
|
||||
#define DO64(X) (drr->drr_u.X = BSWAP_64(drr->drr_u.X))
|
||||
@@ -1019,7 +1019,7 @@ backup_byteswap(dmu_replay_record_t *drr)
|
||||
#undef DO32
|
||||
}
|
||||
|
||||
static int
|
||||
noinline static int
|
||||
restore_object(struct restorearg *ra, objset_t *os, struct drr_object *drro)
|
||||
{
|
||||
int err;
|
||||
@@ -1103,7 +1103,7 @@ restore_object(struct restorearg *ra, objset_t *os, struct drr_object *drro)
|
||||
}
|
||||
|
||||
/* ARGSUSED */
|
||||
static int
|
||||
noinline static int
|
||||
restore_freeobjects(struct restorearg *ra, objset_t *os,
|
||||
struct drr_freeobjects *drrfo)
|
||||
{
|
||||
@@ -1127,7 +1127,7 @@ restore_freeobjects(struct restorearg *ra, objset_t *os,
|
||||
return (0);
|
||||
}
|
||||
|
||||
static int
|
||||
noinline static int
|
||||
restore_write(struct restorearg *ra, objset_t *os,
|
||||
struct drr_write *drrw)
|
||||
{
|
||||
@@ -1273,7 +1273,7 @@ restore_spill(struct restorearg *ra, objset_t *os, struct drr_spill *drrs)
|
||||
}
|
||||
|
||||
/* ARGSUSED */
|
||||
static int
|
||||
noinline static int
|
||||
restore_free(struct restorearg *ra, objset_t *os,
|
||||
struct drr_free *drrf)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user