Re: Bug report - ext4: Unknown symbol __getblk_gfp (err 0)

2016-02-18 Thread Ian Campbell
On Thu, 2016-02-18 at 13:18 +0100, Miroslav Svoboda wrote:
> [...]
> Linux 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt7-1 (2015-03-01) x86_64 GNU/Linux
> 
> [...]
> Any idea what is the problem? 

Your local vmlinux and initrd binaries are out of sync with the kernel
modules in the mirror network, due to the kernel update in the latest point
release. i.e. you need to update the binaries on your PXE server to deb8u2.

The current Jessie kernel is now 3.16.7-ckt20-1+deb8u2.

Ian.



Re: Bug report - ext4: Unknown symbol __getblk_gfp (err 0)

2016-02-18 Thread Ben Hutchings
On Thu, 2016-02-18 at 13:18 +0100, Miroslav Svoboda wrote:
> Dear Debian team, 
> 
> I have problem with debian Jessie PXE installation with preseed. I'm
> trying to install Debian Jessie on amd64 server. The installation goes
> fine until partitionning and fails right after when trying to mount the
> newly created partitions with ext4 filesystem. Dmesg give us an idea
> about the error that seems related to filesystem module:
> 
> ext4: Unknown symbol __bread_gfp (err 0)
> ext4: Unknown symbol __getblk_gfp (err 0)
>
> uname -a:
> Linux 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt7-1 (2015-03-01) x86_64
> GNU/Linux
[...]

This is the original kernel image for jessie (from 8.0).  Not all the kernel 
modules from current jessie (8.3) will work with it.
You must update your netboot images after each point release.

Ben.

-- 
Ben Hutchings
Once a job is fouled up, anything done to improve it makes it worse.

signature.asc
Description: This is a digitally signed message part


Bug report - ext4: Unknown symbol __getblk_gfp (err 0)

2016-02-18 Thread Miroslav Svoboda
Dear Debian team, 

I have problem with debian Jessie PXE installation with preseed. I'm
trying to install Debian Jessie on amd64 server. The installation goes
fine until partitionning and fails right after when trying to mount the
newly created partitions with ext4 filesystem. Dmesg give us an idea
about the error that seems related to filesystem module:

ext4: Unknown symbol __bread_gfp (err 0)
ext4: Unknown symbol __getblk_gfp (err 0)

uname -a:
Linux 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt7-1 (2015-03-01) x86_64
GNU/Linux

modinfo ext4:
filename:   /lib/modules/3.16.0-4-amd64/kernel/fs/ext4/ext4.ko
license:GPL
description:Fourth Extended Filesystem
author: Remy Card, Stephen Tweedie, Andrew Morton, Andreas
Dilger, Theodore Ts'o and others
alias:  fs-ext4
alias:  ext3
alias:  fs-ext3
alias:  ext2
alias:  fs-ext2
depends:mbcache,jbd2,crc16
intree: Y
vermagic:   3.16.0-4-amd64 SMP mod_unload modversions


Preseed:
# Localization
d-i debian-installer/locale string en_US
d-i console-keymaps-at/keymap select us
d-i console-setup/ask_detect boolean false
d-i console-setup/layoutcode string us

# Network configuration
d-i netcfg/choose_interface select auto
d-i netcfg/get_hostname string netinstall
d-i netcfg/get_domain string


### Mirror settings
d-i mirror/country string manual
d-i mirror/http/hostname string debian.ignum.cz
d-i mirror/http/directory string /debian
d-i mirror/http/proxy string

# Suite to install.
d-i mirror/suite string jessie

### Account setup
d-i passwd/root-login boolean true
d-i passwd/make-user boolean false

### our default password`
d-i passwd/root-password-crypted password "somepassword"

### Clock and time zone setup
d-i clock-setup/utc boolean true

d-i time/zone string Europe/Prague
d-i clock-setup/ntp boolean true
d-i clock-setup/ntp-server string ntp.ignum.cz

### Base system installation
tasksel tasksel/first multiselect standard
d-i pkgsel/include string openssh-server
d-i pkgsel/upgrade select full-upgrade
popularity-contest popularity-contest/participate boolean false
d-i pkgsel/update-policy select none

# Individual additional packages to install
d-i grub-installer/only_debian boolean true

### Allow non-free firmware
d-i hw-detect/load_firmware boolean true

### Finishing up the installation
d-i finish-install/reboot_in_progress note

d-i partman-lvm/device_remove_lvm boolean true
d-i partman-md/device_remove_md boolean true
d-i partman-auto/choose_recipe select boot-root

d-i mdadm/boot_degraded boolean false
d-i partman-md/confirm boolean true
d-i partman-md/confirm_nooverwrite  boolean true
d-i partman-partitioning/confirm_write_new_label boolean true
d-i partman/choose_partition select finish
d-i partman/confirm boolean true
d-i partman/confirm_nooverwrite boolean true
d-i partman/choose_partition select Finish partitioning and write
changes to disk

d-i partman-auto/disk string /dev/sda /dev/sdb
d-i partman-auto/method string raid
d-i partman-auto-lvm/no_boot boolean true
d-i partman-auto-lvm/new_vg_name string vg0
d-i partman-lvm/confirm boolean true
d-i partman-auto/expert_recipe string\
   boot-root ::  \
 1000 35 1 raid  \
$lvmignore{ }\
$primary{ } method{ raid }   \
 .   \
2048 50 2048 ext4 \
$defaultignore{ }\
$lvmok{ }\
lv_name{ root }  \
method{ format } \
format{ }\
use_filesystem{ }\
filesystem{ ext4 }   \
mountpoint{ / }  \
 .   \
1024 51 1024 ext4 \
$defaultignore{ }\
$lvmok{ }\
lv_name{ tmp }  \
method{ format } \
format{ }\
use_filesystem{ }\
filesystem{ ext4 }   \
mountpoint{ /tmp }  \
 .   \
10240 52 10240 ext4 \
$defaultignore{ }\
$lvmok{ }\
lv_name{ var }  \
method{ format } \
format{ }\
use_filesystem{ }\
filesystem{ ext4 }   \
mountpoint{ /var }  \
 .