__attribute((packed))의 역할이나 효과가 무엇인가요?

이명수의 이미지

리눅스 커널 2.6.26에서
gcc 4.1로
커널 소스 2.6.14.6을 컴파일 시에

설정 다 끝내고
# make 하면

다음과 같은 에러들이 수없이 뜹니다

include/asm/mpspec_def.h:78:warning: 'packed' attribute ignored for field of type 'unsigned char[6]'

어떤 에러인가요?
설정을 잘못해서 그런가요?

dalili의 이미지

warning나도 대세에는 지장 없습니다
error 라고 난 첫번째 줄을 올려주세요

그리고 __attribute((packed))은 구조체가 4byte로 정렬되는데 이것을 시키지 않는다는 의미입니다

struct a{
char c[5];
int i;
};

struct b{
char c[5];
int i;
}__attribute((packed)));

struct a는 12byte가 나오지만, struct b는 9byte가 나옵니다

이명수의 이미지

설명 좀 해주실 수 있나요?

위의 코드를 sizeof()로 확인해보니
실제로 struct a는 12bytes가 나오고 struct b는 9bytes가 나오네요

근데 이해가 안됩니다
struct a가 9bytes가 나와야 할 것 같은데 12bytes가 나오는 것도 이해가 안가고
struct b는 왜 또 9bytes가 나오는지도 모르겠습니다

__attribute((packed))의 역할이나 효과가 무엇인가요?

julggol의 이미지

32비트 cpu에서는 4바이트 단위로 데이타 처리를 할 수 있습니다.
그래서 컴파일러가 cpu 처리를 좀더 빠르게 하기 위해 구조체의 사이즈를 4바이트 단위로 할당하는거죠.
__attribute((packed)) 을 사용하면 컴파일러가 변경하는 구조체 사이즈를 변경하지 않겠다는 뜻입니다.
하지만 cpu 가 처리하는 32비트 데이타 형식이 아니기 때문에 약간의 부하가 걸릴 수 있습니다.
검색해보시면 자세한 구조를 아실 수 있을겁니다. 64비트 시스템에서는 좀더 달라지겠죠?
참고로 빠른 속도를 요하는 통신 프로토콜에 packed 를 남발하면 성능차이가 나타날겁니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.