Displaying 9 results from an estimated 9 matches for "partition_nam".
Did you mean:
partition_name
2012 Nov 14
1
Notes on compiling libguestfs 1.19.59 on Debian 7 (Wheezy) beta
In no particular order. Some of these need further investigation.
----------------------------------------------------------------------
I had to patch libguestfs not to use febootstrap-supermin-helper
--copy-kernel option. See attachment #1. This could be avoided by
providing a newer febootstrap in Wheezy.
I had to patch libguestfs to make it not use the (not working)
virtio-scsi in old
2016 Jul 14
3
[PATCH] : Adding dlabel option to chain.c32
On 07/14/16 05:56, Ady Ady via Syslinux wrote:
>
> @Peter, Erwan, Gene, Michal, (and anyone else interested)...
>
> Although I haven't actually tested Erwan's patch, would it be
> acceptable by you (all) if I were to send a patch to this Syslinux
> Mailing List with the same code while changing the wording as I
> previously suggested in a prior email? Would it be
2016 Mar 22
0
Unable to mount NetApp volume via smbfs on CentOS 6.6
Hi;
Unable to mount NetApp volume via smbfs on CentOS 6.6
I have been able to mount the NetApp via smbfs from a Mac but cannot
from CentOS 6.6
What I have in /etc/auto_smb on the Mac is:
/Volumes/build_dir -fstype=smbfs
://domain_name;account_name:password at machine_name/partition_name
What is the equivalent on CentOS 6.6?
I would be modifying /etc/fstab?
I don't see any examples (yet) in my searching that have a Windows
domain name specified in the fstab file.
How to do the mount directly from the command line?
My workaround now is to scp my build artifacts from the Ce...
2016 Jul 15
0
[PATCH] : Add diskbypartname option to chain.c32
...in.c Fri Jul 15 01:27:23 2016
+++ diskbypartname/com32/chain/chain.c Fri Jul 15 01:00:03 2016
@@ -143,6 +143,38 @@
return drive;
}
+/*
+ * Search for a disk having a GPT partition with a specified Partition Name.
+ * Return disk and iterator at proper position.
+ */
+static int find_disk_by_partition_name(const char *label, struct part_iter **_boot_part)
+{
+ struct part_iter *iter = NULL;
+ struct disk_info diskinfo;
+ int drive;
+
+ for (drive = 0x80; drive < 0x80 + fixed_cnt; drive++) {
+ if (disk_get_params(drive, &diskinfo))
+ continue; /* Drive doesn't exist */
+ i...
2002 Jun 11
1
another oops, this time with 2.4.18-4
...syms_base symbol flush_inode_pages_R__ver_flush_inode_pages not found in System.map. Ignoring ksyms_base entry
Warning (compare_maps): ksyms_base symbol flush_signal_handlers_R__ver_flush_signal_handlers not found in System.map. Ignoring ksyms_base entry
Warning (compare_maps): mismatch on symbol partition_name , ksyms_base says c02189a0, System.map says c0166980. Ignoring ksyms_base entry
Warning (compare_maps): ksyms_base symbol pci_generic_resume_compare_R__ver_pci_generic_resume_compare not found in System.map. Ignoring ksyms_base entry
Warning (compare_maps): ksyms_base symbol pci_generic_resume_...
2001 Oct 05
1
Kernel Ooops probably in conjunction with lvm
...es, ksyms etc. ksymoops -h explains the options.
/usr/bin/nm: /boot/vmlinuz: File format not recognized
Error (pclose_local): read_nm_symbols pclose failed 0x100
Warning (read_vmlinux): no kernel symbols in vmlinux, is /boot/vmlinuz a valid vmlinux file?
Warning (compare_maps): mismatch on symbol partition_name , ksyms_base says c023f9e0, System.map says c014c090. Ignoring ksyms_base entry
Unable to handle kernel NULL pointer dereference at virtual address 00000906
c0152ddb
*pde = 00000000
Oops: 0000
CPU: 0
EIP: 0010:[ext3_find_entry+475/788]
EFLAGS: 00010287
eax: 00000905 ebx: 00000900 ecx:...
2002 Sep 25
0
PROBLEM:
...ournal_head() at journal.c:1730: "buffer_jbd(bh)"
ksymoops:
Error (expand_objects): cannot stat(/lib/ext3.o) for ext3
ksymoops: No such file or directory
Error (expand_objects): cannot stat(/lib/jbd.o) for jbd
ksymoops: No such file or directory
Warning (compare_maps): mismatch on symbol partition_name , ksyms_base
says c01e0cf0, System.map says c014f3e0. Ignoring ksyms_base entry
Warning (compare_maps): mismatch on symbol zeroes , ipsec says
d0a2bd00, /lib/modules/2.4.18-vpn1.0/kernel/net/ipsec/ipsec.o says
d0a2bc00. Ignoring /lib/modules/2.4.18-vpn1.0/kernel/net/ipsec/ipsec.o
entry
War...
2007 Jan 02
0
[PATCH 1/4] add scsi-target and IO_CMD_EPOLL_WAIT patches
...long liobn;
++ unsigned long riobn;
++};
++
++static struct workqueue_struct *vtgtd;
++
++/*
++ * These are fixed for the system and come from the Open Firmware device tree.
++ * We just store them here to save getting them every time.
++ */
++static char system_id[64] = "";
++static char partition_name[97] = "UNKNOWN";
++static unsigned int partition_number = -1;
++
++static struct vio_port *target_to_port(struct srp_target *target)
++{
++ return (struct vio_port *) target->ldata;
++}
++
++static inline union viosrp_iu *vio_iu(struct iu_entry *iue)
++{
++ return (union viosrp_iu *)...
2018 May 15
12
[PATCH libldm 00/12] New API: an ability to retrieve created device-mapper devices back after they have been created.
The main goal of these patch series is to implement a new API that allows to retrieve created device-mapper devices for volumes and partitions back after they have been created.
As part of this patch:
- required libdevmapper version was bumped to 1.02. I think it is safe because it was released more then 10 years ago;
- newer version of libdevmapper allowed to simplify code base a little bit;
-