2 * Copyright (C) 2015 Oracle.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see http://www.gnu.org/copyleft/gpl.txt
19 #include "smatch_slist.h"
20 #include "smatch_extra.h"
27 static void ok_to_use(struct sm_state
*sm
, struct expression
*mod_expr
)
30 set_state(my_id
, sm
->name
, sm
->sym
, &ok
);
33 static void match_assign(const char *fn
, struct expression
*expr
, void *unused
)
35 set_state_expr(my_id
, expr
->left
, &positive
);
38 static void match_condition(struct expression
*expr
)
40 if (!get_state_expr(my_id
, expr
))
42 /* If the variable is zero that's ok */
43 set_true_false_states_expr(my_id
, expr
, NULL
, &ok
);
46 static void match_return(struct expression
*ret_value
)
48 struct smatch_state
*state
;
52 sm
= get_sm_state_expr(my_id
, ret_value
);
55 if (!slist_has_state(sm
->possible
, &positive
))
57 state
= get_state_expr(SMATCH_EXTRA
, ret_value
);
60 if (!get_absolute_min(ret_value
, &min
))
64 sm_msg("warn: warn: dma_mapping_error() doesn't return an error code");
67 void check_dma_mapping_error(int id
)
69 if (option_project
!= PROJ_KERNEL
)
73 add_function_assign_hook("dma_mapping_error", &match_assign
, NULL
);
74 add_function_assign_hook("pci_dma_mapping_error", &match_assign
, NULL
);
75 add_hook(&match_condition
, CONDITION_HOOK
);
76 add_hook(&match_return
, RETURN_HOOK
);
77 add_modification_hook(my_id
, &ok_to_use
);