Home
last modified time | relevance | path

Searched +full:sc +full:- +full:partitions (Results 1 – 19 of 19) sorted by relevance

/openbmc/linux/drivers/mtd/parsers/
H A Dscpart.c1 // SPDX-License-Identifier: GPL-2.0-or-later
12 #include <linux/mtd/partitions.h>
42 return ((pdesc->part_id != 0xffffffffUL) && in scpart_desc_is_valid()
43 (pdesc->part_offs != 0xffffffffUL) && in scpart_desc_is_valid()
44 (pdesc->part_bytes != 0xffffffffUL)); in scpart_desc_is_valid()
59 buf = kzalloc(master->erasesize, GFP_KERNEL); in scpart_scan_partmap()
61 res = -ENOMEM; in scpart_scan_partmap()
65 res2 = mtd_read(master, partmap_offs, master->erasesize, &retlen, buf); in scpart_scan_partmap()
66 if (res2 || retlen != master->erasesize) { in scpart_scan_partmap()
67 res = -EIO; in scpart_scan_partmap()
[all …]
/openbmc/linux/Documentation/devicetree/bindings/mtd/partitions/
H A Dfixed-partitions.yaml1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
3 ---
4 $id: http://devicetree.org/schemas/mtd/partitions/fixed-partitions.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Fixed partitions
12 on-flash partition table such as RedBoot.
14 The partition table should be a node named "partitions". Partitions are then
18 - Rafał Miłecki <rafal@milecki.pl>
23 - const: fixed-partitions
24 - items:
[all …]
/openbmc/linux/Documentation/filesystems/
H A Daffs.rst1 .. SPDX-License-Identifier: GPL-2.0
19 in file names are case-insensitive, as they ought to be.
107 Amiga -> Linux:
111 - R maps to r for user, group and others. On directories, R implies x.
113 - W maps to w.
115 - E maps to x.
117 - D is ignored.
119 - H, S and P are always retained and ignored under Linux.
121 - A is cleared when a file is written to.
129 Linux -> Amiga:
[all …]
/openbmc/linux/include/uapi/linux/
H A Dmtio.h1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
6 * by C.-J. Heine.
19 /* structure for MTIOCTOP - mag tape op command */
33 #define MTWEOF 5 /* write an end-of-file record (mark) */
44 #define MTERASE 13 /* erase tape -- be careful! */
54 #define MTSETDRVBUFFER 24 /* set the drive buffering according to SCSI-2 */
66 #define MTMKPART 34 /* Format the tape with one or two partitions */
67 #define MTWEOFI 35 /* write an end-of-file record (mark) in immediate mode */
69 /* structure for MTIOCGET - mag tape get status command */
94 #define MT_ISQIC02 0x02 /* Generic QIC-02 tape streamer */
[all …]
/openbmc/linux/Documentation/admin-guide/
H A Ddevices.txt1 0 Unnamed devices (e.g. non-device mounts)
7 2 = /dev/kmem OBSOLETE - replaced by /proc/kcore
11 6 = /dev/core OBSOLETE - replaced by /proc/kcore
18 12 = /dev/oldmem OBSOLETE - replaced by /proc/vmcore
31 2 char Pseudo-TTY masters
37 Pseudo-tty's are named as follows:
40 the 1st through 16th series of 16 pseudo-ttys each, and
44 These are the old-style (BSD) PTY devices; Unix98
106 3 char Pseudo-TTY slaves
112 These are the old-style (BSD) PTY devices; Unix98
[all …]
/openbmc/qemu/hw/sd/
H A Dsd.c5 * eMMC emulation defined in "JEDEC Standard No. 84-A43"
9 * Copyright (c) 2018 Philippe Mathieu-Daudé <f4bug@amsat.org>
40 #include "sysemu/block-backend.h"
46 #include "hw/qdev-properties.h"
47 #include "hw/qdev-properties-system.h"
48 #include "qemu/error-report.h"
51 #include "qemu/guest-random.h"
53 #include "sdmmc-internal.h"
70 sd_r1b = -1,
71 sd_illegal = -2,
[all …]
/openbmc/qemu/target/i386/
H A Dcpu.h24 #include "cpu-qom.h"
25 #include "kvm/hyperv-proto.h"
26 #include "exec/cpu-defs.h"
29 #include "qapi/qapi-types-common.h"
30 #include "qemu/cpu-float.h"
140 /* hidden flags - used internally by qemu to represent additional cpu
172 #define HF_MPX_IU_SHIFT 26 /* BND registers in-use */
466 #define MSR_MTRRphysIndex(addr) ((((addr) & ~1u) - 0x200) / 2)
832 /* Supervisor-mode Execution Prevention */
838 /* Invalidate Process-Context Identifier */
[all …]
/openbmc/linux/drivers/scsi/
H A Dst.c1 // SPDX-License-Identifier: GPL-2.0-only
13 Copyright 1992 - 2016 Kai Makisara
16 Some small formal changes - aeb, 950809
18 Last modified: 18-JAN-1998 Richard Gooch <rgooch@atnf.csiro.au> Devfs support
62 is defined and non-zero. */
159 6-byte SCSI read and write commands. */
160 #if ST_FIXED_BUFFER_SIZE >= (2 << 24 - 1)
161 #error "Buffer size should not exceed (2 << 24 - 1) bytes!"
174 /* Remove mode bits and auto-rewind bit (7) */
176 (iminor(x) & ((1 << ST_MODE_SHIFT)-1)))
[all …]
/openbmc/linux/fs/xfs/
H A Dxfs_super.c1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
53 static struct dentry *xfs_debugfs; /* top-level xfs debugfs dir */
54 static struct kset *xfs_kset; /* top-level xfs sysfs dir */
72 mp->m_features &= ~(XFS_FEAT_DAX_ALWAYS | XFS_FEAT_DAX_NEVER); in xfs_mount_set_dax_mode()
75 mp->m_features |= XFS_FEAT_DAX_ALWAYS; in xfs_mount_set_dax_mode()
76 mp->m_features &= ~XFS_FEAT_DAX_NEVER; in xfs_mount_set_dax_mode()
79 mp->m_features |= XFS_FEAT_DAX_NEVER; in xfs_mount_set_dax_mode()
80 mp->m_features &= ~XFS_FEAT_DAX_ALWAYS; in xfs_mount_set_dax_mode()
179 struct xfs_mount *mp = XFS_M(root->d_sb); in xfs_fs_show_options()
[all …]
/openbmc/webui-vue/src/locales/
H A Den-US.json206 "label": "24-hour time",
236 …mDumpMessage3": "Initiating a system dump will abnormally terminate all active system partitions.",
694 "newPassLabelTextInfo": "Password must be between {min} - {max} characters",
778 "AlwaysOn": "Always on - The system always powers on when power is applied.",
779 … "AlwaysOff": "Always off - The system always remains powered off when power is applied.",
780 …"LastState": "Last state - The system returns to its last on or off power state when power is appl…
801 "ipmi": "Network IPMI (out-of-band IPMI)",
891 "forceRestartInfo": "Shut down immediately and non-gracefully and restart the unit",
893 "forceOffInfo": "Turn off the unit immediately (non-graceful shutdown)",
1117 "GW": "Guinea-Bissau",
[all …]
/openbmc/qemu/block/
H A Dvvfat.c30 #include "block/block-io.h"
41 #include "qemu/error-report.h"
55 /* MAYBE TODO: write block-visofs.c */
73 * https://jdebp.eu/FGA/volume-boot-block-oem-name-field.html
91 array->pointer = NULL; in array_init()
92 array->size=0; in array_init()
93 array->next=0; in array_init()
94 array->item_size=item_size; in array_init()
99 g_free(array->pointer); in array_free()
100 array->size=array->next=0; in array_free()
[all …]
/openbmc/linux/arch/powerpc/kvm/
H A Dbook3s_hv.c1 // SPDX-License-Identifier: GPL-2.0-only
9 * Kevin Wolf <mail@kevin-wolf.de>
32 #include <linux/page-flags.h>
50 #include <asm/ppc-opcode.h>
51 #include <asm/asm-prototypes.h>
73 #include <asm/pnv-pci.h>
108 MODULE_PARM_DESC(dynamic_mt_modes, "Set of allowed dynamic micro-threading modes: 0 (= none), 2, 4,…
170 vcpu = READ_ONCE(vc->runnable_threads[i]); in next_runnable_thread()
181 for (i = -1; (vcpu = next_runnable_thread(vc, &i)); )
215 if (paca_ptrs[cpu]->kvm_hstate.xics_phys) { in kvmppc_ipi_thread()
[all …]
/openbmc/linux/
H A DMAINTAINERS5 ---------------------------------------------------
21 W: *Web-page* with status/info
23 B: URI for where to file *bugs*. A web-page with detailed bug
28 patches to the given subsystem. This is either an in-tree file,
29 or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
46 N: [^a-z]tegra all files whose path contains tegra
64 ----------------
83 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
85 L: linux-scsi@vger.kernel.org
88 F: drivers/scsi/3w-*
[all …]
H A Dopengrok0.0.log1 2024-12-28 20:09:05.996-0600 FINEST t1171 PendingFileCompleter.doRename: Moved pending as file: '/opengrok/data/xref/openbmc/linux/drivers/staging/media/av7110/video-continue.rst.gz'
2 2024-12-28 20:09:05.942-0600 FINEST t1149 PendingFileCompleter.doRename: Moved pending as file: '/opengrok/data/xref/openbmc/u-boot/arch/sh/config.mk.gz'
3 2024-12-2
[all...]
H A Dopengrok2.0.log1 2024-12-28 20:05:26.116-0600 FINEST t586 Statistics.logIt: Added: '/openbmc/linux/tools/testing/selftests/drivers/net/mlxsw/rtnetlink.sh' (ShAnalyzer) (took 79 ms)
2 2024-12-28 20:05:26.112-0600 FINER t592 IndexDatabase.createAnnotationCache: failed to create annotation: repository {dir='/opengrok/src/openbmc/qemu',type=git,historyCache=on,renamed=false,merge=true,annotationCache=off} does not allow to create annotation cache for '/opengrok/src/openbmc/qemu/chardev/spice.c'
3 2024-12-28 20:05:26.116-0600 FINEST t592 Statistics.logIt: Added: '/openbmc/qemu/chardev/spice.c' (CAnalyzer) (took 33 ms)
4 2024-1
[all...]
H A Dopengrok1.0.log1 2024-12-28 20:07:11.902-0600 FINER t583 IndexDatabase.createAnnotationCache: failed to create annotation: repository {dir='/opengrok/src/openbmc/linux',type=git,historyCache=on,renamed=false,merge=true,annotationCache=off} does not allow to create annotation cache for '/opengrok/src/openbmc/linux/drivers/net/ethernet/marvell/mvpp2/mvpp2_prs.c'
2 2024-12-28 20:07:11.913-0600 FINEST t583 Statistics.logIt: Added: '/openbmc/linux/drivers/net/ethernet/marvell/mvpp2/mvpp2_prs.c' (CAnalyzer) (took 116 ms)
3 2024-12-28 20:07:11.899-0600 FINER t593 IndexDatabase.createAnnotationCache: failed to create annotation: repository {dir='/opengrok/src/openbmc/linux',type=git,historyCache=on,renamed=false,merge=true,annotationCache=off} does not allow to create annotation cache for '/opengrok/src/openbmc/linux/tools/testing/selftests/powerpc/tm/tm-signa
[all...]
/openbmc/openbmc-tools/rootfs_size/
H A Dresults.txt9 937984: /usr/lib/python2.7/lib-dynload
13 638976: /usr/lib/ipmid-providers
14 598016: /lib/systemd/libsystemd-shared-239.so
17 483328: /lib/libc-2.28.so
19 434176: /usr/lib/libgio-2.0.so.0.5800.0
26 348160: /usr/sbin/entity-manager
30 319488: /usr/lib/libglib-2.0.so.0.5800.0
31 311296: /lib/libm-2.28.so
33 278528: /usr/lib/python2.7/site-packages
35 270336: /usr/lib/locale/locale-archive
[all …]
/openbmc/
Dopengrok1.0.log1 2025-01-22 03:00:43.118-0600 FINE t1 Executor.registerErrorHandler: Installing default uncaught exception handler
2 2025-01-22 03:00:43.231-0600 INFO t1 Indexer.parseOptions: Indexer options: [-c, /usr/local/bin/ctags, -T, 12, -s, /opengrok/src, -
[all...]
Dopengrok2.0.log1 2025-01-21 03:00:49.509-0600 FINE t1 Executor.registerErrorHandler: Installing default uncaught exception handler
2 2025-01-21 03:00:49.626-0600 INFO t1 Indexer.parseOptions: Indexer options: [-c, /usr/local/bin/ctags, -T, 12, -s, /opengrok/src, -
[all...]