Home
last modified time | relevance | path

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

12345678910>>...61

/Linux-v4.19/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()
183 um_free_irq(chan->line->driver->read_irq, chan); in close_one_chan()
185 um_free_irq(chan->line->driver->write_irq, chan); in close_one_chan()
[all …]
Dline.h34 struct line { struct
62 struct line *line); argument
79 extern int line_setup_irq(int fd, int input, int output, struct line *line,
81 extern void line_close_chan(struct line *line);
84 struct line *lines, int nlines);
85 extern int setup_one_line(struct line *lines, int n, char *init,
87 extern void close_lines(struct line *lines, int nlines);
89 extern int line_config(struct line *lines, unsigned int sizeof_lines,
93 extern int line_remove(struct line *lines, unsigned int sizeof_lines, int n,
95 extern int line_get_config(char *dev, struct line *lines,
/Linux-v4.19/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 …]
/Linux-v4.19/drivers/lightnvm/
Dpblk-core.c32 struct pblk_line *line; in pblk_line_mark_bb() local
35 line = &pblk->lines[pblk_ppa_to_line(*ppa)]; in pblk_line_mark_bb()
39 line->id, pos); in pblk_line_mark_bb()
46 static void pblk_mark_bb(struct pblk *pblk, struct pblk_line *line, in pblk_mark_bb() argument
54 pblk_debug(pblk, "erase failed: line:%d, pos:%d\n", line->id, pos); in pblk_mark_bb()
57 atomic_dec(&line->blk_in_line); in pblk_mark_bb()
58 if (test_and_set_bit(pos, line->blk_bitmap)) in pblk_mark_bb()
60 line->id, pos); in pblk_mark_bb()
80 struct pblk_line *line; in __pblk_end_io_erase() local
83 line = &pblk->lines[pblk_ppa_to_line(rqd->ppa_addr)]; in __pblk_end_io_erase()
[all …]
Dpblk-recovery.c33 static int pblk_recov_l2p_from_emeta(struct pblk *pblk, struct pblk_line *line) in pblk_recov_l2p_from_emeta() argument
38 struct pblk_emeta *emeta = line->emeta; in pblk_recov_l2p_from_emeta()
49 data_start = pblk_line_smeta_start(pblk, line) + lm->smeta_sec; in pblk_recov_l2p_from_emeta()
50 data_end = line->emeta_ssec; in pblk_recov_l2p_from_emeta()
57 ppa = addr_to_gen_ppa(pblk, i, line->id); in pblk_recov_l2p_from_emeta()
61 if (test_bit(pos, line->blk_bitmap)) in pblk_recov_l2p_from_emeta()
65 spin_lock(&line->lock); in pblk_recov_l2p_from_emeta()
66 if (test_and_set_bit(i, line->invalid_bitmap)) in pblk_recov_l2p_from_emeta()
69 le32_add_cpu(line->vsc, -1); in pblk_recov_l2p_from_emeta()
70 spin_unlock(&line->lock); in pblk_recov_l2p_from_emeta()
[all …]
Dpblk-gc.c47 kref_put(&gc_rq->line->ref, pblk_line_put); in pblk_gc_write()
59 static void pblk_put_line_back(struct pblk *pblk, struct pblk_line *line) in pblk_put_line_back() argument
64 spin_lock(&line->lock); in pblk_put_line_back()
65 WARN_ON(line->state != PBLK_LINESTATE_GC); in pblk_put_line_back()
66 line->state = PBLK_LINESTATE_CLOSED; in pblk_put_line_back()
67 move_list = pblk_line_gc_list(pblk, line); in pblk_put_line_back()
68 spin_unlock(&line->lock); in pblk_put_line_back()
72 list_add_tail(&line->list, move_list); in pblk_put_line_back()
85 struct pblk_line *line = gc_rq_ws->line; in pblk_gc_line_ws() local
94 line->id, *line->vsc, gc_rq->nr_secs); in pblk_gc_line_ws()
[all …]
/Linux-v4.19/scripts/
Dcheckpatch.pl171 my $line = $_;
173 $line =~ s/\s*\n?$//g;
174 $line =~ s/^\s*//g;
175 $line =~ s/\s+/ /g;
177 next if ($line =~ m/^\s*#/);
178 next if ($line =~ m/^\s*$/);
180 my @words = split(" ", $line);
655 my $line = $_;
657 $line =~ s/\s*\n?$//g;
658 $line =~ s/^\s*//g;
[all …]
Dmarkup_oops.pl51 my ($line) = @_;
52 if ($line =~ /EAX: ([0-9a-f]+) EBX: ([0-9a-f]+) ECX: ([0-9a-f]+) EDX: ([0-9a-f]+)/) {
58 if ($line =~ /ESI: ([0-9a-f]+) EDI: ([0-9a-f]+) EBP: ([0-9a-f]+) ESP: ([0-9a-f]+)/) {
63 if ($line =~ /RAX: ([0-9a-f]+) RBX: ([0-9a-f]+) RCX: ([0-9a-f]+)/) {
68 if ($line =~ /RDX: ([0-9a-f]+) RSI: ([0-9a-f]+) RDI: ([0-9a-f]+)/) {
73 if ($line =~ /RBP: ([0-9a-f]+) R08: ([0-9a-f]+) R09: ([0-9a-f]+)/) {
77 if ($line =~ /R10: ([0-9a-f]+) R11: ([0-9a-f]+) R12: ([0-9a-f]+)/) {
82 if ($line =~ /R13: ([0-9a-f]+) R14: ([0-9a-f]+) R15: ([0-9a-f]+)/) {
100 my ($line, $cntr) = @_;
102 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 …]
Dleaking_addresses.pl268 while (my $line = <$fh> ) {
269 if ($line =~ /^$option/) {
270 ($str, $val) = split /=/, $line;
350 my ($line) = @_;
354 if ($line =~ '^SigBlk:' or
355 $line =~ '^SigIgn:' or
356 $line =~ '^SigCgt:') {
360 if ($line =~ '\bKEY=[[:xdigit:]]{14} [[:xdigit:]]{16} [[:xdigit:]]{16}\b' or
361 $line =~ '\b[[:xdigit:]]{14} [[:xdigit:]]{16} [[:xdigit:]]{16}\b') {
366 while ($line =~ /($address_re)/g) {
[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 …]
/Linux-v4.19/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 …]
/Linux-v4.19/drivers/gpio/
Dgpio-thunderx.c49 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 …]
/Linux-v4.19/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 …]
/Linux-v4.19/scripts/dtc/
Ddt_to_config555 my $line;
574 $line = $line . $next_line;
576 $line =~ s/\\$/ /;
579 if ($line =~ /^\s*#/) {
580 $line = "";
586 if ($line =~ /^([ ]\s*|)else\b/) {
590 $line =~ s/^([ ]\s*|)else\b//;
593 …($null, $ifeq_config, $ifeq_config_val ) = $line =~ /^([ ]\s*|)ifeq\b.*\b(CONFIG_[A-Za-z0-9_]*)(…
594 …($null, $ifneq_config, $ifneq_config_val) = $line =~ /^([ ]\s*|)ifneq\b.*\b(CONFIG_[A-Za-z0-9_]*)…
595 …($null, $ifdef_config) = $line =~ /^([ ]\s*|)ifdef\b.*\b(CONFIG_[A-Za-z0-9_]*)…
[all …]
/Linux-v4.19/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 …]
/Linux-v4.19/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 …]
/Linux-v4.19/fs/gfs2/
Dutil.c91 const char *function, char *file, unsigned int line) in gfs2_assert_withdraw_i() argument
97 assertion, function, file, line); in gfs2_assert_withdraw_i()
109 const char *function, char *file, unsigned int line) in gfs2_assert_warn_i() argument
118 assertion, function, file, line); in gfs2_assert_warn_i()
129 sdp->sd_fsname, function, file, line); in gfs2_assert_warn_i()
143 char *file, unsigned int line) in gfs2_consist_i() argument
148 function, file, line); in gfs2_consist_i()
159 const char *function, char *file, unsigned int line) in gfs2_consist_inode_i() argument
169 function, file, line); in gfs2_consist_inode_i()
180 const char *function, char *file, unsigned int line) in gfs2_consist_rgrpd_i() argument
[all …]
/Linux-v4.19/drivers/media/pci/ivtv/
Divtv-vbi.c35 data.line = enabled ? 16 : 0; in ivtv_set_vps()
52 data.line = (mode & 1) ? 21 : 0; in ivtv_set_cc()
57 data.line = (mode & 2) ? 21 : 0; in ivtv_set_cc()
80 data.line = enabled ? 23 : 0; in ivtv_set_wss()
101 if (d->id == V4L2_SLICED_CAPTION_525 && d->line == 21) { in ivtv_write_vbi_line()
110 } else if (d->id == V4L2_SLICED_VPS && d->line == 16 && d->field == 0) { in ivtv_write_vbi_line()
123 d->line == 23 && d->field == 0) { in ivtv_write_vbi_line()
188 int line = 0; in copy_vbi_data() local
208 l = itv->vbi.sliced_data[i].line - 6; in copy_vbi_data()
216 dst[sd + 12 + line * 43] = in copy_vbi_data()
[all …]
/Linux-v4.19/drivers/isdn/i4l/
Disdn_v110.c192 int line = 0; in DecodeMatrix() local
199 while (line < len) { /* Are we done with all lines of the matrix? */ in DecodeMatrix()
200 if ((line % 10) == 0) { /* the 0. line of the matrix is always 0 ! */ in DecodeMatrix()
201 if (m[line] != 0x00) { /* not 0 ? -> error! */ in DecodeMatrix()
207 line++; /* next line of matrix */ in DecodeMatrix()
209 } else if ((line % 10) == 5) { /* in line 5 there's only e-bits ! */ in DecodeMatrix()
210 if ((m[line] & 0x70) != 0x30) { /* 011 has to be at the beginning! */ in DecodeMatrix()
216 line++; /* next line */ in DecodeMatrix()
219 introducer = (m[line] & mbit) ? 0 : 1; /* current bit of the matrix */ in DecodeMatrix()
226 line++; in DecodeMatrix()
[all …]
/Linux-v4.19/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 …]
/Linux-v4.19/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 …]

12345678910>>...61