Searched refs:self (Results 1 - 25 of 645) sorted by last modified time

1234567891011>>

/linux-master/net/tipc/
H A Dmsg.c705 u32 self = tipc_own_addr(net); local
728 if (sk.node != self)
729 msg_set_prevnode(msg, self);
/linux-master/drivers/firewire/
H A Dohci.c313 pcie_to_pci_bridge = pdev->bus->self;
402 ", self-IDs = " __stringify(OHCI_PARAM_DEBUG_SELFIDS)
1967 ohci_notice(ohci, "self ID receive error\n");
1972 * bytes in the self ID receive buffer. Since we also receive
1974 * bit extra to get the actual number of self IDs.
1994 * having a wrong gap count. In this case, the self IDs
1999 ohci_notice(ohci, "ignoring spurious self IDs\n");
2004 ohci_notice(ohci, "bad self ID %d/%d (%08x != ~%08x)\n",
2015 "could not construct local self ID\n");
2021 ohci_notice(ohci, "no self ID
[all...]
/linux-master/tools/testing/selftests/mm/
H A Dmdwe_test.c179 self->p = NULL;
180 self->flags = MAP_SHARED | MAP_ANONYMOUS;
181 self->size = getpagesize();
199 self->pid = fork();
200 ASSERT_GE(self->pid, 0) {
204 if (self->pid > 0) {
205 ret = waitpid(self->pid, &status, 0);
214 if (self->p && self->p != MAP_FAILED)
215 munmap(self
[all...]
/linux-master/tools/testing/selftests/
H A Dkselftest_harness.h37 * self->data = mytype_new();
38 * ASSERT_NE(NULL, self->data);
41 * mytype_free(self->data);
44 * EXPECT_EQ(1, is_my_data_good(self->data));
210 * the *self* is being passed to a helper directly.
227 * Defines the data provided to TEST_F()-defined tests as *self*. It should be
252 * datatype defined with FIXTURE_DATA() will be exposed as *self* for the
263 FIXTURE_DATA(fixture_name) __attribute__((unused)) *self, \
278 * datatype defined with FIXTURE_DATA() will be exposed as *self* for the
286 FIXTURE_DATA(fixture_name) __attribute__((unused)) *self, \
[all...]
/linux-master/tools/net/ynl/lib/
H A Dynl.py81 def __init__(self, nl_msg):
82 self.nl_msg = nl_msg
84 def __str__(self):
85 return f"Netlink error: {os.strerror(-self.nl_msg.error)}\n{self.nl_msg}"
105 def __init__(self, raw, offset):
106 self._len, self._type = struct.unpack("HH", raw[offset : offset + 4])
107 self.type = self
[all...]
/linux-master/arch/arc/kernel/
H A Dkprobes.c340 int __kprobes kprobe_exceptions_notify(struct notifier_block *self, argument
/linux-master/fs/bcachefs/
H A Dsuper.c1337 __set_bit(ca->dev_idx, ca->self.d);
H A Dbcachefs.h561 struct bch_devs_mask self; member in struct:bch_dev
/linux-master/drivers/usb/host/
H A Dxhci-trace.h518 __entry->busnum = port->rhub->hcd->self.busnum;
H A Dxhci-ring.c800 xhci_to_hcd(xhci)->self.bandwidth_isoc_reqs--;
801 if (xhci_to_hcd(xhci)->self.bandwidth_isoc_reqs == 0) {
815 struct device *dev = xhci_to_hcd(xhci)->self.sysdev;
1928 hcd->self.busnum, hcd_portnum + 1, port_id, portsc);
1960 usb_hcd_start_port_resume(&hcd->self, hcd_portnum);
1979 usb_hcd_start_port_resume(&hcd->self, hcd_portnum);
2002 usb_wakeup_notification(hcd->self.root_hub,
2045 __func__, hcd->self.busnum);
2128 (td->urb->dev->tt->hub != xhci_to_hcd(xhci)->self.root_hub) &&
3526 struct device *dev = xhci_to_hcd(xhci)->self
[all...]
/linux-master/drivers/usb/core/
H A Dport.c659 peer_hdev = peer_hcd->self.root_hub;
H A Dhub.c3309 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
3331 if (!usb_device_supports_ltm(hcd->self.root_hub) ||
/linux-master/tools/perf/util/
H A Dannotate.c114 .self = {
116 .children = LIST_HEAD_INIT(stackop_type.self.children),
/linux-master/drivers/pci/
H A Dquirks.c4362 !pci_is_pcie(pdev) && pci_is_pcie(pdev->bus->self) &&
4363 pci_pcie_type(pdev->bus->self) != PCI_EXP_TYPE_PCI_BRIDGE)
5757 struct pci_dev *bridge = bus->self;
/linux-master/drivers/iommu/intel/
H A Diommu.c3293 bridge = bus->self;
/linux-master/kernel/trace/
H A Dtrace_events.c759 struct task_struct *self,
766 trace_filter_add_remove_task(pid_list, self, task);
769 trace_filter_add_remove_task(pid_list, self, task);
3259 static int trace_module_notify(struct notifier_block *self, argument
4223 * it and the self test should not be on.
4226 pr_warn("Enabled event during self test!\n");
758 event_filter_pid_sched_process_fork(void *data, struct task_struct *self, struct task_struct *task) argument
/linux-master/kernel/
H A Dkprobes.c1871 int __weak kprobe_exceptions_notify(struct notifier_block *self, argument
/linux-master/include/acpi/
H A Dacpi_bus.h143 struct acpi_device *self; member in struct:acpi_hotplug_context
575 hp->self = adev;
/linux-master/arch/x86/kernel/
H A Dsetup.c675 dump_kernel_offset(struct notifier_block *self, unsigned long v, void *p) argument
/linux-master/tools/testing/selftests/net/
H A Dbind_wildcard.c693 static void setup_addr(FIXTURE_DATA(bind_wildcard) *self, int i,
697 struct sockaddr_in *addr4 = &self->addr[i].addr4;
704 self->addrlen[i] = sizeof(struct sockaddr_in);
706 struct sockaddr_in6 *addr6 = &self->addr[i].addr6;
713 self->addrlen[i] = sizeof(struct sockaddr_in6);
719 setup_addr(self, 0, variant->family[0], variant->addr[0]);
720 setup_addr(self, 1, variant->family[1], variant->addr[1]);
722 setup_addr(self, 2, AF_INET, &in4addr_any);
723 setup_addr(self, 3, AF_INET, &in4addr_loopback);
725 setup_addr(self,
739 bind_socket(struct __test_metadata *_metadata, FIXTURE_DATA(bind_wildcard) *self, const FIXTURE_VARIANT(bind_wildcard) *variant, int i, int reuse) argument
[all...]
H A Dtls.c221 ulp_sock_pair(_metadata, &self->fd, &self->cfd, &self->notls);
226 close(self->fd);
227 close(self->cfd);
239 EXPECT_EQ(send(self->fd, test_str, send_len, 0), send_len);
240 EXPECT_NE(recv(self->cfd, buf, send_len, 0), -1);
250 EXPECT_EQ(setsockopt(self->fd, SOL_TLS, TLS_TX, &tls12, sizeof(struct tls12_crypto_info_aes_gcm_128)), -1);
254 EXPECT_EQ(setsockopt(self->fd, SOL_TLS, TLS_TX, &tls12, sizeof(struct tls12_crypto_info_aes_gcm_128)), -1);
258 EXPECT_EQ(setsockopt(self
432 chunked_sendfile(struct __test_metadata *_metadata, struct _test_data_tls *self, uint16_t chunk_size, uint16_t extra_payload_size) argument
1352 test_mutliproc(struct __test_metadata *_metadata, struct _test_data_tls *self, bool sendpg, unsigned int n_readers, unsigned int n_writers) argument
[all...]
/linux-master/drivers/net/ethernet/intel/e1000e/
H A Dnetdev.c6764 struct pci_dev *us_dev = pdev->bus->self;
6793 struct pci_dev *parent = pdev->bus->self;
/linux-master/arch/arm64/kvm/
H A Darm.c2045 static int hyp_init_cpu_pm_notifier(struct notifier_block *self, argument
/linux-master/fs/proc/
H A DMakefile28 proc-y += self.o
/linux-master/drivers/usb/dwc2/
H A Dhcd.c466 hcd->self.is_b_host = dwc2_hcd_is_b_host(hsotg);
474 hcd->self.is_b_host = 0;
3257 return hcd->self.b_hnp_enable;
5316 hcd->self.otg_port = hsotg->otg_port;
5319 hcd->self.sg_tablesize = 0;
5324 otg_set_host(hsotg->uphy->otg, &hcd->self);
5335 device_wakeup_enable(hcd->self.controller);
5724 struct usb_device *root_hub = dwc2_hsotg_to_hcd(dwc2)->self.root_hub;

Completed in 389 milliseconds

1234567891011>>