Home
last modified time | relevance | path

Searched refs:lk (Results 1 – 14 of 14) sorted by relevance

/linux/Documentation/scsi/
H A Dscsi-generic.rst25 There are three major versions of sg found in the Linux kernel (lk):
26 - sg version 1 (original) from 1992 to early 1999 (lk 2.2.5) .
28 - sg version 2 from lk 2.2.6 in the 2.2 series. It is based on
30 - sg version 3 found in the lk 2.4 series (and the lk 2.5 series).
40 This describes the sg version 3 driver found in the lk 2.4 series.
43 lk 2.2 series can be found at
47 The original documentation for the sg driver (prior to lk 2.2.6) can be
61 sg3_utils for the sg version 3 driver found in lk 2.4
62 sg_utils for the sg version 2 (and original) driver found in lk 2.2
66 Both packages will work in the lk 2.4 series. However, sg3_utils offers more
[all …]
H A Dscsi.rst8 the SCSI subsystem in the Linux kernel (lk) 2.4 series. See:
/linux/arch/arm/mach-omap1/
H A Dclock_data.c794 if (c->lk.clk_hw->init) { /* NULL if provider already registered */ in omap1_clk_init()
795 const struct clk_init_data *init = c->lk.clk_hw->init; in omap1_clk_init()
796 const char *name = c->lk.clk_hw->init->name; in omap1_clk_init()
799 err = clk_hw_register(NULL, c->lk.clk_hw); in omap1_clk_init()
803 c->lk.clk_hw->init = init; in omap1_clk_init()
808 clk_hw_register_clkdev(c->lk.clk_hw, c->lk.con_id, c->lk.dev_id); in omap1_clk_init()
H A Dclock.h22 struct clk_lookup lk; member
28 .lk = { \
/linux/tools/memory-model/
H A Dlock.cat44 let lk-rmw = ([LKR] ; po-loc ; [LKW]) \ (po ; po)
45 let rmw = rmw | lk-rmw
48 flag ~empty LKW \ range(lk-rmw) as unpaired-LKW
49 flag ~empty LKR \ domain(lk-rmw) as unpaired-LKR
149 let rf = rf | ([IW | UL] ; singlestep(co) ; lk-rmw^-1)
/linux/drivers/clk/ti/
H A Dclock.h89 .lk = { \
147 struct clk_lookup lk; member
153 .lk = { \
/linux/arch/sparc/kernel/
H A Dchmc.c82 int lk; member
509 lower_bits |= bp->lk; /* What bits don't matter for matching? */ in chmc_bank_match()
641 bp->lk = (val & MEM_DECODE_LK) >> MEM_DECODE_LK_SHIFT; in chmc_interpret_one_decode_reg()
648 switch(bp->lk) { in chmc_interpret_one_decode_reg()
/linux/Documentation/translations/zh_CN/scsi/
H A Dscsi.rst18 Linux文档项目(LDP)维护了一份描述Linux内核(lk) 2.4中SCSI
/linux/include/uapi/linux/
H A Dfuse.h888 struct fuse_file_lock lk; member
894 struct fuse_file_lock lk; member
/linux/drivers/net/ethernet/marvell/prestera/
H A Dprestera_router_hw.c217 struct prestera_rif_entry_key lk; /* lookup key */ in prestera_rif_entry_find() local
219 if (__prestera_rif_entry_key_copy(k, &lk)) in prestera_rif_entry_find()
/linux/drivers/input/joystick/iforce/
H A Diforce-ff.c126 __u16 rsat, __u16 lsat, __s16 rk, __s16 lk, u16 db, __s16 center) in make_condition_modifier() argument
144 data[3] = (100 * lk) >> 15; /* This code is incorrect on cpus lacking arith shift */ in make_condition_modifier()
/linux/arch/powerpc/xmon/
H A Dppc-opc.c2341 #define B(op, aa, lk) (OP (op) | ((((unsigned long)(aa)) & 1) << 1) | ((lk) & 1)) argument
2345 #define BD8(op, aa, lk) (((((unsigned long)(op)) & 0x3f) << 10) | (((aa) & 1) << 9) | (((lk) & 1) <… argument
2362 #define BD15(op, aa, lk) (OP (op) | ((((unsigned long)(aa)) & 0xf) << 22) | ((lk) & 1)) argument
2366 #define EBD15(op, aa, bo, lk) (((op) & 0x3f) << 26) | (((aa) & 0xf) << 22) | (((bo) & 0x3) << 20) |… argument
2370 #define EBD15BI(op, aa, bo, bi, lk) (((op) & 0x3f) << 26) \ argument
2374 | ((lk) & 1)
2378 #define BD24(op, aa, lk) (OP (op) | ((((unsigned long)(aa)) & 1) << 25) | ((lk) & 1)) argument
2382 #define BBO(op, bo, aa, lk) (B ((op), (aa), (lk)) | ((((unsigned long)(bo)) & 0x1f) << 21)) argument
2396 #define BBOCB(op, bo, cb, aa, lk) \ argument
2397 (BBO ((op), (bo), (aa), (lk)) | ((((unsigned long)(cb)) & 0x3) << 16))
[all …]
/linux/Documentation/hwmon/
H A Dadm9240.rst40 - Grant Coady <gcoady.lk@gmail.com> with guidance
/linux/fs/fuse/
H A Dfile.c2472 inarg->lk.start = fl->fl_start; in fuse_lk_fill()
2473 inarg->lk.end = fl->fl_end; in fuse_lk_fill()
2474 inarg->lk.type = fl->c.flc_type; in fuse_lk_fill()
2475 inarg->lk.pid = pid; in fuse_lk_fill()
2500 err = convert_fuse_file_lock(fm->fc, &outarg.lk, fl); in fuse_getlk()