Home
last modified time | relevance | path

Searched refs:lbuf (Results 1 – 17 of 17) sorted by relevance

/linux/fs/jfs/
H A Djfs_logmgr.c73 static struct lbuf *log_redrive_list;
174 static struct lbuf *lbmAllocate(struct jfs_log * log, int);
175 static void lbmFree(struct lbuf * bp);
176 static void lbmfree(struct lbuf * bp);
177 static int lbmRead(struct jfs_log * log, int pn, struct lbuf ** bpp);
178 static void lbmWrite(struct jfs_log * log, struct lbuf * bp, int flag, int cant_block);
179 static void lbmDirectWrite(struct jfs_log * log, struct lbuf * bp, int flag);
180 static int lbmIOWait(struct lbuf * bp, int flag);
182 static void lbmStartIO(struct lbuf * bp);
348 struct lbuf *bp; /* dst log page buffer */ in lmWriteRecord()
[all …]
H A Djfs_logmgr.h368 struct lbuf *lbuf_free; /* 4: free lbufs */
375 struct lbuf *bp; /* 4: current log page buffer */
398 struct lbuf *wqueue; /* 4: log pageout queue */
434 struct lbuf { struct
442 struct lbuf *l_wqnext; /* 4: write queue link */ argument
443 struct lbuf *l_freelist; /* 4: freelistlink */ argument
H A Djfs_txnmgr.h45 struct lbuf *bp;
/linux/arch/powerpc/platforms/pseries/
H A Dhvconsole.c32 unsigned long *lbuf = (unsigned long *)buf; in hvc_get_chars() local
35 lbuf[0] = be64_to_cpu(retbuf[1]); in hvc_get_chars()
36 lbuf[1] = be64_to_cpu(retbuf[2]); in hvc_get_chars()
57 unsigned long *lbuf = (unsigned long *) buf; in hvc_put_chars() local
66 cpu_to_be64(lbuf[0]), in hvc_put_chars()
67 cpu_to_be64(lbuf[1])); in hvc_put_chars()
/linux/scripts/ipe/polgen/
H A Dpolgen.c22 char *lbuf; in policy_to_buffer() local
36 lbuf = malloc(fsize); in policy_to_buffer()
37 if (!lbuf) { in policy_to_buffer()
42 read = fread((void *)lbuf, sizeof(*lbuf), fsize, fd); in policy_to_buffer()
48 *buffer = lbuf; in policy_to_buffer()
55 free(lbuf); in policy_to_buffer()
/linux/kernel/time/
H A Dtest_udelay.c102 char lbuf[32]; in udelay_test_write() local
107 if (count >= sizeof(lbuf)) in udelay_test_write()
110 if (copy_from_user(lbuf, buf, count)) in udelay_test_write()
112 lbuf[count] = '\0'; in udelay_test_write()
114 ret = sscanf(lbuf, "%d %d", &usecs, &iters); in udelay_test_write()
/linux/drivers/infiniband/hw/mlx5/
H A Dcong.c376 char lbuf[11] = { }; in set_param() local
380 if (count > sizeof(lbuf)) in set_param()
383 if (copy_from_user(lbuf, buf, count)) in set_param()
386 lbuf[sizeof(lbuf) - 1] = '\0'; in set_param()
388 if (kstrtou32(lbuf, 0, &var)) in set_param()
402 char lbuf[11]; in get_param() local
408 ret = snprintf(lbuf, sizeof(lbuf), "%d\n", var); in get_param()
412 return simple_read_from_buffer(buf, count, pos, lbuf, ret); in get_param()
H A Dmain.c3575 char lbuf[20]; in delay_drop_timeout_read() local
3578 len = snprintf(lbuf, sizeof(lbuf), "%u\n", delay_drop->timeout); in delay_drop_timeout_read()
3579 return simple_read_from_buffer(buf, count, pos, lbuf, len); in delay_drop_timeout_read()
/linux/drivers/pci/hotplug/
H A Dacpiphp_ibm.c287 char *lbuf = NULL; in ibm_get_table_from_acpi() local
315 lbuf = kzalloc(size, GFP_KERNEL); in ibm_get_table_from_acpi()
317 __func__, package->package.count, size, lbuf); in ibm_get_table_from_acpi()
319 if (lbuf) { in ibm_get_table_from_acpi()
320 *bufp = lbuf; in ibm_get_table_from_acpi()
328 memcpy(&lbuf[size], in ibm_get_table_from_acpi()
/linux/drivers/infiniband/hw/bnxt_re/
H A Ddebugfs.c368 char lbuf[16] = { }; in cq_coal_cfg_write() local
371 if (count > sizeof(lbuf)) in cq_coal_cfg_write()
374 if (copy_from_user(lbuf, buf, count)) in cq_coal_cfg_write()
377 lbuf[sizeof(lbuf) - 1] = '\0'; in cq_coal_cfg_write()
379 if (kstrtou32(lbuf, 0, &val)) in cq_coal_cfg_write()
/linux/drivers/hid/
H A Dhid-lg4ff.c855 char *lbuf; in lg4ff_alternate_modes_store() local
870 lbuf = kasprintf(GFP_KERNEL, "%s", buf); in lg4ff_alternate_modes_store()
871 if (!lbuf) in lg4ff_alternate_modes_store()
874 i = strlen(lbuf); in lg4ff_alternate_modes_store()
877 kfree(lbuf); in lg4ff_alternate_modes_store()
881 if (lbuf[i-1] == '\n') { in lg4ff_alternate_modes_store()
883 kfree(lbuf); in lg4ff_alternate_modes_store()
886 lbuf[i-1] = '\0'; in lg4ff_alternate_modes_store()
894 if (!strcmp(tag, lbuf)) { in lg4ff_alternate_modes_store()
905 hid_info(hid, "Requested mode \"%s\" is not supported by the device\n", lbuf); in lg4ff_alternate_modes_store()
[all …]
/linux/drivers/pci/
H A Dvgaarb.c1077 char *lbuf; in vga_arb_read() local
1079 lbuf = kmalloc(1024, GFP_KERNEL); in vga_arb_read()
1080 if (lbuf == NULL) in vga_arb_read()
1090 len = sprintf(lbuf, "invalid"); in vga_arb_read()
1102 len = sprintf(lbuf, "invalid"); in vga_arb_read()
1107 len = snprintf(lbuf, 1024, in vga_arb_read()
1121 rc = copy_to_user(buf, lbuf, len); in vga_arb_read()
1122 kfree(lbuf); in vga_arb_read()
/linux/drivers/misc/ibmasm/
H A Dibmasmfs.c507 char lbuf[20]; in remote_settings_file_read() local
510 len = snprintf(lbuf, sizeof(lbuf), "%d\n", value); in remote_settings_file_read()
512 return simple_read_from_buffer(buf, count, offset, lbuf, len); in remote_settings_file_read()
/linux/drivers/net/plip/
H A Dplip.c592 unsigned char *lbuf; in plip_receive_packet() local
651 lbuf = rcv->skb->data; in plip_receive_packet()
654 &rcv->nibble, &lbuf[rcv->byte])) in plip_receive_packet()
658 rcv->checksum += lbuf[--rcv->byte]; in plip_receive_packet()
760 unsigned char *lbuf; in plip_send_packet() local
764 if (snd->skb == NULL || (lbuf = snd->skb->data) == NULL) { in plip_send_packet()
839 &snd->nibble, lbuf[snd->byte])) in plip_send_packet()
843 snd->checksum += lbuf[--snd->byte]; in plip_send_packet()
/linux/drivers/acpi/
H A Ddock.c525 unsigned long long lbuf; in uid_show() local
529 "_UID", NULL, &lbuf); in uid_show()
533 return sysfs_emit(buf, "%llx\n", lbuf); in uid_show()
/linux/tools/testing/selftests/arm64/fp/
H A Dfp-ptrace.c863 uint32_t *lbuf = buf; in fill_random() local
867 lbuf[i] = random(); in fill_random()
872 uint8_t *lbuf = buf; in fill_random_ffr() local
884 lbuf[i] = 0xff; in fill_random_ffr()
886 lbuf[i] = (1 << (bits % 8)) - 1; in fill_random_ffr()
/linux/tools/testing/selftests/arm64/abi/
H A Dsyscall-abi.c43 uint32_t *lbuf = buf; in fill_random() local
47 lbuf[i] = random(); in fill_random()