/kernel/linux/linux-5.10/arch/x86/boot/tools/ |
H A D | build.c | 142 va_list args; in die() local 143 va_start(args, str); in die() 144 vfprintf(stderr, str, args); in die() 145 va_end(args); in die()
|
/kernel/linux/linux-5.10/drivers/firmware/efi/ |
H A D | runtime-wrappers.c | 42 #define efi_call_virt(f, args...) \ 43 efi_call_virt_pointer(efi.runtime, f, args) 44 #define __efi_call_virt(f, args...) \ 45 __efi_call_virt_pointer(efi.runtime, f, args)
|
/kernel/linux/linux-6.6/arch/powerpc/kernel/ |
H A D | hw_breakpoint.c | 376 int hw_breakpoint_handler(struct die_args *args) in hw_breakpoint_handler() argument 381 struct pt_regs *regs = args->regs; in hw_breakpoint_handler() 506 static int single_step_dabr_instruction(struct die_args *args) in single_step_dabr_instruction() argument 508 struct pt_regs *regs = args->regs; in single_step_dabr_instruction()
|
/kernel/linux/linux-5.10/drivers/media/dvb-frontends/ |
H A D | s921.c | 27 #define rc(args...) do { \ 28 printk(KERN_ERR "s921: " args); \ 31 #define dprintk(args...) \ 35 printk(args); \
|
/kernel/linux/linux-5.10/drivers/md/ |
H A D | dm-flakey.c | 55 {0, 6, "Invalid number of feature args"}, in parse_features() 174 * <dev_path> <offset> <up interval> <down interval> [<#feature args> [<arg>]*] 176 * Feature args: 469 struct dm_report_zones_args *args, unsigned int nr_zones) in flakey_report_zones() 472 sector_t sector = flakey_map_sector(ti, args->next_sector); in flakey_report_zones() 474 args->start = fc->start; in flakey_report_zones() 476 dm_report_zones_cb, args); in flakey_report_zones() 468 flakey_report_zones(struct dm_target *ti, struct dm_report_zones_args *args, unsigned int nr_zones) flakey_report_zones() argument
|
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/ |
H A D | i915_query.c | 432 struct drm_i915_query *args = data; in i915_query_ioctl() local 434 u64_to_user_ptr(args->items_ptr); in i915_query_ioctl() 437 if (args->flags != 0) in i915_query_ioctl() 440 for (i = 0; i < args->num_items; i++, user_item_ptr++) { in i915_query_ioctl()
|
/kernel/linux/linux-5.10/drivers/media/pci/cx23885/ |
H A D | cx23885.h | 453 #define call_all(dev, o, f, args...) \ 454 v4l2_device_call_all(&dev->v4l2_dev, 0, o, f, ##args) 459 #define call_hw(dev, grpid, o, f, args...) \ 460 v4l2_device_call_all(&dev->v4l2_dev, grpid, o, f, ##args)
|
/kernel/linux/linux-5.10/drivers/media/pci/cx88/ |
H A D | cx88.h | 417 #define call_hw(core, grpid, o, f, args...) \ 423 grpid, o, f, ##args); \ 429 #define call_all(core, o, f, args...) call_hw(core, 0, o, f, ##args)
|
/kernel/linux/linux-5.10/drivers/media/pci/bt8xx/ |
H A D | bttv.h | 365 #define bttv_call_all(btv, o, f, args...) \ 366 v4l2_device_call_all(&btv->c.v4l2_dev, 0, o, f, ##args) 368 #define bttv_call_all_err(btv, o, f, args...) \ 369 v4l2_device_call_until_err(&btv->c.v4l2_dev, 0, o, f, ##args)
|
/kernel/linux/linux-5.10/drivers/net/wireless/realtek/rtlwifi/ |
H A D | debug.c | 17 va_list args; in _rtl_dbg_print() local 19 va_start(args, fmt); in _rtl_dbg_print() 22 vaf.va = &args; in _rtl_dbg_print() 26 va_end(args); in _rtl_dbg_print()
|
/kernel/linux/linux-5.10/drivers/phy/broadcom/ |
H A D | phy-bcm63xx-usbh.c | 368 struct of_phandle_args *args) in bcm63xx_usbh_phy_xlate() 372 usbh->device_mode = !!args->args[0]; in bcm63xx_usbh_phy_xlate() 374 return of_phy_simple_xlate(dev, args); in bcm63xx_usbh_phy_xlate() 367 bcm63xx_usbh_phy_xlate(struct device *dev, struct of_phandle_args *args) bcm63xx_usbh_phy_xlate() argument
|
/kernel/linux/linux-5.10/drivers/phy/lantiq/ |
H A D | phy-lantiq-vrx200-pcie.c | 361 struct of_phandle_args *args) in ltq_vrx200_pcie_phy_xlate() 366 if (args->args_count != 1) { in ltq_vrx200_pcie_phy_xlate() 371 mode = args->args[0]; in ltq_vrx200_pcie_phy_xlate() 360 ltq_vrx200_pcie_phy_xlate(struct device *dev, struct of_phandle_args *args) ltq_vrx200_pcie_phy_xlate() argument
|
/kernel/linux/linux-5.10/drivers/nfc/ |
H A D | nfcsim.c | 16 #define NFCSIM_ERR(d, fmt, args...) nfc_err(&d->nfc_digital_dev->nfc_dev->dev, \ 17 "%s: " fmt, __func__, ## args) 19 #define NFCSIM_DBG(d, fmt, args...) dev_dbg(&d->nfc_digital_dev->nfc_dev->dev, \ 20 "%s: " fmt, __func__, ## args)
|
/kernel/linux/linux-5.10/drivers/usb/gadget/udc/aspeed-vhub/ |
H A D | ep0.c | 72 va_list args; in __ast_vhub_simple_reply() local 74 va_start(args, len); in __ast_vhub_simple_reply() 78 buffer[i] = va_arg(args, int); in __ast_vhub_simple_reply() 79 va_end(args); in __ast_vhub_simple_reply()
|
/kernel/linux/linux-5.10/tools/perf/scripts/python/ |
H A D | export-to-sqlite.py | 94 def printerr(*args, **keyword_args): 95 print(*args, file=sys.stderr, **keyword_args) 97 def printdate(*args, **kw_args): 98 print(datetime.datetime.today(), *args, sep=' ', **kw_args)
|
/kernel/linux/linux-5.10/tools/bpf/resolve_btfids/ |
H A D | main.c | 120 va_list args; in eprintf() local 124 va_start(args, fmt); in eprintf() 125 ret = vfprintf(stderr, fmt, args); in eprintf() 126 va_end(args); in eprintf()
|
/kernel/linux/linux-5.10/fs/lockd/ |
H A D | mon.c | 74 struct rpc_create_args args = { in nsm_create() local 88 return rpc_create(&args); in nsm_create() 96 struct nsm_args args = { in nsm_mon_unmon() local 105 .rpc_argp = &args, in nsm_mon_unmon()
|
/kernel/linux/linux-5.10/include/uapi/linux/ |
H A D | v4l2-dv-timings.h | 25 #define V4L2_INIT_BT_TIMINGS(_width, args...) \ 26 { .bt = { _width , ## args } } 28 #define V4L2_INIT_BT_TIMINGS(_width, args...) \ 29 .bt = { _width , ## args }
|
/kernel/linux/linux-5.10/fs/exfat/ |
H A D | exfat_fs.h | 506 #define exfat_fs_error(sb, fmt, args...) \ 507 __exfat_fs_error(sb, 1, fmt, ## args) 508 #define exfat_fs_error_ratelimit(sb, fmt, args...) \ 510 fmt, ## args)
|
/kernel/linux/linux-5.10/drivers/virt/nitro_enclaves/ |
H A D | ne_pci_dev.c | 184 * @args: PCI device private data structure. 190 static irqreturn_t ne_reply_handler(int irq, void *args) in ne_reply_handler() argument 192 struct ne_pci_dev *ne_pci_dev = (struct ne_pci_dev *)args; in ne_reply_handler() 271 * @args: PCI device private data structure. 277 static irqreturn_t ne_event_handler(int irq, void *args) in ne_event_handler() argument 279 struct ne_pci_dev *ne_pci_dev = (struct ne_pci_dev *)args; in ne_event_handler()
|
/kernel/linux/linux-5.10/kernel/ |
H A D | crash_core.c | 353 va_list args; in vmcoreinfo_append_str() local 357 va_start(args, fmt); in vmcoreinfo_append_str() 358 r = vscnprintf(buf, sizeof(buf), fmt, args); in vmcoreinfo_append_str() 359 va_end(args); in vmcoreinfo_append_str()
|
/kernel/linux/linux-5.10/net/ipv6/ |
H A D | seg6.c | 285 iter = (struct rhashtable_iter *)cb->args[0]; in seg6_genl_dumphmac_start() 292 cb->args[0] = (long)iter; in seg6_genl_dumphmac_start() 302 struct rhashtable_iter *iter = (struct rhashtable_iter *)cb->args[0]; in seg6_genl_dumphmac_done() 313 struct rhashtable_iter *iter = (struct rhashtable_iter *)cb->args[0]; in seg6_genl_dumphmac()
|
/kernel/linux/linux-5.10/net/netfilter/ |
H A D | nf_conntrack_helper.c | 376 va_list args; in nf_ct_helper_log() local 378 va_start(args, fmt); in nf_ct_helper_log() 381 vaf.va = &args; in nf_ct_helper_log() 392 va_end(args); in nf_ct_helper_log()
|
/kernel/linux/linux-5.10/drivers/media/usb/cx231xx/ |
H A D | cx231xx-i2c.c | 30 #define dprintk1(lvl, fmt, args...) \ 33 printk(fmt, ##args); \ 37 #define dprintk2(lvl, fmt, args...) \ 41 dev->name, __func__ , ##args); \
|
/kernel/linux/linux-5.10/drivers/phy/amlogic/ |
H A D | phy-meson-g12a-usb3-pcie.c | 353 struct of_phandle_args *args) in phy_g12a_usb3_pcie_xlate() 358 if (args->args_count < 1) { in phy_g12a_usb3_pcie_xlate() 363 mode = args->args[0]; in phy_g12a_usb3_pcie_xlate() 352 phy_g12a_usb3_pcie_xlate(struct device *dev, struct of_phandle_args *args) phy_g12a_usb3_pcie_xlate() argument
|