Home
last modified time | relevance | path

Searched refs:line (Results 1 – 25 of 2265) sorted by relevance

12345678910>>...91

/kernel/linux/linux-5.10/arch/um/drivers/
Dline.c22 struct line *line = chan->line; in line_interrupt() local
24 if (line) in line_interrupt()
25 chan_interrupt(line, irq); in line_interrupt()
35 static int write_room(struct line *line) in write_room() argument
39 if (line->buffer == NULL) in write_room()
43 n = line->head - line->tail; in write_room()
52 struct line *line = tty->driver_data; in line_write_room() local
56 spin_lock_irqsave(&line->lock, flags); in line_write_room()
57 room = write_room(line); in line_write_room()
58 spin_unlock_irqrestore(&line->lock, flags); in line_write_room()
[all …]
Dchan.h18 struct line *line; member
30 extern void chan_interrupt(struct line *line, int irq);
31 extern int parse_chan_pair(char *str, struct line *line, int device,
37 extern int console_open_chan(struct line *line, struct console *co);
41 extern int enable_chan(struct line *line);
42 extern void close_chan(struct line *line);
43 extern int chan_window_size(struct line *line,
46 extern int chan_config_string(struct line *line, char *str, int size,
Dchan_kern.c133 struct line *line = container_of(work, struct line, task.work); in line_timer_cb() local
135 if (!line->throttled) in line_timer_cb()
136 chan_interrupt(line, line->driver->read_irq); in line_timer_cb()
139 int enable_chan(struct line *line) in enable_chan() argument
145 INIT_DELAYED_WORK(&line->task, line_timer_cb); in enable_chan()
147 list_for_each(ele, &line->chan_list) { in enable_chan()
159 err = line_setup_irq(chan->fd, chan->input, chan->output, line, in enable_chan()
170 close_chan(line); in enable_chan()
198 um_free_irq(chan->line->driver->read_irq, chan); in free_irqs()
200 um_free_irq(chan->line->driver->write_irq, chan); in free_irqs()
[all …]
Dline.h34 struct line { struct
62 struct line *line); argument
78 extern int line_setup_irq(int fd, int input, int output, struct line *line,
80 extern void line_close_chan(struct line *line);
83 struct line *lines, int nlines);
84 extern int setup_one_line(struct line *lines, int n, char *init,
86 extern void close_lines(struct line *lines, int nlines);
88 extern int line_config(struct line *lines, unsigned int sizeof_lines,
92 extern int line_remove(struct line *lines, unsigned int sizeof_lines, int n,
94 extern int line_get_config(char *dev, struct line *lines,
/kernel/linux/linux-5.10/drivers/lightnvm/
Dpblk-core.c36 struct pblk_line *line; in pblk_line_mark_bb() local
39 line = pblk_ppa_to_line(pblk, *ppa); in pblk_line_mark_bb()
43 line->id, pos); in pblk_line_mark_bb()
50 static void pblk_mark_bb(struct pblk *pblk, struct pblk_line *line, in pblk_mark_bb() argument
58 pblk_debug(pblk, "erase failed: line:%d, pos:%d\n", line->id, pos); in pblk_mark_bb()
61 atomic_dec(&line->blk_in_line); in pblk_mark_bb()
62 if (test_and_set_bit(pos, line->blk_bitmap)) in pblk_mark_bb()
64 line->id, pos); in pblk_mark_bb()
84 struct pblk_line *line; in __pblk_end_io_erase() local
87 line = pblk_ppa_to_line(pblk, rqd->ppa_addr); in __pblk_end_io_erase()
[all …]
Dpblk-recovery.c38 static int pblk_recov_l2p_from_emeta(struct pblk *pblk, struct pblk_line *line) in pblk_recov_l2p_from_emeta() argument
43 struct pblk_emeta *emeta = line->emeta; in pblk_recov_l2p_from_emeta()
54 data_start = pblk_line_smeta_start(pblk, line) + lm->smeta_sec; in pblk_recov_l2p_from_emeta()
55 data_end = line->emeta_ssec; in pblk_recov_l2p_from_emeta()
62 ppa = addr_to_gen_ppa(pblk, i, line->id); in pblk_recov_l2p_from_emeta()
66 if (test_bit(pos, line->blk_bitmap)) in pblk_recov_l2p_from_emeta()
70 spin_lock(&line->lock); in pblk_recov_l2p_from_emeta()
71 if (test_and_set_bit(i, line->invalid_bitmap)) in pblk_recov_l2p_from_emeta()
74 le32_add_cpu(line->vsc, -1); in pblk_recov_l2p_from_emeta()
75 spin_unlock(&line->lock); in pblk_recov_l2p_from_emeta()
[all …]
Dpblk-gc.c50 kref_put(&gc_rq->line->ref, pblk_line_put); in pblk_gc_write()
62 void pblk_put_line_back(struct pblk *pblk, struct pblk_line *line) in pblk_put_line_back() argument
68 spin_lock(&line->lock); in pblk_put_line_back()
69 WARN_ON(line->state != PBLK_LINESTATE_GC); in pblk_put_line_back()
70 line->state = PBLK_LINESTATE_CLOSED; in pblk_put_line_back()
71 trace_pblk_line_state(pblk_disk_name(pblk), line->id, in pblk_put_line_back()
72 line->state); in pblk_put_line_back()
79 line->gc_group = PBLK_LINEGC_NONE; in pblk_put_line_back()
80 move_list = pblk_line_gc_list(pblk, line); in pblk_put_line_back()
81 spin_unlock(&line->lock); in pblk_put_line_back()
[all …]
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/subdev/gpio/
Dnv10.c29 nv10_gpio_sense(struct nvkm_gpio *gpio, int line) in nv10_gpio_sense() argument
32 if (line < 2) { in nv10_gpio_sense()
33 line = line * 16; in nv10_gpio_sense()
34 line = nvkm_rd32(device, 0x600818) >> line; in nv10_gpio_sense()
35 return !!(line & 0x0100); in nv10_gpio_sense()
37 if (line < 10) { in nv10_gpio_sense()
38 line = (line - 2) * 4; in nv10_gpio_sense()
39 line = nvkm_rd32(device, 0x60081c) >> line; in nv10_gpio_sense()
40 return !!(line & 0x04); in nv10_gpio_sense()
42 if (line < 14) { in nv10_gpio_sense()
[all …]
/kernel/linux/linux-5.10/scripts/
Dcheckpatch.pl182 my $line = $_;
184 $line =~ s/\s*\n?$//g;
185 $line =~ s/^\s*//g;
186 $line =~ s/\s+/ /g;
188 next if ($line =~ m/^\s*#/);
189 next if ($line =~ m/^\s*$/);
191 my @words = split(" ", $line);
707 my $line = $_;
709 $line =~ s/\s*\n?$//g;
710 $line =~ s/^\s*//g;
[all …]
Dmarkup_oops.pl48 my ($line) = @_;
49 if ($line =~ /EAX: ([0-9a-f]+) EBX: ([0-9a-f]+) ECX: ([0-9a-f]+) EDX: ([0-9a-f]+)/) {
55 if ($line =~ /ESI: ([0-9a-f]+) EDI: ([0-9a-f]+) EBP: ([0-9a-f]+) ESP: ([0-9a-f]+)/) {
60 if ($line =~ /RAX: ([0-9a-f]+) RBX: ([0-9a-f]+) RCX: ([0-9a-f]+)/) {
65 if ($line =~ /RDX: ([0-9a-f]+) RSI: ([0-9a-f]+) RDI: ([0-9a-f]+)/) {
70 if ($line =~ /RBP: ([0-9a-f]+) R08: ([0-9a-f]+) R09: ([0-9a-f]+)/) {
74 if ($line =~ /R10: ([0-9a-f]+) R11: ([0-9a-f]+) R12: ([0-9a-f]+)/) {
79 if ($line =~ /R13: ([0-9a-f]+) R14: ([0-9a-f]+) R15: ([0-9a-f]+)/) {
97 my ($line, $cntr) = @_;
99 if (length($line) < 40) {
[all …]
Dheaders_check.pl29 my $line;
39 while ($line = <$fh>) {
53 if ($line =~ m/^\s*#\s*include\s+<((asm|linux).*)>/) {
71 if ($line =~ m/^void seqbuf_dump\(void\);/) {
75 if ($line =~ m/^extern "C"/) {
78 if ($line =~ m/^(\s*extern|unsigned|char|short|int|long|void)\b/) {
87 if ($line =~ m/[^a-zA-Z0-9_]+CONFIG_([a-zA-Z0-9_]+)[^a-zA-Z0-9_]/) {
103 if ($line =~ m/^\s*#\s*include\s+<asm\/types.h>/) {
132 my $line;
133 while ($line = <$fh>) {
[all …]
Dbpf_helpers_doc.py17 def __init__(self, line='<line not provided>', reader=None): argument
21 (reader.tell(), line))
23 BaseException.__init__(self, 'Error parsing line: %s' % line)
73 self.line = ''
91 capture = p.match(self.line)
94 self.line = self.reader.readline()
99 capture = p.match(self.line)
108 self.line = self.reader.readline()
109 if self.line == ' *\n':
113 capture = p.match(self.line)
[all …]
Dleaking_addresses.pl267 while (my $line = <$fh> ) {
268 if ($line =~ /^$option/) {
269 ($str, $val) = split /=/, $line;
349 my ($line) = @_;
353 if ($line =~ '^SigBlk:' or
354 $line =~ '^SigIgn:' or
355 $line =~ '^SigCgt:') {
359 if ($line =~ '\bKEY=[[:xdigit:]]{14} [[:xdigit:]]{16} [[:xdigit:]]{16}\b' or
360 $line =~ '\b[[:xdigit:]]{14} [[:xdigit:]]{16} [[:xdigit:]]{16}\b') {
365 while ($line =~ /($address_re)/g) {
[all …]
/kernel/linux/linux-5.10/Documentation/arm/samsung/
Dclksrc-change-registers.awk69 while (getline line < ARGV[1] > 0) {
70 if (line ~ /\#define.*_MASK/ &&
71 !(line ~ /USB_SIG_MASK/)) {
72 splitdefine(line, fields)
75 printf "MASK " line "\n" > "/dev/stderr"
98 if ((getline line) <= 0) {
103 if (line ~ /\.shift/) {
104 shift = extract_value(line)
105 } else if (line ~ /\.mask/) {
106 mask = extract_value(line)
[all …]
/kernel/linux/linux-5.10/drivers/zorro/
Dgen-devlist.c32 char line[1024], *c, *bra, manuf[8]; in main() local
45 while (fgets(line, sizeof(line)-1, stdin)) { in main()
47 if ((c = strchr(line, '\n'))) in main()
49 if (!line[0] || line[0] == '#') in main()
51 if (line[0] == '\t') { in main()
54 if (strlen(line) > 5 && line[5] == ' ') { in main()
55 c = line + 5; in main()
68 fprintf(devf, "\tPRODUCT(%s,%s,\"", manuf, line+1); in main()
76 } else if (strlen(line) > 4 && line[4] == ' ') { in main()
77 c = line + 4; in main()
[all …]
/kernel/linux/linux-5.10/drivers/gpio/
Dgpio-thunderx.c50 unsigned int line; member
65 static unsigned int bit_cfg_reg(unsigned int line) in bit_cfg_reg() argument
67 return 8 * line + GPIO_BIT_CFG; in bit_cfg_reg()
70 static unsigned int intr_reg(unsigned int line) in intr_reg() argument
72 return 8 * line + GPIO_INTR; in intr_reg()
76 unsigned int line) in thunderx_gpio_is_gpio_nowarn() argument
78 u64 bit_cfg = readq(txgpio->register_base + bit_cfg_reg(line)); in thunderx_gpio_is_gpio_nowarn()
88 unsigned int line) in thunderx_gpio_is_gpio() argument
90 bool rv = thunderx_gpio_is_gpio_nowarn(txgpio, line); in thunderx_gpio_is_gpio()
92 WARN_RATELIMIT(!rv, "Pin %d not available for GPIO\n", line); in thunderx_gpio_is_gpio()
[all …]
/kernel/linux/linux-5.10/Documentation/sphinx/
Dmaintainers_include.py63 for line in open(path):
65 line = unicode(line, 'utf-8')
67 if descriptions and line.startswith('Maintainers'):
75 if re.search('^[A-Z0-9]', line):
79 line = line.rstrip()
83 m = re.search(pat, line)
86 line = re.sub(pat, ':doc:`%s <../%s>`' % (m.group(2), m.group(2)), line)
92 output = "| %s" % (line.replace("\\", "\\\\"))
95 m = re.search("\s(\S):\s", line)
99 m = re.search("\*([^\*]+)\*", line)
[all …]
/kernel/linux/linux-5.10/scripts/dtc/
Ddt_to_config554 my $line;
573 $line = $line . $next_line;
575 $line =~ s/\\$/ /;
578 if ($line =~ /^\s*#/) {
579 $line = "";
585 if ($line =~ /^([ ]\s*|)else\b/) {
589 $line =~ s/^([ ]\s*|)else\b//;
592 …($null, $ifeq_config, $ifeq_config_val ) = $line =~ /^([ ]\s*|)ifeq\b.*\b(CONFIG_[A-Za-z0-9_]*)(…
593 …($null, $ifneq_config, $ifneq_config_val) = $line =~ /^([ ]\s*|)ifneq\b.*\b(CONFIG_[A-Za-z0-9_]*)…
594 …($null, $ifdef_config) = $line =~ /^([ ]\s*|)ifdef\b.*\b(CONFIG_[A-Za-z0-9_]*)…
[all …]
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/subdev/therm/
Dnv50.c28 pwm_info(struct nvkm_therm *therm, int *line, int *ctrl, int *indx) in pwm_info() argument
32 if (*line == 0x04) { in pwm_info()
34 *line = 4; in pwm_info()
37 if (*line == 0x09) { in pwm_info()
39 *line = 9; in pwm_info()
42 if (*line == 0x10) { in pwm_info()
44 *line = 0; in pwm_info()
47 nvkm_error(subdev, "unknown pwm ctrl for gpio %d\n", *line); in pwm_info()
55 nv50_fan_pwm_ctrl(struct nvkm_therm *therm, int line, bool enable) in nv50_fan_pwm_ctrl() argument
59 int ctrl, id, ret = pwm_info(therm, &line, &ctrl, &id); in nv50_fan_pwm_ctrl()
[all …]
Dgf119.c27 pwm_info(struct nvkm_therm *therm, int line) in pwm_info() argument
31 u32 gpio = nvkm_rd32(device, 0x00d610 + (line * 0x04)); in pwm_info()
48 nvkm_error(subdev, "GPIO %d unknown PWM: %08x\n", line, gpio); in pwm_info()
53 gf119_fan_pwm_ctrl(struct nvkm_therm *therm, int line, bool enable) in gf119_fan_pwm_ctrl() argument
57 int indx = pwm_info(therm, line); in gf119_fan_pwm_ctrl()
61 nvkm_mask(device, 0x00d610 + (line * 0x04), 0x000000c0, data); in gf119_fan_pwm_ctrl()
67 gf119_fan_pwm_get(struct nvkm_therm *therm, int line, u32 *divs, u32 *duty) in gf119_fan_pwm_get() argument
70 int indx = pwm_info(therm, line); in gf119_fan_pwm_get()
74 if (nvkm_rd32(device, 0x00d610 + (line * 0x04)) & 0x00000040) { in gf119_fan_pwm_get()
89 gf119_fan_pwm_set(struct nvkm_therm *therm, int line, u32 divs, u32 duty) in gf119_fan_pwm_set() argument
[all …]
/kernel/linux/linux-5.10/usr/
Dgen_init_cpio.c30 int (*handler)(const char *line);
134 static int cpio_mkslink_line(const char *line) in cpio_mkslink_line() argument
143 …if (5 != sscanf(line, "%" str(PATH_MAX) "s %" str(PATH_MAX) "s %o %d %d", name, target, &mode, &ui… in cpio_mkslink_line()
144 fprintf(stderr, "Unrecognized dir format '%s'", line); in cpio_mkslink_line()
206 static int cpio_mkgeneric_line(const char *line, enum generic_types gt) in cpio_mkgeneric_line() argument
214 if (4 != sscanf(line, "%" str(PATH_MAX) "s %o %d %d", name, &mode, &uid, &gid)) { in cpio_mkgeneric_line()
216 line, generic_type_table[gt].type); in cpio_mkgeneric_line()
225 static int cpio_mkdir_line(const char *line) in cpio_mkdir_line() argument
227 return cpio_mkgeneric_line(line, GT_DIR); in cpio_mkdir_line()
230 static int cpio_mkpipe_line(const char *line) in cpio_mkpipe_line() argument
[all …]
/kernel/linux/linux-5.10/drivers/media/pci/ivtv/
Divtv-vbi.c23 data.line = enabled ? 16 : 0; in ivtv_set_vps()
40 data.line = (mode & 1) ? 21 : 0; in ivtv_set_cc()
45 data.line = (mode & 2) ? 21 : 0; in ivtv_set_cc()
68 data.line = enabled ? 23 : 0; in ivtv_set_wss()
89 if (d->id == V4L2_SLICED_CAPTION_525 && d->line == 21) { in ivtv_write_vbi_line()
98 } else if (d->id == V4L2_SLICED_VPS && d->line == 16 && d->field == 0) { in ivtv_write_vbi_line()
111 d->line == 23 && d->field == 0) { in ivtv_write_vbi_line()
176 int line = 0; in copy_vbi_data() local
196 l = itv->vbi.sliced_data[i].line - 6; in copy_vbi_data()
204 dst[sd + 12 + line * 43] = in copy_vbi_data()
[all …]
/kernel/linux/linux-5.10/drivers/crypto/vmx/
Dppc-xlate.pl68 my $line = join(",",@_);
69 if ($line =~ /^"(.*)"$/)
202 while($line=<>) {
204 $line =~ s|[#!;].*$||; # get rid of asm-style comments...
205 $line =~ s|/\*.*\*/||; # ... and C-style comments...
206 $line =~ s|^\s+||; # ... and skip white spaces in beginning...
207 $line =~ s|\s+$||; # ... and at the end
210 $line =~ s|\b\.L(\w+)|L$1|g; # common denominator for Locallabel
211 $line =~ s|\bL(\w+)|\.L$1|g if ($dotinlocallabels);
215 $line =~ s|^\s*(\.?)(\w+)([\.\+\-]?)\s*||;
[all …]
/kernel/linux/linux-5.10/drivers/media/platform/qcom/camss/
Dcamss-vfe.c33 container_of(vfe_line_array(ptr_line), struct vfe_device, line)
155 static u32 vfe_src_pad_code(struct vfe_line *line, u32 sink_code, in vfe_src_pad_code() argument
158 struct vfe_device *vfe = to_vfe(line); in vfe_src_pad_code()
324 for (i = 0; i < ARRAY_SIZE(vfe->line); i++) { in vfe_init_outputs()
325 struct vfe_output *output = &vfe->line[i].output; in vfe_init_outputs()
582 static int vfe_get_output(struct vfe_line *line) in vfe_get_output() argument
584 struct vfe_device *vfe = to_vfe(line); in vfe_get_output()
586 struct v4l2_format *f = &line->video_out.active_fmt; in vfe_get_output()
593 output = &line->output; in vfe_get_output()
615 wm_idx = vfe_reserve_wm(vfe, line->id); in vfe_get_output()
[all …]
/kernel/linux/linux-5.10/Documentation/devicetree/bindings/media/
Dcec-gpio.txt3 The HDMI CEC GPIO module supports CEC implementations where the CEC line
4 is hooked up to a pull-up GPIO line and - optionally - the HPD line is
5 hooked up to another GPIO line.
7 Please note: the maximum voltage for the CEC line is 3.63V, for the HPD and
9 when connecting them to a GPIO line.
13 - cec-gpios: gpio that the CEC line is connected to. The line should be
16 If the CEC line is associated with an HDMI receiver/transmitter, then the
21 If the CEC line is not associated with an HDMI receiver/transmitter, then
24 - hpd-gpios: gpio that the HPD line is connected to.
26 This property is optional and can be used for debugging changes on the 5V line:
[all …]

12345678910>>...91