| /linux-4.4.14/drivers/staging/lustre/include/linux/libcfs/linux/ | 
| D | libcfs.h | 101 #define __CHECK_STACK(msgdata, mask, cdls)			      \  argument 104 		LIBCFS_DEBUG_MSG_DATA_INIT(msgdata, D_WARNING, NULL);   \ 106 		libcfs_debug_msg(msgdata,			       \ 109 		(msgdata)->msg_mask = mask;			     \ 110 		(msgdata)->msg_cdls = cdls;			     \ 115 #define CFS_CHECK_STACK(msgdata, mask, cdls)  __CHECK_STACK(msgdata, mask, cdls)  argument 117 #define CFS_CHECK_STACK(msgdata, mask, cdls) do {} while (0)  argument
  | 
| /linux-4.4.14/drivers/staging/lustre/lustre/libcfs/linux/ | 
| D | linux-debug.c | 132 void libcfs_run_lbug_upcall(struct libcfs_debug_msg_data *msgdata)  in libcfs_run_lbug_upcall()  argument 137 	snprintf(buf, sizeof(buf), "%d", msgdata->msg_line);  in libcfs_run_lbug_upcall() 140 	argv[2] = (char *)msgdata->msg_file;  in libcfs_run_lbug_upcall() 141 	argv[3] = (char *)msgdata->msg_fn;  in libcfs_run_lbug_upcall() 149 void __noreturn lbug_with_loc(struct libcfs_debug_msg_data *msgdata)  in lbug_with_loc()  argument 152 	libcfs_debug_msg(msgdata, "LBUG\n");  in lbug_with_loc() 162 	libcfs_run_lbug_upcall(msgdata);  in lbug_with_loc()
  | 
| D | linux-tracefile.c | 191 			struct libcfs_debug_msg_data *msgdata,  in cfs_set_ptldebug_header()  argument 198 	header->ph_subsys = msgdata->msg_subsys;  in cfs_set_ptldebug_header() 199 	header->ph_mask = msgdata->msg_mask;  in cfs_set_ptldebug_header() 208 	header->ph_line_num = msgdata->msg_line;  in cfs_set_ptldebug_header()
  | 
| /linux-4.4.14/drivers/usb/misc/ | 
| D | appledisplay.c | 79 	u8 *msgdata;			/* control message data buffer */  member 149 	pdata->msgdata[0] = 0x10;  in appledisplay_bl_update_status() 150 	pdata->msgdata[1] = bd->props.brightness;  in appledisplay_bl_update_status() 159 		pdata->msgdata, 2,  in appledisplay_bl_update_status() 179 		pdata->msgdata, 2,  in appledisplay_bl_get_brightness() 181 	brightness = pdata->msgdata[1];  in appledisplay_bl_get_brightness() 253 	pdata->msgdata = kmalloc(ACD_MSG_BUFFER_LEN, GFP_KERNEL);  in appledisplay_probe() 254 	if (!pdata->msgdata) {  in appledisplay_probe() 334 		kfree(pdata->msgdata);  in appledisplay_probe() 352 		kfree(pdata->msgdata);  in appledisplay_disconnect()
  | 
| /linux-4.4.14/drivers/staging/lustre/lustre/libcfs/ | 
| D | tracefile.c | 243 int libcfs_debug_msg(struct libcfs_debug_msg_data *msgdata,  in libcfs_debug_msg()  argument 250 	rc = libcfs_debug_vmsg2(msgdata, format, args, NULL);  in libcfs_debug_msg() 257 int libcfs_debug_vmsg2(struct libcfs_debug_msg_data *msgdata,  in libcfs_debug_vmsg2()  argument 274 	int			mask = msgdata->msg_mask;  in libcfs_debug_vmsg2() 275 	const char		*file = kbasename(msgdata->msg_file);  in libcfs_debug_vmsg2() 276 	struct cfs_debug_limit_state   *cdls = msgdata->msg_cdls;  in libcfs_debug_vmsg2() 283 	cfs_set_ptldebug_header(&header, msgdata, CDEBUG_STACK());  in libcfs_debug_vmsg2() 299 	if (msgdata->msg_fn)  in libcfs_debug_vmsg2() 300 		known_size += strlen(msgdata->msg_fn) + 1;  in libcfs_debug_vmsg2() 358 		       file, msgdata->msg_line, msgdata->msg_fn);  in libcfs_debug_vmsg2() [all …] 
 | 
| D | tracefile.h | 320 		LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_EMERG, NULL);     \ 322 					   &msgdata);		   \
  | 
| /linux-4.4.14/drivers/staging/lustre/include/linux/libcfs/ | 
| D | libcfs_debug.h | 212 	static struct libcfs_debug_msg_data msgdata;			\ 214 	CFS_CHECK_STACK(&msgdata, mask, cdls);				\ 217 		LIBCFS_DEBUG_MSG_DATA_INIT(&msgdata, mask, cdls);	\ 218 		libcfs_debug_msg(&msgdata, format, ## __VA_ARGS__);	\ 245 int libcfs_debug_msg(struct libcfs_debug_msg_data *msgdata, 249 int libcfs_debug_vmsg2(struct libcfs_debug_msg_data *msgdata,
  | 
| D | libcfs_private.h | 86 	LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_EMERG, NULL);	     \ 87 	lbug_with_loc(&msgdata);					\
  | 
| /linux-4.4.14/drivers/staging/lustre/lustre/include/ | 
| D | lustre_dlm.h | 992 #define ldlm_lock_debug(msgdata, mask, cdls, lock, fmt, a...) do {      \  argument 993 	CFS_CHECK_STACK(msgdata, mask, cdls);			   \ 998 		_ldlm_lock_debug(lock, msgdata, fmt, ##a);	      \ 1011 	LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, mask, &_ldlm_cdls);	      \ 1012 	ldlm_lock_debug(&msgdata, mask, &_ldlm_cdls, lock, "### " fmt, ##a);\ 1021 		LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_DLMTRACE, NULL);      \ 1022 		ldlm_lock_debug(&msgdata, D_DLMTRACE, NULL, lock,	    \
  | 
| D | lu_object.h | 783 	LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, mask, NULL);		  \ 786 		lu_object_print(env, &msgdata, lu_cdebug_printer, object);\ 796 	LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, mask, NULL);		\ 799 		lu_object_header_print(env, &msgdata, lu_cdebug_printer,\ 801 		lu_cdebug_printer(env, &msgdata, "\n");		 \
  | 
| D | lustre_net.h | 1668 #define debug_req(msgdata, mask, cdls, req, fmt, a...)			\  argument 1670 	CFS_CHECK_STACK(msgdata, mask, cdls);				 \ 1675 		_debug_req((req), msgdata, fmt, ##a);			 \ 1686 		LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, level, &cdls);	    \ 1687 		debug_req(&msgdata, level, &cdls, req, "@@@ "fmt" ", ## args);\ 1689 		LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, level, NULL);	     \ 1690 		debug_req(&msgdata, level, NULL, req, "@@@ "fmt" ", ## args); \
  | 
| D | cl_object.h | 1094 	LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, mask, NULL);		\ 1097 		cl_page_print(env, &msgdata, lu_cdebug_printer, page);  \ 1107 	LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, mask, NULL);		      \ 1110 		cl_page_header_print(env, &msgdata, lu_cdebug_printer, page); \ 1833 	LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, mask, NULL);		\ 1836 		cl_lock_print(env, &msgdata, lu_cdebug_printer, lock);  \
  | 
| /linux-4.4.14/drivers/staging/lustre/lustre/lov/ | 
| D | lovsub_dev.c | 135 		LIBCFS_DEBUG_MSG_DATA_DECL(msgdata, D_ERROR, NULL);  in lovsub_device_free() 136 		lu_site_print(env, d->ld_site, &msgdata, lu_cdebug_printer);  in lovsub_device_free()
  | 
| /linux-4.4.14/drivers/gpu/drm/msm/edp/ | 
| D | edp_aux.c | 47 	u8 *msgdata = msg->buffer;  in edp_msg_fifo_tx()  local 71 		reg = (i < 4) ? data[i] : msgdata[i - 4];  in edp_msg_fifo_tx()
  | 
| /linux-4.4.14/drivers/staging/lustre/lustre/ldlm/ | 
| D | ldlm_lock.c | 1891 		      struct libcfs_debug_msg_data *msgdata,  in _ldlm_lock_debug()  argument 1910 		libcfs_debug_vmsg2(msgdata, fmt, args,  in _ldlm_lock_debug() 1926 		libcfs_debug_vmsg2(msgdata, fmt, args,  in _ldlm_lock_debug() 1946 		libcfs_debug_vmsg2(msgdata, fmt, args,  in _ldlm_lock_debug() 1965 		libcfs_debug_vmsg2(msgdata, fmt, args,  in _ldlm_lock_debug() 1984 		libcfs_debug_vmsg2(msgdata, fmt, args,  in _ldlm_lock_debug()
  | 
| /linux-4.4.14/drivers/staging/lustre/lustre/obdclass/ | 
| D | lu_object.c | 445 	struct libcfs_debug_msg_data *msgdata = cookie;  in lu_cdebug_printer()  local 464 		if (cfs_cdebug_show(msgdata->msg_mask, msgdata->msg_subsys))  in lu_cdebug_printer() 465 			libcfs_debug_msg(msgdata, "%s", key->lck_area);  in lu_cdebug_printer()
  | 
| /linux-4.4.14/drivers/media/common/siano/ | 
| D | smscoreapi.c | 1587 			u32 *msgdata = (u32 *) phdr;  in smscore_onresponse()  local 1588 			coredev->gpio_get_res = msgdata[1];  in smscore_onresponse()
  | 
| /linux-4.4.14/drivers/staging/lustre/lustre/ptlrpc/ | 
| D | pack_generic.c | 2167 		struct libcfs_debug_msg_data *msgdata,  in _debug_req()  argument 2186 	libcfs_debug_vmsg2(msgdata, fmt, args,  in _debug_req()
  |